// Generated by gmmproc 2.82.0 -- DO NOT MODIFY! #ifndef _GTKMM_BOXLAYOUT_H #define _GTKMM_BOXLAYOUT_H #include #include /* Copyright (C) 2019 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 #include #ifndef DOXYGEN_SHOULD_SKIP_THIS #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { class GTKMM_API BoxLayout_Class; } // namespace Gtk #endif //DOXYGEN_SHOULD_SKIP_THIS namespace Gtk { /** %Layout manager for placing all children in a single row or column. * * A %Gtk::BoxLayout is a layout manager that arranges the children of any * widget using it into a single row or column, depending on the value * of its Gtk::Orientable::property_orientation(). Within the other dimension * all children all allocated the same size. The %Gtk::BoxLayout will respect * Gtk::Widget::property_halign() and Gtk::Widget::property_valign() of each * child widget. * * If you want all children to be assigned the same size, you can use * property_homogeneous(). * * If you want to specify the amount of space placed between each child, * you can use the property_spacing(). * * @newin{3,96} */ class GTKMM_API BoxLayout : public LayoutManager, public Orientable { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: using CppObjectType = BoxLayout; using CppClassType = BoxLayout_Class; using BaseObjectType = GtkBoxLayout; using BaseClassType = GtkBoxLayoutClass; // noncopyable BoxLayout(const BoxLayout&) = delete; BoxLayout& operator=(const BoxLayout&) = delete; private: friend class BoxLayout_Class; static CppClassType boxlayout_class_; protected: explicit BoxLayout(const Glib::ConstructParams& construct_params); explicit BoxLayout(GtkBoxLayout* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: BoxLayout(BoxLayout&& src) noexcept; BoxLayout& operator=(BoxLayout&& src) noexcept; ~BoxLayout() noexcept override; /** 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. GtkBoxLayout* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkBoxLayout* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkBoxLayout* gobj_copy(); private: protected: explicit BoxLayout(Orientation orientation = Orientation::HORIZONTAL); public: static Glib::RefPtr create(Orientation orientation = Orientation::HORIZONTAL); /** Sets whether the box layout will allocate the same * size to all children. * * @param homogeneous true to set the box layout as homogeneous. */ void set_homogeneous(bool homogeneous = true); /** Returns whether the layout is set to be homogeneous. * * Return: true if the layout is homogeneous */ bool get_homogeneous() const; /** Sets how much spacing to put between children. * * @param spacing The spacing to apply between children. */ void set_spacing(guint spacing); /** Returns the space that @a box_layout puts between children. * * @return The spacing of the layout. */ guint get_spacing() const; /** Sets the baseline position of a box layout. * * The baseline position affects only horizontal boxes with at least one * baseline aligned child. If there is more vertical space available than * requested, and the baseline is not allocated by the parent then the * given @a position is used to allocate the baseline within the extra * space available. * * @param position A `Gtk::BaselinePosition`. */ void set_baseline_position(BaselinePosition position); /** Gets the value set by set_baseline_position(). * * @return The baseline position. */ BaselinePosition get_baseline_position() const; /** Sets the index of the child that determines the baseline * in vertical layout. * * @newin{4,12} * * @param child The child position, or -1. */ void set_baseline_child(int child); /** Gets the value set by set_baseline_child(). * * @newin{4,12} * * @return The index of the child that determines the baseline * in vertical layout, or -1. */ int get_baseline_child() const; // spacing is int in property_spacing(), but guint in set/get_spacing(). // That's how it's done in gtk. /** Whether the box layout should distribute the available space * equally among the children. * * 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_homogeneous() ; /** Whether the box layout should distribute the available space * equally among the children. * * 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_homogeneous() const; /** The space to put between the children. * * Default value: 0 * * @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< int > property_spacing() ; /** The space to put between the children. * * Default value: 0 * * @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< int > property_spacing() const; /** The child that determines the baseline of the box * in vertical layout. * * If the child does baseline positioning, then its baseline * is lined up with the baseline of the box. If it doesn't, then * the bottom edge of the child is used. * * @newin{4,12} * * Default value: -1 * * @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< int > property_baseline_child() ; /** The child that determines the baseline of the box * in vertical layout. * * If the child does baseline positioning, then its baseline * is lined up with the baseline of the box. If it doesn't, then * the bottom edge of the child is used. * * @newin{4,12} * * Default value: -1 * * @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< int > property_baseline_child() const; /** The position of the allocated baseline within the extra space * allocated to each child. * * This property is only relevant for horizontal layouts containing * at least one child with a baseline alignment. * * Default value: Gtk::BaselinePosition::CENTER * * @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< BaselinePosition > property_baseline_position() ; /** The position of the allocated baseline within the extra space * allocated to each child. * * This property is only relevant for horizontal layouts containing * at least one child with a baseline alignment. * * Default value: Gtk::BaselinePosition::CENTER * * @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< BaselinePosition > property_baseline_position() const; // There are no signals or vfuncs. public: public: //C++ methods used to invoke GTK+ virtual functions: protected: //GTK+ Virtual Functions (override these to change behaviour): //Default Signal Handlers:: }; } // 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::BoxLayout */ GTKMM_API Glib::RefPtr wrap(GtkBoxLayout* object, bool take_copy = false); } #endif /* _GTKMM_BOXLAYOUT_H */