![]() |
![]() |
The Gtk::Entry widget is a single line text entry widget. A fairly large set of key bindings are supported by default. If the entered text is longer than the allocation of the widget, the widget will scroll so that the cursor position is visible.
Public Member Functions | ||||
Entry () | ||||
gboolean | get_activates_default () const | |||
Retrieves the value set by set_activates_default(). | ||||
float | get_alignment () const | |||
Gets the value set by set_alignment(). | ||||
Glib::RefPtr<const EntryCompletion> | get_completion () const | |||
Returns the auxiliary completion object currently in use by entry . | ||||
Glib::RefPtr<EntryCompletion> | get_completion () | |||
Returns the auxiliary completion object currently in use by entry . | ||||
bool | get_has_frame () const | |||
Gets the value set by set_has_frame(). | ||||
gunichar | get_invisible_char () const | |||
Retrieves the character displayed in place of the real characters for entries with visisbility set to false. | ||||
Glib::RefPtr<const Pango::Layout> | get_layout () const | |||
Gets the Pango::Layout used to display the entry. | ||||
Glib::RefPtr<Pango::Layout> | get_layout () | |||
Gets the Pango::Layout used to display the entry. | ||||
void | get_layout_offsets (int& x, int& y) | |||
Obtains the position of the Pango::Layout used to render text in the entry, in widget coordinates. | ||||
int | get_max_length () const | |||
Retrieves the maximum allowed length of the text in entry . | ||||
Glib::ustring | get_text () const | |||
Retrieves the contents of the entry widget. | ||||
guint16 | get_text_length () const | |||
bool | get_visibility () const | |||
Retrieves whether the text in entry is visible. | ||||
int | get_width_chars () const | |||
Gets the value set by set_width_chars(). | ||||
const GtkEntry* | gobj () const | |||
Provides access to the underlying C GtkObject. | ||||
GtkEntry* | gobj () | |||
Provides access to the underlying C GtkObject. | ||||
int | layout_index_to_text_index (int layout_index) const | |||
Converts from a position in the entry contents (returned by get_text()) to a position in the entry's Pango::Layout (returned by get_layout(), with text retrieved via pango_layout_get_text()). | ||||
void | set_activates_default (bool setting=true) | |||
If setting is true , pressing Enter in the entry will activate the default widget for the window containing the entry. | ||||
void | set_alignment (AlignmentEnum xalign) | |||
Sets the alignment for the contents of the entry. | ||||
void | set_alignment (float xalign) | |||
Sets the alignment for the contents of the entry. | ||||
void | set_completion (const Glib::RefPtr<EntryCompletion>& completion) | |||
Sets completion to be the auxiliary completion object to use with entry . | ||||
void | set_has_frame (bool setting=true) | |||
Sets whether the entry has a beveled frame around it. | ||||
void | set_invisible_char (gunichar ch) | |||
Sets the character to use in place of the actual text when set_visibility() has been called to set text visibility to false . | ||||
void | set_max_length (int max) | |||
Sets the maximum allowed length of the contents of the widget. | ||||
void | set_text (const Glib::ustring& text) | |||
void | set_visibility (bool visible=true) | |||
void | set_width_chars (int n_chars) | |||
Changes the size request of the entry to be about the right size for n_chars characters. | ||||
Glib::SignalProxy0<void> | signal_activate () | |||
| ||||
Glib::SignalProxy1< void, const Glib::ustring& > | signal_insert_at_cursor () | |||
| ||||
Glib::SignalProxy1< void, Menu* > | signal_populate_popup () | |||
| ||||
int | text_index_to_layout_index (int text_index) const | |||
Converts from a position in the entry's Pango::Layout (returned by get_layout()) to a position in the entry contents (returned by get_text()). | ||||
virtual | ~Entry () | |||
Related Functions | ||||
(Note that these are not member functions.) | ||||
Gtk::Entry* | wrap (GtkEntry* object, bool take_copy=false) | |||
|
virtual Gtk::Entry::~Entry | ( | ) | [virtual] |
Gtk::Entry::Entry | ( | ) |
gboolean Gtk::Entry::get_activates_default | ( | ) | const |
Retrieves the value set by set_activates_default().
true
if the entry will activate the default widget. float Gtk::Entry::get_alignment | ( | ) | const |
Glib::RefPtr<const EntryCompletion> Gtk::Entry::get_completion | ( | ) | const |
Returns the auxiliary completion object currently in use by entry .
Glib::RefPtr<EntryCompletion> Gtk::Entry::get_completion | ( | ) |
Returns the auxiliary completion object currently in use by entry .
bool Gtk::Entry::get_has_frame | ( | ) | const |
gunichar Gtk::Entry::get_invisible_char | ( | ) | const |
Retrieves the character displayed in place of the real characters for entries with visisbility set to false.
See set_invisible_char().
Glib::RefPtr<const Pango::Layout> Gtk::Entry::get_layout | ( | ) | const |
Gets the Pango::Layout used to display the entry.
The layout is useful to e.g. convert text positions to pixel positions, in combination with get_layout_offsets(). The returned layout is owned by the entry and must not be modified or freed by the caller.
Keep in mind that the layout text may contain a preedit string, so layout_index_to_text_index() and text_index_to_layout_index() are needed to convert byte indices in the layout to byte indices in the entry contents.
Glib::RefPtr<Pango::Layout> Gtk::Entry::get_layout | ( | ) |
Gets the Pango::Layout used to display the entry.
The layout is useful to e.g. convert text positions to pixel positions, in combination with get_layout_offsets(). The returned layout is owned by the entry and must not be modified or freed by the caller.
Keep in mind that the layout text may contain a preedit string, so layout_index_to_text_index() and text_index_to_layout_index() are needed to convert byte indices in the layout to byte indices in the entry contents.
void Gtk::Entry::get_layout_offsets | ( | int & | x, | |
int & | y | |||
) |
Obtains the position of the Pango::Layout used to render text in the entry, in widget coordinates.
Useful if you want to line up the text in an entry with some other text, e.g. when using the entry to implement editable cells in a sheet widget.
Also useful to convert mouse events into coordinates inside the Pango::Layout, e.g. to take some action if some part of the entry text is clicked.
Note that as the user scrolls around in the entry the offsets will change; you'll need to connect to the "notify::scroll-offset" signal to track this. Remember when using the Pango::Layout functions you need to convert to and from pixels using PANGO_PIXELS() or Pango::SCALE.
Keep in mind that the layout text may contain a preedit string, so layout_index_to_text_index() and text_index_to_layout_index() are needed to convert byte indices in the layout to byte indices in the entry contents.
x | Location to store X offset of layout, or 0 . | |
y | Location to store Y offset of layout, or 0 . |
int Gtk::Entry::get_max_length | ( | ) | const |
Retrieves the maximum allowed length of the text in entry .
See set_max_length().
Glib::ustring Gtk::Entry::get_text | ( | ) | const |
Retrieves the contents of the entry widget.
See also Gtk::Editable::get_chars().
guint16 Gtk::Entry::get_text_length | ( | ) | const |
bool Gtk::Entry::get_visibility | ( | ) | const |
Retrieves whether the text in entry is visible.
See set_visibility().
true
if the text is currently visible. int Gtk::Entry::get_width_chars | ( | ) | const |
Gets the value set by set_width_chars().
const GtkEntry* Gtk::Entry::gobj | ( | ) | const [inline] |
Provides access to the underlying C GtkObject.
Reimplemented from Gtk::CellEditable.
Reimplemented in Gtk::SpinButton.
GtkEntry* Gtk::Entry::gobj | ( | ) | [inline] |
Provides access to the underlying C GtkObject.
Reimplemented from Gtk::CellEditable.
Reimplemented in Gtk::SpinButton.
int Gtk::Entry::layout_index_to_text_index | ( | int | layout_index | ) | const |
Converts from a position in the entry contents (returned by get_text()) to a position in the entry's Pango::Layout (returned by get_layout(), with text retrieved via pango_layout_get_text()).
layout_index | Byte index into the entry layout text. |
void Gtk::Entry::set_activates_default | ( | bool | setting = true |
) |
If setting is true
, pressing Enter in the entry will activate the default widget for the window containing the entry.
This usually means that the dialog box containing the entry will be closed, since the default widget is usually one of the dialog buttons.
(For experts: if setting is true
, the entry calls Gtk::Window::activate_default() on the window containing the entry, in the default handler for the "activate" signal.)
setting | true to activate window's default widget on Enter keypress. |
void Gtk::Entry::set_alignment | ( | AlignmentEnum | xalign | ) |
Sets the alignment for the contents of the entry.
This controls the horizontal positioning of the contents when the displayed text is shorter than the width of the entry.
xalign | The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts. |
void Gtk::Entry::set_alignment | ( | float | xalign | ) |
Sets the alignment for the contents of the entry.
This controls the horizontal positioning of the contents when the displayed text is shorter than the width of the entry.
xalign | The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts. |
void Gtk::Entry::set_completion | ( | const Glib::RefPtr<EntryCompletion>& | completion | ) |
Sets completion to be the auxiliary completion object to use with entry .
All further configuration of the completion mechanism is done on completion using the Gtk::EntryCompletion API.
completion | The Gtk::EntryCompletion. |
void Gtk::Entry::set_has_frame | ( | bool | setting = true |
) |
Sets whether the entry has a beveled frame around it.
setting | New value. |
void Gtk::Entry::set_invisible_char | ( | gunichar | ch | ) |
Sets the character to use in place of the actual text when set_visibility() has been called to set text visibility to false
.
i.e. this is the character used in "password mode" to show the user how many characters have been typed. The default invisible char is an asterisk ('*'). If you set the invisible char to 0, then the user will get no feedback at all; there will be no text on the screen as they type.
ch | A Unicode character. |
void Gtk::Entry::set_max_length | ( | int | max | ) |
Sets the maximum allowed length of the contents of the widget.
If the current contents are longer than the given length, then they will be truncated to fit.
max | The maximum length of the entry, or 0 for no maximum. (other than the maximum length of entries.) The value passed in will be clamped to the range 0-65536. |
void Gtk::Entry::set_text | ( | const Glib::ustring & | text | ) |
void Gtk::Entry::set_visibility | ( | bool | visible = true |
) |
void Gtk::Entry::set_width_chars | ( | int | n_chars | ) |
Changes the size request of the entry to be about the right size for n_chars characters.
Note that it changes the size request, the size can still be affected by how you pack the widget into containers. If n_chars is -1, the size reverts to the default entry size.
n_chars | Width in chars. |
Glib::SignalProxy0< void > Gtk::Entry::signal_activate | ( | ) |
void activate()
Glib::SignalProxy1< void,const Glib::ustring& > Gtk::Entry::signal_insert_at_cursor | ( | ) |
void insert_at_cursor(const Glib::ustring& str)
Glib::SignalProxy1<void,Menu*> Gtk::Entry::signal_populate_popup | ( | ) |
void populate_popup(Menu* menu)
int Gtk::Entry::text_index_to_layout_index | ( | int | text_index | ) | const |
Converts from a position in the entry's Pango::Layout (returned by get_layout()) to a position in the entry contents (returned by get_text()).
text_index | Byte index into the entry contents. |
Gtk::Entry* wrap | ( | GtkEntry * | object, | |
bool | take_copy = false | |||
) | [related] |
object | The C instance |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |