// Generated by gmmproc 2.66.7 -- DO NOT MODIFY! #ifndef _GTKMM_SWITCH_H #define _GTKMM_SWITCH_H #include #include /* Copyright (C) 2010 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 #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkSwitch = struct _GtkSwitch; using GtkSwitchClass = struct _GtkSwitchClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API Switch_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { //TODO: Derive from (and implement) Actionable when we can break ABI. /** A "light switch"-style toggle. * * The Switch widget has two states: on or off. The user can control * which state should be active by clicking the empty area, or by dragging the * handle. * * @ingroup Widgets * @newin{3,0} */ class GTKMM_API Switch : public Widget, public Activatable { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef Switch CppObjectType; typedef Switch_Class CppClassType; typedef GtkSwitch BaseObjectType; typedef GtkSwitchClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ Switch(Switch&& src) noexcept; Switch& operator=(Switch&& src) noexcept; // noncopyable Switch(const Switch&) = delete; Switch& operator=(const Switch&) = delete; ~Switch() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend class GTKMM_API Switch_Class; static CppClassType switch_class_; protected: explicit Switch(const Glib::ConstructParams& construct_params); explicit Switch(GtkSwitch* 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. GtkSwitch* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkSwitch* 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_state_set(). virtual bool on_state_set(bool state); private: public: Switch(); /** Changes the state of @a sw to the desired one. * * @newin{3,0} * * @param is_active true if @a sw should be active, and false otherwise. */ void set_active(bool is_active = true); /** Gets whether the Gtk::Switch is in its “on” or “off” state. * * @newin{3,0} * * @return true if the Gtk::Switch is active, and false otherwise. */ bool get_active() const; /** Sets the underlying state of the Gtk::Switch. * * Normally, this is the same as Gtk::Switch::property_active(), unless the switch * is set up for delayed state changes. This function is typically * called from a Gtk::Switch::signal_state_set() signal handler. * * See Gtk::Switch::signal_state_set() for details. * * @newin{3,14} * * @param state The new state. */ void set_state(bool state = true); /** Gets the underlying state of the Gtk::Switch. * * @newin{3,14} * * @return The underlying state. */ bool get_state() const; /** Whether the Gtk::Switch widget is in its on or off state. * * 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() ; /** Whether the Gtk::Switch widget is in its on or off state. * * 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; /** The backend state that is controlled by the switch. * See Gtk::Switch::signal_state_set() for details. * * @newin{3,14} * * 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_state() ; /** The backend state that is controlled by the switch. * See Gtk::Switch::signal_state_set() for details. * * @newin{3,14} * * 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_state() const; //activate is an action signal that's documented as not for use by applications. /** * @par Slot Prototype: * bool on_my_%state_set(bool state) * * Flags: Run Last * * The signal_state_set() signal on GtkSwitch is emitted to change the underlying * state. It is emitted when the user changes the switch position. The * default handler keeps the state in sync with the Gtk::Switch::property_active() * property. * * To implement delayed state change, applications can connect to this signal, * initiate the change of the underlying state, and call Gtk::Switch::set_state() * when the underlying state change is complete. The signal handler should * return true to prevent the default handler from running. * * Visually, the underlying state is represented by the trough color of * the switch, while the Gtk::Switch::property_active() property is represented by the * position of the switch. * * @newin{3,14} * * @param state The new state of the switch. * @return true to stop the signal emission. */ Glib::SignalProxy< bool,bool > signal_state_set(); }; } // 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::Switch */ GTKMM_API Gtk::Switch* wrap(GtkSwitch* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_SWITCH_H */