![]() |
![]() |
![]() |
Mx Toolkit Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces | Properties | Signals |
struct MxEntry; ClutterActor * mx_entry_new (void
); ClutterActor * mx_entry_new_with_text (const gchar *text
); const gchar * mx_entry_get_text (MxEntry *entry
); void mx_entry_set_text (MxEntry *entry
,const gchar *text
); ClutterActor * mx_entry_get_clutter_text (MxEntry *entry
); void mx_entry_set_hint_text (MxEntry *entry
,const gchar *text
); const gchar * mx_entry_get_hint_text (MxEntry *entry
); void mx_entry_set_password_char (MxEntry *entry
,gunichar password_char
); gunichar mx_entry_get_password_char (MxEntry *entry
); void mx_entry_set_primary_icon_from_file (MxEntry *entry
,const gchar *filename
); void mx_entry_set_secondary_icon_from_file (MxEntry *entry
,const gchar *filename
);
"clutter-text" ClutterText* : Read "hint-text" gchar* : Read / Write "password-char" guint : Read / Write "text" gchar* : Read / Write
MxEntry is a simple widget for displaying text. It derives from MxWidget to add extra style and placement functionality over ClutterText. The internal ClutterText is publicly accessibly to allow applications to set further properties.
MxEntry supports the following pseudo style states:
focus: the widget has focus
indeterminate: the widget is showing the hint text
struct MxEntry;
The contents of this structure is private and should only be accessed using the provided API.
ClutterActor * mx_entry_new_with_text (const gchar *text
);
Create a new MxEntry with the specified entry
|
text to set the entry to |
Returns : |
a new MxEntry |
const gchar * mx_entry_get_text (MxEntry *entry
);
Get the text displayed on the entry
|
a MxEntry |
Returns : |
the text for the entry. This must not be freed by the application |
void mx_entry_set_text (MxEntry *entry
,const gchar *text
);
Sets the text displayed on the entry
|
a MxEntry |
|
text to set the entry to |
ClutterActor * mx_entry_get_clutter_text (MxEntry *entry
);
Retrieve the internal ClutterText so that extra parameters can be set
|
a MxEntry |
Returns : |
the ClutterText used by MxEntry. The entry is owned by the MxEntry and should not be unref'ed by the application. [transfer none] |
void mx_entry_set_hint_text (MxEntry *entry
,const gchar *text
);
Sets the text to display when the entry is empty and unfocused. When the entry is displaying the hint, it has a pseudo class of "indeterminate". A value of NULL unsets the hint.
|
a MxEntry |
|
text to set as the entry hint |
const gchar * mx_entry_get_hint_text (MxEntry *entry
);
Gets the text that is displayed when the entry is empty and unfocused
void mx_entry_set_password_char (MxEntry *entry
,gunichar password_char
);
Sets the character to display instead of the text. Use 0 to display the actual text.
|
a MxEntry |
|
text to set as the entry hint |
gunichar mx_entry_get_password_char (MxEntry *entry
);
Gets the character to display instead of the text.
|
a MxEntry |
Returns : |
a character, or 0 if input should not be hidden. |
void mx_entry_set_primary_icon_from_file (MxEntry *entry
,const gchar *filename
);
Set the primary icon of the entry to the given filename
|
a MxEntry |
|
filename of an icon |
"hint-text"
property"hint-text" gchar* : Read / Write
Text to display when the entry is not focused and the text property is empty.
Default value: NULL
"password-char"
property"password-char" guint : Read / Write
Character to display instead of entered text.
Default value: 0