13
0
livetrax/libs/gtkmm2/gtk/gtkmm/entry.h
Taybin Rutkin d09f6b3016 Initial revision
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
2005-05-13 20:47:18 +00:00

525 lines
19 KiB
C++

// -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKMM_ENTRY_H
#define _GTKMM_ENTRY_H
#include <glibmm.h>
/* $Id$ */
/* entry.h
*
* Copyright (C) 1998-2002 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gtkmm/widget.h>
#include <gtkmm/editable.h>
#include <gtkmm/menu.h>
#include <gtkmm/celleditable.h>
#include <gtkmm/entrycompletion.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkEntry GtkEntry;
typedef struct _GtkEntryClass GtkEntryClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class Entry_Class; } // namespace Gtk
namespace Gtk
{
/** A single line text entry field.
*
* 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.
*
* @ingroup Widgets
*/
class Entry
: public Widget,
public Editable,
public CellEditable
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Entry CppObjectType;
typedef Entry_Class CppClassType;
typedef GtkEntry BaseObjectType;
typedef GtkEntryClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
virtual ~Entry();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class Entry_Class;
static CppClassType entry_class_;
// noncopyable
Entry(const Entry&);
Entry& operator=(const Entry&);
protected:
explicit Entry(const Glib::ConstructParams& construct_params);
explicit Entry(GtkEntry* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GtkObject.
GtkEntry* gobj() { return reinterpret_cast<GtkEntry*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkEntry* gobj() const { return reinterpret_cast<GtkEntry*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
virtual void on_populate_popup(Menu* menu);
virtual void on_insert_at_cursor(const Glib::ustring& str);
virtual void on_activate();
private:
public:
Entry();
void set_visibility(bool visible = true);
/** Retrieves whether the text in @a entry is visible. See
* set_visibility().
* @return <tt>true</tt> if the text is currently visible.
*/
bool get_visibility() const;
/** Sets the character to use in place of the actual text when
* set_visibility() has been called to set text visibility
* to <tt>false</tt>. 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.
* @param ch A Unicode character.
*/
void set_invisible_char(gunichar ch);
/** Retrieves the character displayed in place of the real characters
* for entries with visisbility set to false. See set_invisible_char().
* @return The current invisible char, or 0, if the entry does not
* show invisible text at all.
*/
gunichar get_invisible_char() const;
/** Sets whether the entry has a beveled frame around it.
* @param setting New value.
*/
void set_has_frame(bool setting = true);
/** Gets the value set by set_has_frame().
* @return Whether the entry has a beveled frame.
*/
bool get_has_frame() const;
/** 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.
* @param 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 set_max_length(int max);
/** Retrieves the maximum allowed length of the text in
* @a entry . See set_max_length().
* @return The maximum allowed number of characters
* in Gtk::Entry, or 0 if there is no maximum.
*/
int get_max_length() const;
/** If @a setting is <tt>true</tt>, pressing Enter in the @a 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 @a setting is <tt>true</tt>, the entry calls
* Gtk::Window::activate_default() on the window containing the entry, in
* the default handler for the "activate" signal.)
* @param setting <tt>true</tt> to activate window's default widget on Enter keypress.
*/
void set_activates_default(bool setting = true);
/** Retrieves the value set by set_activates_default().
* @return <tt>true</tt> if the entry will activate the default widget.
*/
gboolean get_activates_default() const;
/** Changes the size request of the entry to be about the right size
* for @a n_chars characters. Note that it changes the size
* <em>request</em>, the size can still be affected by
* how you pack the widget into containers. If @a n_chars is -1, the
* size reverts to the default entry size.
* @param n_chars Width in chars.
*/
void set_width_chars(int n_chars);
/** Gets the value set by set_width_chars().
* @return Number of chars to request space for, or negative if unset.
*/
int get_width_chars() const;
void set_text(const Glib::ustring &text);
/** Retrieves the contents of the entry widget.
* See also Gtk::Editable::get_chars().
* @return A pointer to the contents of the widget as a
* string. This string points to internally allocated
* storage in the widget and must not be freed, modified or
* stored.
*/
Glib::ustring get_text() 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 so need not be
* 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.
* @return The Pango::Layout for this entry.
*/
Glib::RefPtr<Pango::Layout> 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 so need not be
* 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.
* @return The Pango::Layout for this entry.
*/
Glib::RefPtr<const Pango::Layout> get_layout() const;
/** 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.
* @param x Location to store X offset of layout, or <tt>0</tt>.
* @param y Location to store Y offset of layout, or <tt>0</tt>.
*/
void get_layout_offsets(int& x, int& y);
/** 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()).
* @param layout_index Byte index into the entry layout text.
* @return Byte index into the entry contents.
*/
int layout_index_to_text_index(int layout_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()).
* @param text_index Byte index into the entry contents.
* @return Byte index into the entry layout text.
*/
int text_index_to_layout_index(int text_index) const;
/** 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.
*
* Since: 2.4
* @param xalign The horizontal alignment, from 0 (left) to 1 (right).
* Reversed for RTL layouts.
*/
void 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.
*
* Since: 2.4
* @param xalign The horizontal alignment, from 0 (left) to 1 (right).
* Reversed for RTL layouts.
*/
void set_alignment(AlignmentEnum xalign);
/** Gets the value set by set_alignment().
* @return The alignment
*
* Since: 2.4.
*/
float get_alignment() const;
/** Sets @a completion to be the auxiliary completion object to use with @a entry .
* All further configuration of the completion mechanism is done on
* @a completion using the Gtk::EntryCompletion API.
*
* Since: 2.4
* @param completion The Gtk::EntryCompletion.
*/
void set_completion(const Glib::RefPtr<EntryCompletion>& completion);
/** Returns the auxiliary completion object currently in use by @a entry .
* @return The auxiliary completion object currently in use by @a entry .
*
* Since: 2.4.
*/
Glib::RefPtr<EntryCompletion> get_completion();
/** Returns the auxiliary completion object currently in use by @a entry .
* @return The auxiliary completion object currently in use by @a entry .
*
* Since: 2.4.
*/
Glib::RefPtr<const EntryCompletion> get_completion() const;
guint16 get_text_length() const;
Glib::SignalProxy1< void,Menu* > signal_populate_popup();
Glib::SignalProxy1< void,const Glib::ustring& > signal_insert_at_cursor();
//Key-binding signals:
Glib::SignalProxy0< void > signal_activate();
//TODO: ignore this too? It's used in an example.
/** The current position of the insertion cursor in chars.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<int> property_cursor_position() const;
/** The position of the opposite end of the selection from the cursor in chars.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<int> property_selection_bound() const;
/** Whether the entry contents can be edited.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<bool> property_editable() ;
/** Whether the entry contents can be edited.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<bool> property_editable() const;
/** Maximum number of characters for this entry. Zero if no maximum.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<int> property_max_length() ;
/** Maximum number of characters for this entry. Zero if no maximum.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<int> property_max_length() const;
/** FALSE displays the invisible char instead of the actual text (password mode).
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<bool> property_visibility() ;
/** FALSE displays the invisible char instead of the actual text (password mode).
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<bool> property_visibility() const;
/** FALSE removes outside bevel from entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<bool> property_has_frame() ;
/** FALSE removes outside bevel from entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<bool> property_has_frame() const;
/** The character to use when masking entry contents (in password mode).
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<gunichar> property_invisible_char() ;
/** The character to use when masking entry contents (in password mode).
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<gunichar> property_invisible_char() const;
/** Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<bool> property_activates_default() ;
/** Whether to activate the default widget (such as the default button in a dialog) when Enter is pressed.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<bool> property_activates_default() const;
/** Number of characters to leave space for in the entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<int> property_width_chars() ;
/** Number of characters to leave space for in the entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<int> property_width_chars() const;
/** Number of pixels of the entry scrolled off the screen to the left.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<int> property_scroll_offset() const;
/** The contents of the entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<Glib::ustring> property_text() ;
/** The contents of the entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<Glib::ustring> property_text() const;
};
} /* namespace Gtk */
namespace Glib
{
/** @relates Gtk::Entry
* @param object The C instance
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*/
Gtk::Entry* wrap(GtkEntry* object, bool take_copy = false);
}
#endif /* _GTKMM_ENTRY_H */