mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
Add :cursor-color-set property declaration
The :cursor-color-set property is a read-only property that reflects whether the ClutterText actor is going to use the color set inside the :cursor-color property when painting the cursor.
This commit is contained in:
parent
bdb0cc462d
commit
c72722df8c
@ -702,6 +702,10 @@ clutter_text_get_property (GObject *gobject,
|
||||
clutter_value_set_color (value, &priv->cursor_color);
|
||||
break;
|
||||
|
||||
case PROP_CURSOR_COLOR_SET:
|
||||
g_value_set_boolean (value, priv->cursor_color_set);
|
||||
break;
|
||||
|
||||
case PROP_POSITION:
|
||||
g_value_set_int (value, CLUTTER_FIXED_TO_FLOAT (priv->position));
|
||||
break;
|
||||
@ -1215,12 +1219,19 @@ clutter_text_class_init (ClutterTextClass *klass)
|
||||
g_object_class_install_property (gobject_class, PROP_CURSOR_VISIBLE, pspec);
|
||||
|
||||
pspec = clutter_param_spec_color ("cursor-color",
|
||||
"Cursor Colour",
|
||||
"Cursor Colour",
|
||||
"Cursor Color",
|
||||
"Cursor Color",
|
||||
&default_cursor_color,
|
||||
CLUTTER_PARAM_READWRITE);
|
||||
g_object_class_install_property (gobject_class, PROP_CURSOR_COLOR, pspec);
|
||||
|
||||
pspec = g_param_spec_boolean ("cursor-color-set",
|
||||
"Cursor Color Set",
|
||||
"Whether the cursor color has been set",
|
||||
FALSE,
|
||||
CLUTTER_PARAM_READABLE);
|
||||
g_object_class_install_property (gobject_class, PROP_CURSOR_COLOR_SET, pspec);
|
||||
|
||||
/**
|
||||
* ClutterText:position:
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user