// Generated by gmmproc 2.84.0 -- DO NOT MODIFY! #ifndef _GTKMM_FLOWBOXCHILD_H #define _GTKMM_FLOWBOXCHILD_H #include #include /* Copyright (C) 2014 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, see . */ #include #ifndef DOXYGEN_SHOULD_SKIP_THIS using GtkFlowBoxChild = struct _GtkFlowBoxChild; using GtkFlowBoxChildClass = struct _GtkFlowBoxChildClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API FlowBoxChild_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** See the description of FlowBox. * * @ingroup Widgets * @ingroup Containers * * @newin{3,12} */ class GTKMM_API FlowBoxChild : public Widget { public: #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef FlowBoxChild CppObjectType; typedef FlowBoxChild_Class CppClassType; typedef GtkFlowBoxChild BaseObjectType; typedef GtkFlowBoxChildClass BaseClassType; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ FlowBoxChild(FlowBoxChild&& src) noexcept; FlowBoxChild& operator=(FlowBoxChild&& src) noexcept; // noncopyable FlowBoxChild(const FlowBoxChild&) = delete; FlowBoxChild& operator=(const FlowBoxChild&) = delete; ~FlowBoxChild() noexcept override; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: friend GTKMM_API class FlowBoxChild_Class; static CppClassType flowboxchild_class_; protected: explicit FlowBoxChild(const Glib::ConstructParams& construct_params); explicit FlowBoxChild(GtkFlowBoxChild* 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. GtkFlowBoxChild* gobj() { return reinterpret_cast(gobject_); } /// Provides access to the underlying C GObject. const GtkFlowBoxChild* gobj() const { return reinterpret_cast(gobject_); } private: public: /** Creates a new FlowBoxChild, to be used as a child of a FlowBox. */ FlowBoxChild(); /** Sets the child widget of @a self. * * @param child The child widget. */ void set_child(Widget& child); void unset_child(); /** Gets the child widget of @a self. * * @return The child widget of @a self. */ Widget* get_child(); /** Gets the child widget of @a self. * * @return The child widget of @a self. */ const Widget* get_child() const; /** Gets the current index of the @a child in its `Gtk::FlowBox` container. * * @return The index of the @a child, or -1 if the @a child is not * in a flow box. */ int get_index() const; /** Returns whether the @a child is currently selected in its * `Gtk::FlowBox` container. * * @return true if @a child is selected. */ bool is_selected() const; /** Marks @a child as changed, causing any state that depends on this * to be updated. * * This affects sorting and filtering. * * Note that calls to this method must be in sync with the data * used for the sorting and filtering functions. For instance, if * the list is mirroring some external data set, and *two* children * changed in the external data set when you call * changed() on the first child, the sort function * must only read the new data for the first of the two changed * children, otherwise the resorting of the children will be wrong. * * This generally means that if you don’t fully control the data * model, you have to duplicate the data that affects the sorting * and filtering functions into the widgets themselves. * * Another alternative is to call invalidate_sort() * on any model change, but that is more expensive. */ void changed(); /** * @par Slot Prototype: * void on_my_%activate() * * Flags: Run First, Action * * Emitted when the user activates a child widget in a `Gtk::FlowBox`. * * This can happen either by clicking or double-clicking, * or via a keybinding. * * This is a [keybinding signal](class.SignalAction.html), * but it can be used by applications for their own purposes. * * The default bindings are Space and Enter. */ Glib::SignalProxy signal_activate(); /** The child widget. * * @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< Widget* > property_child() ; /** The child widget. * * @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< Widget* > property_child() const; public: 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_activate(). virtual void on_activate(); }; } // 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::FlowBoxChild */ GTKMM_API Gtk::FlowBoxChild* wrap(GtkFlowBoxChild* object, bool take_copy = false); } //namespace Glib #endif /* _GTKMM_FLOWBOXCHILD_H */