// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GTKMM_COMBO_H #define _GTKMM_COMBO_H #include /* $Id$ */ /* combo.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 #include #include #include #include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkListItem GtkListItem; typedef struct _GtkListItemClass GtkListItemClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class ComboDropDownItem_Class; } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkList GtkList; typedef struct _GtkListClass GtkListClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class ComboDropDown_Class; } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkCombo GtkCombo; typedef struct _GtkComboClass GtkComboClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class Combo_Class; } // namespace Gtk namespace Gtk { /** An item in a ComboDropDownList. * * Items in a ComboDropDownList inherit Item. Two signals are added. * * @deprecated Use the ComboBox widget instead. */ class ComboDropDownItem : public Gtk::Item { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef ComboDropDownItem CppObjectType; typedef ComboDropDownItem_Class CppClassType; typedef GtkListItem BaseObjectType; typedef GtkListItemClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ virtual ~ComboDropDownItem(); #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class ComboDropDownItem_Class; static CppClassType combodropdownitem_class_; // noncopyable ComboDropDownItem(const ComboDropDownItem&); ComboDropDownItem& operator=(const ComboDropDownItem&); protected: explicit ComboDropDownItem(const Glib::ConstructParams& construct_params); explicit ComboDropDownItem(GtkListItem* 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. GtkListItem* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GtkObject. const GtkListItem* gobj() const { return reinterpret_cast(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_scroll_horizontal(ScrollType scroll_type, float position); virtual void on_scroll_vertical(ScrollType scroll_type, float position); private: public: ComboDropDownItem(); Glib::SignalProxy2< void,ScrollType,float > signal_scroll_horizontal(); Glib::SignalProxy2< void,ScrollType,float > signal_scroll_vertical(); }; namespace ComboDropDown_Helpers { typedef Gtk::ComboDropDownItem Element; class ComboDropDownList : public Glib::HelperList< ComboDropDownItem, const Element, Glib::List_Cpp_Iterator > { public: ComboDropDownList(); explicit ComboDropDownList(GtkList* gparent); ComboDropDownList(const ComboDropDownList& src); virtual ~ComboDropDownList() {} ComboDropDownList& operator=(const ComboDropDownList& src); typedef Glib::HelperList< ComboDropDownItem, const Element, Glib::List_Cpp_Iterator > type_base; GtkList* gparent(); const GtkList* gparent() const; virtual GList*& glist() const; // front of list virtual void erase(iterator start, iterator stop); virtual iterator erase(iterator); //Implented as custom or by LIST_CONTAINER_REMOVE virtual void remove(const_reference); //Implented as custom or by LIST_CONTAINER_REMOVE /// This is order n. (use at own risk) reference operator[](size_type l) const; public: iterator insert(iterator position, element_type& e); //custom-implemented. template inline void insert(iterator position, InputIterator first, InputIterator last) { for(;first != last; ++first) position = insert(position, *first); } inline void push_front(element_type& e) { insert(begin(), e); } inline void push_back(element_type& e) { insert(end(), e); } iterator find(const_reference c); iterator find(Widget&); }; } /* namespace ComboDropDown_Helpers */ class Combo; /** The dropdown list of a Combo. * * A combo is a compound widget which crosses a text entry area and a pull * down list. The dropdown list is implemented with the deprecated GtkList * widget on the gtk+ side. ComboDropDown is a thin wrapper around GtkList * containing just the functionality necessary for a Combo's list. To add * and remove items use the STL-style interface that is accessible through * ComboDropDown::children(). * * @deprecated Use the ComboBox widget instead. */ class ComboDropDown : public Gtk::Container { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef ComboDropDown CppObjectType; typedef ComboDropDown_Class CppClassType; typedef GtkList BaseObjectType; typedef GtkListClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ virtual ~ComboDropDown(); #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class ComboDropDown_Class; static CppClassType combodropdown_class_; // noncopyable ComboDropDown(const ComboDropDown&); ComboDropDown& operator=(const ComboDropDown&); protected: explicit ComboDropDown(const Glib::ConstructParams& construct_params); explicit ComboDropDown(GtkList* 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. GtkList* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GtkObject. const GtkList* gobj() const { return reinterpret_cast(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_select_child(Widget& item); virtual void on_selection_changed(); virtual void on_unselect_child(Widget& item); private: public: typedef ComboDropDown_Helpers::ComboDropDownList ComboDropDownList; protected: ComboDropDown(); friend class Combo; public: void scroll_horizontal(ScrollType scroll_type, float position); void scroll_vertical(ScrollType scroll_type, float position); ComboDropDownList& children(); const ComboDropDownList& children() const; Glib::SignalProxy1< void,Widget& > signal_select_child(); Glib::SignalProxy0< void > signal_selection_changed(); Glib::SignalProxy1< void,Widget& > signal_unselect_child(); protected: #ifndef DOXYGEN_SHOULD_SKIP_THIS mutable ComboDropDownList children_proxy_; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ }; class ScrolledWindow; class Window; /** A text entry field with a dropdown list. * * A combo is a compound widget which crosses a text entry area and a pull * down list. It may allow text entry or it may just allow list * values depending on the settings. * * Access members allow altering of the widget components. * * @deprecated Use the ComboBox widget instead. */ class Combo : public HBox { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef Combo CppObjectType; typedef Combo_Class CppClassType; typedef GtkCombo BaseObjectType; typedef GtkComboClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ virtual ~Combo(); #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class Combo_Class; static CppClassType combo_class_; // noncopyable Combo(const Combo&); Combo& operator=(const Combo&); protected: explicit Combo(const Glib::ConstructParams& construct_params); explicit Combo(GtkCombo* 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. GtkCombo* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GtkObject. const GtkCombo* gobj() const { return reinterpret_cast(gobject_); } public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: private: public: Combo(); /** Allow direct text entry * Whether the text in the entry must be or not be in the list. * * @param value Set to true if the value must be in list. * @param empty Set to true if the text area is allowed to be empty. */ void set_value_in_list(bool value = true, bool empty = false); /** Set arrows keys to change value * Up and down will scroll through the list items. * Useful when there is a small list of value that the * list must have. * * @param arrows_on true indicates the arrow keys scroll. */ void set_use_arrows(bool arrows_on = true); /** Set arrows keys to change if value not in list * Up and down will scroll through the list items but only * change the current value if the text does not match a list item.. * Useful when there is a small list of value that the * list must have. * * @param arrows_always true indicates the value will change. */ void set_use_arrows_always(bool arrows_always = true); /** Sets list case sensitive * Determines if the list items and text comparisons for * set_use_arrows_always() should be case sensitive. */ void set_case_sensitive(bool val = true); /** Set the current entry Glib::ustring * Call this function on an item if it isn't a label or you * want it to have a different value to be displayed in the entry */ void set_item_string(Gtk::Item& item, const Glib::ustring& item_value); void remove_item_string(Gtk::Item& item); /// Insert a list of items. void set_popdown_strings(const Glib::ListHandle& strings); Glib::ListHandle get_popdown_strings() const; void disable_activate(); Entry* get_entry(); const Entry* get_entry() const; ComboDropDown* get_list(); const ComboDropDown* get_list() const; /** Whether the arrow keys move through the list of items. * * 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 property_enable_arrow_keys() ; /** Whether the arrow keys move through the list of items. * * 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 property_enable_arrow_keys() const; /** Obsolete property * * 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 property_enable_arrows_always() ; /** Obsolete property * * 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 property_enable_arrows_always() const; /** Whether list item matching is case sensitive. * * 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 property_case_sensitive() ; /** Whether list item matching is case sensitive. * * 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 property_case_sensitive() const; /** Whether an empty value may be entered in this field. * * 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 property_allow_empty() ; /** Whether an empty value may be entered in this field. * * 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 property_allow_empty() const; /** Whether entered values must already be present in the list. * * 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 property_value_in_list() ; /** Whether entered values must already be present in the list. * * 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 property_value_in_list() const; }; } /* namespace Gtk */ namespace Glib { /** @relates Gtk::ComboDropDownItem * @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::ComboDropDownItem* wrap(GtkListItem* object, bool take_copy = false); } namespace Glib { /** @relates Gtk::ComboDropDown * @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::ComboDropDown* wrap(GtkList* object, bool take_copy = false); } namespace Glib { /** @relates Gtk::Combo * @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::Combo* wrap(GtkCombo* object, bool take_copy = false); } #endif /* _GTKMM_COMBO_H */