// Generated by gmmproc 2.66.7 -- DO NOT MODIFY! #ifndef _GTKMM_TOGGLETOOLBUTTON_H #define _GTKMM_TOGGLETOOLBUTTON_H #include #include /* * Copyright (C) 2003 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkToggleToolButton = struct _GtkToggleToolButton; using GtkToggleToolButtonClass = struct _GtkToggleToolButtonClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API ToggleToolButton_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** A Gtk::ToolItem containing a toggle button. * * A ToggleToolButton is a Gtk::ToolItem that contains a toggle button. * * A ToggleToolButton widget looks like this: * @image html toggletoolbutton1.png * * @ingroup Widgets */ class GTKMM_API ToggleToolButton : public ToolButton { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef ToggleToolButton CppObjectType; typedef ToggleToolButton_Class CppClassType; typedef GtkToggleToolButton BaseObjectType; typedef GtkToggleToolButtonClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ ToggleToolButton(ToggleToolButton&& src) noexcept; ToggleToolButton& operator=(ToggleToolButton&& src) noexcept; // noncopyable ToggleToolButton(const ToggleToolButton&) = delete; ToggleToolButton& operator=(const ToggleToolButton&) = delete; ~ToggleToolButton() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class GTKMM_API ToggleToolButton_Class; static CppClassType toggletoolbutton_class_; protected: explicit ToggleToolButton(const Glib::ConstructParams& construct_params); explicit ToggleToolButton(GtkToggleToolButton* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: /** Get the GType for this class, for use with the underlying GObject type system. */ static GType get_type() G_GNUC_CONST; #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_base_type() G_GNUC_CONST; #endif /// Provides access to the underlying C GObject. GtkToggleToolButton* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkToggleToolButton* 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:: /// This is a default handler for the signal signal_toggled(). virtual void on_toggled(); private: public: /** Creates a new ToggleToolButton. */ ToggleToolButton(); // _WRAP_CTOR does not take a 'deprecated' parameter. // _WRAP_CTOR(ToggleToolButton(const Gtk::StockID& stock_id), gtk_toggle_tool_button_new_from_stock) #ifndef GTKMM_DISABLE_DEPRECATED /** Creates a new ToggleToolButton from a StockID. * * The ToggleToolButton will be created according to the @a stock_id properties. * * @param stock_id The StockID which determines the look of the ToggleToolButton. * @deprecated Use one of the other constructors instead. */ explicit ToggleToolButton(const Gtk::StockID& stock_id); #endif // GTKMM_DISABLE_DEPRECATED /** Creates a new ToggleToolButton with a label. * * The ToggleToolButton will have the label @a label. * * @param label The string used to display the label for this ToggleToolButton. */ explicit ToggleToolButton(const Glib::ustring& label); /** Creates a new ToggleToolButton with an image. * * The ToggleToolButton will have the label @a label and an image widget @a icon_widget. * * @param icon_widget The widget placed as the ToggleToolButton's icon. * @param label The string used to display the label for this ToggleToolButton. */ explicit ToggleToolButton(Widget& icon_widget, const Glib::ustring& label = Glib::ustring()); /** Sets the status of the toggle tool button. Set to true if you * want the GtkToggleButton to be “pressed in”, and false to raise it. * This action causes the toggled signal to be emitted. * * @newin{2,4} * * @param is_active Whether @a button should be active. */ void set_active(bool is_active = true); /** Queries a Gtk::ToggleToolButton and returns its current state. * Returns true if the toggle button is pressed in and false if it is raised. * * @newin{2,4} * * @return true if the toggle tool button is pressed in, false if not. */ bool get_active() const; /** * @par Slot Prototype: * void on_my_%toggled() * * Flags: Run First * * Emitted whenever the toggle tool button changes state. */ Glib::SignalProxy< void > signal_toggled(); /** If the toggle tool button should be pressed in. * * @newin{2,8} * * Default value: false * * @return A PropertyProxy that allows you to get or set the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy< bool > property_active() ; /** If the toggle tool button should be pressed in. * * @newin{2,8} * * Default value: false * * @return A PropertyProxy_ReadOnly that allows you to get the value of the property, * or receive notification when the value of the property changes. */ Glib::PropertyProxy_ReadOnly< bool > property_active() const; }; } // namespace Gtk namespace Glib { /** A Glib::wrap() method for this object. * * @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. * * @relates Gtk::ToggleToolButton */ GTKMM_API Gtk::ToggleToolButton* wrap(GtkToggleToolButton* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_TOGGLETOOLBUTTON_H */