gtk.Entry — a single line text entry field.
| class gtk.Entry(gtk.Widget, gtk.Editable, gtk.CellEditable): | 
+--gobject.GObject +-- gtk.Object +-- gtk.Widget +-- gtk.Entry
			gtk.Entry
			implements 
			gtk.Buildable
            atk.ImplementorIFace
            gtk.Editable
            gtk.CellEditable
		
| 
 | 
| 
 | 
gtk.Editable Signal Prototypes
gtk.CellEditable Signal Prototypes
| "activate" |     def callback( | 
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | |
|     def callback( | 
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.
    gtk.Entry(max=0)| 
 | the maximum length of the entry, or 0 for no maximum. (other than the maximum length of entries.) The value passed in will be limited to the range 0-65536. | 
| Returns : | a new gtk.Entry. | 
Creates a new gtk.Entry widget
    with the maximum length specified by max.
    def set_visibility(visible)| 
 | If False the contents are obscured using the "invisible-char" | 
The set_visibility() method sets the
      "visibility" property to the value of
      visible. If visible is True
      the contents of the entry are displayed as plain text. If visible is
      False, the contents are obscured by replacing the
      characters with the invisible character (specified by the
      "invisible-char" property). The characters will also be obscured when
      the text in the entry widget is copied elsewhere. The default
      invisible char is the asterisk '*', but it can be changed with set_invisible_char().
    def get_visibility()| Returns : | Trueif the text is
currently visible | 
The get_visibility() method retrieves
      the value of the "visibility" property that determines whether the
      text in entry is visible. See set_visibility().
    def set_invisible_char(ch)| 
 | a Unicode character | 
The set_invisible_char() method sets
      the "invisible-char" property with the value of
      ch.  The "invisible-char" is 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 character is an asterisk ('*').  If you
      set the invisible character to 0, then the user will get no feedback
      at all; there will be no text on the screen as they type.
    def get_invisible_char()| Returns : | the current invisible char, or 0, if the entry does not show invisible text at all. | 
The get_invisible_char() method retrieves the value of the
      "invisible-char" property. The "invisible-char" is the character
      displayed in place of the real characters for entries with visibility
      set to False. See set_invisible_char().
    def set_has_frame(setting)| 
 | If True the entry is displayed with a beveled frame around it. | 
The set_has_frame() method sets the
      "has-frame" property to the value of setting.
      If setting is True the entry
      is displayed with a beveled frame around it.
    def get_has_frame()| Returns : | whether the entry has a beveled frame | 
The get_has_frame() method gets the
      value of the "has-frame" property. If "has-frame" is
      True the entry will be displayed with a beveled
      frame around it.
    def set_max_length(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. | 
The set_max_length() method sets the
      "max-length" property to the value of max.  The
      "max-length" property 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. If max is 0 then there is
      no maximum length (other than 65536).
    def get_max_length()| Returns : | the maximum allowed number of characters in gtk.Entry, or 0
if there is no maximum. | 
The get_max_length() method retrieves
      the value of the "max-length" property that specifies the maximum
      allowed length of the text in the entry. See set_max_length().
    def set_activates_default(setting)| 
 | If Trueactivate the
window's default widget on an Enter
key press | 
The set_activates_default() method sets
      the "activates-default" property to the value of
      setting. If setting is
      True, pressing the Enter key 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.)
    def get_activates_default()| Returns : | Trueif the entry will
activate the default widget | 
The get_activates_default() method
      retrieves the value of the "activates-default" property which is set
      by set_activates_default().
      If "activates-default" is True pressing the
      Enter key in the entry will activate the default
      widget for the window containing the entry.
    def set_width_chars(n_chars)| 
 | width in chars | 
The set_width_chars() method sets the
      "width-chars" property to the value of n_char.
      Setting the "width-chars" property changes the size request of the
      entry to be about the right size for n_chars
      characters. Note that it only 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.
    def get_width_chars()| Returns : | number of chars to request space for, or negative if unset | 
The get_width_chars() method gets the
      value of the "width-chars" property which is set by the set_width_chars()
      method.
    def set_text(text)| 
 | a string to use as the new contents of the entry | 
The set_text() method sets the "text"
      property to the value of text. The string in
      text replaces the current contents of the
      entry.
    def get_text()| Returns : | the contents of the entry as a string | 
The get_text() method returns the value
      of the "text" property which is a string containing the contents of
      the entry.
    def get_layout()| Returns : | the pango.Layoutfor
this entry | 
The get_layout() method 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().
    def get_layout_offsets()| Returns : | a tuple containing the X and Y offsets of the pango layout | 
The get_layout_offsets() method obtains
      the position of the pango.Layout
      used to render text in the entry, in widget coordinates and returns it
      as a tuple. This method is used 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. It is 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.
    def set_alignment(xalign)| 
 | The horizontal alignment ranging from 0.0 to 1.0 representing the freespace to the left (right for RTL layouts) of the text. | 
This method is available in PyGTK 2.4 and above.
The set_alignment() method sets the
      "xalign" property to the value of xalign. The
      alignment controls the horizontal positioning of the contents when the
      displayed text is shorter than the width of the entry. The value of
      xalign is the fraction of freespace to the left
      (right in RTL layouts) of the text.
    def get_alignment()| Returns : | The horizontal alignment ranging from 0.0 to 1.0 representing the freespace to the left (right for RTL layouts) of the text. | 
This method is available in PyGTK 2.4 and above.
The get_alignment() method returns the
      value of the "xalign" property which is the fraction of freespace (if
      any) to the left (right in RTL layouts) of the text.
    def set_completion(completion)| 
 | a gtk.EntryCompletion | 
This method is available in PyGTK 2.4 and above.
The set_completion() method sets the
      gtk.EntryCompletion
      specified by completion to be the auxiliary
      completion object to use with the entry. All further configuration of
      the completion mechanism is done using
      completion and the gtk.EntryCompletion
      methods.
    def get_completion()| Returns : | the auxiliary completion object | 
This method is available in PyGTK 2.4 and above.
The get_completion() method returns the
     gtk.EntryCompletion
     object currently in use by the entry.
    def set_inner_border(border)| 
 | a gtk.Border,
          orNone | 
This method is available in PyGTK 2.10 and above.
The set_inner_border() method sets the
      entry's "inner-border" property to the value specified by
      border, or clears it if None
      is passed. The "inner-border" is the area around the entry's text, but
      inside its frame.
If set, this property overrides the inner-border style property. Overriding the style-provided border is useful when you want to do in-place editing of some text in a canvas or list widget, where pixel-exact positioning of the entry is important.
    def get_inner_border()| Returns : | the entry's gtk.Border,
          orNoneif none was set. | 
This method is available in PyGTK 2.10 and above.
The get_inner_border() method returns
      the value of the entry's "inner-border" property. See set_inner_border()
      for more information.
    def set_cursor_hadjustment(adjustment)| 
 | An adjustment which should be adjusted when
          the cursor is moved, or None. | 
This method is available in PyGTK 2.12 and above.
        The set_cursor_hadjustment() method hooks up an adjustment
        to the cursor position in an entry, so that when the cursor is moved, the adjustment
        is scrolled to show that position. See
        gtk.ScrolledWindow.get_hadjustment
        for a typical way of obtaining the adjustment.
        The adjustment has to be in pixel units and in the same coordinate system as the entry.
      
    def get_cursor_hadjustment()| Returns : | The horizontal cursor adjustment, or Noneif none has been set. | 
This method is available in PyGTK 2.12 and above.
        The get_cursor_hadjustment() method retrieves the horizontal
        cursor adjustment for the entry. See
        set_cursor_hadjustment.
      
    def set_override_mode(override)| 
 | new value. | 
This method is available in PyGTK 2.14 and above.
        The set_override_mode() method sets whether the text
	is overwritten when typing in the GtkEntry.
      
    def get_override_mode()| Returns : | whether the text is overwritten when typing. | 
This method is available in PyGTK 2.14 and above.
        The get_override_mode() method gets the value set by
	gtk.Entry.set_override_mode().
      
    def callback(entry, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "activate" signal is emitted when the entry is activated
      either by user action (pressing the Enter key) or
      programmatically with the gtk.Widget.activate()
      method
    def callback(entry, user_param1, ...)| 
 | the object which received the signal. | 
| 
 | the first user parameter (if any) specified
          with the connect() | 
| 
 | additional user parameters (if any) | 
The "backspace" signal is emitted when the Backspace key is entered from the keyboard.
    def callback(entry, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "copy-clipboard" signal is emitted when the selection text in the entry is copied to the clipboard.
    def callback(entry, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "cut-clipboard" signal is emitted when the selection in the entry is cut (removed from the entry) and placed in the clipboard.
    def callback(entry, delete_type, count, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the type of deletion | 
| 
 | the number of deletions of the type to perform | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "delete-from-cursor" signal is emitted when the a deletion
      from the cursor i.e. removal o text at the cursor position, either
      before it (negative count) or after it
      (positive count). The value of
      delete_type can be one of:
    def callback(entry, string, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the text being inserted in the entry | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "insert-at-cursor" signal is emitted when text is being inserted in the entry.
    def callback(entry, step, count, extend_selection, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the size of the step to move the cursor | 
| 
 | the number of steps to move the cursor | 
| 
 | if True extend the selection as well as moving the cursor | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "move-cursor" signal is emitted when the cursor is being
      moved by count steps of size
      step. If
      extend_selection is True the
      selection is extended as the cursor is being moved. The value of
      step can be one of:
    def callback(entry, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "paste-clipboard" signal is emitted when the contents of the clipboard are pasted into the entry.
    def callback(entry, menu, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the menu that needs populating | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "populate-popup" signal is emitted when the
      menu needs populating.
    def callback(entry, user_param1, ...)| 
 | the entry that received the signal | 
| 
 | the first user parameter (if any) specified
with the connect() | 
| 
 | additional user parameters (if any) | 
The "toggle-overwrite" signal is emitted when the internal entry attribute "overwrite_mode" is toggled by pressing the Insert key.