/usr/include/gtkmm-3.0/gtkmm/box.h is in libgtkmm-3.0-dev 3.10.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | // -*- c++ -*-
// Generated by gmmproc 2.38.0 -- DO NOT MODIFY!
#ifndef _GTKMM_BOX_H
#define _GTKMM_BOX_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.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 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 <gtkmm/container.h>
#include <gtkmm/orientable.h>
#include <gtk/gtk.h> /* For _GtkBoxChild */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkBox GtkBox;
typedef struct _GtkBoxClass GtkBoxClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class Box_Class; } // namespace Gtk
namespace Gtk
{
/** Packing options for adding child widgets to a Box with pack_start() and pack_end().
* @ingroup gtkmmEnums
*/
enum PackOptions
{
PACK_SHRINK, /**< Space is contracted to the child widget size. */
PACK_EXPAND_PADDING, /**< Space is expanded, with extra space filled with padding. */
PACK_EXPAND_WIDGET /**< Space is expanded, with extra space filled by increasing the child widget size. */
};
/** The Box widget organizes child widgets into a rectangular area.
*
* The rectangular area of a Box is organized into either a single row
* or a single column of child widgets depending upon the orientation.
* Thus, all children of a Box are allocated one dimension in common,
* which is the height of a row, or the width of a column.
*
* Gtk::Box uses a notion of packing. Packing refers to adding widgets with
* reference to a particular position in a Gtk::Container. There are two
* reference positions: the start and the end of the box. For a vertical Box, the start
* is defined as the top of the box and the end is defined as the bottom. For
* a horizontal Box the start is defined as the left side and the end is defined as the
* right side. Use repeated calls to pack_start() to pack widgets into a
* Gtk::Box from start to end. Use pack_end() to add widgets from end to start.
* You may intersperse these calls and add widgets from both ends of the same
* Gtk::Box. The last widget added with pack_start() will be placed just before
* the last widget added with pack_end()
*
* Because Gtk::Box is a Gtk::Container, you may also use Gtk::Container::add()
* to insert widgets, and they will be packed as if with pack_start(). Use
* Gtk::Container::remove() to remove widgets.
*
* Use set_homogeneous() to specify whether or not all children of the Gtk::Box
* occupy the same amount of space.
*
* Use set_spacing() to determine the minimum
* space placed between all children in the Gtk::Box. Note that
* spacing is added between the children, while
* padding added by gtk_box_pack_start() or gtk_box_pack_end() is added
* on either side of the widget it belongs to.
*
* Use reorder_child() to
* move a child widget to a different place in the box.
*
* Use
* set_child_packing() to reset the pack options and padding attributes of any
* Gtk::Box child. Use query_child_packing() to query these fields.
*/
class Box
: public Container,
public Orientable
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Box CppObjectType;
typedef Box_Class CppClassType;
typedef GtkBox BaseObjectType;
typedef GtkBoxClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
virtual ~Box();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class Box_Class;
static CppClassType box_class_;
// noncopyable
Box(const Box&);
Box& operator=(const Box&);
protected:
explicit Box(const Glib::ConstructParams& construct_params);
explicit Box(GtkBox* 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 GtkObject.
GtkBox* gobj() { return reinterpret_cast<GtkBox*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkBox* gobj() const { return reinterpret_cast<GtkBox*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
private:
public:
//Note that we try to use the same defaul parameter value as the default property value.
/** Creates a new horizontal box.
* @param orientation The box's orientation.
* @param spacing Determines the space in pixels between child widgets.
*/
explicit Box(Orientation orientation = ORIENTATION_HORIZONTAL, int spacing = 0);
/** Left side insert a widget to a box.
* The expand argument to pack_start() or pack_end()
* controls whether the widgets are laid out in the box to fill in all
* the extra space in the box so the box is expanded to fill the area
* allocated to it (<tt>true</tt>). Or the box is shrunk to just fit the widgets
* (<tt>false</tt>). Setting @a expand to <tt>false</tt> will allow you to do right and left
* justifying of your widgets. Otherwise, they will all expand to fit in
* the box, and the same effect could be achieved by using only one of
* pack_start() or pack_end() functions.
*
* The @a fill argument to the pack_start()/pack_end() functions control whether the
* extra space is allocated to the objects themselves (<tt>true</tt>), or as extra
* padding in the box around these objects (<tt>false</tt>). It only has an effect
* if the @a expand argument is also <tt>true</tt>.
*
* The difference between spacing (set when the box is created)
* and padding (set when elements are packed) is, that spacing is added between
* objects, and padding is added on either side of an object.
* @param child The Gtk::Widget to be added to @a box.
* @param expand <tt>true</tt> if the new child is to be given extra space allocated
* to @a box. The extra space will be divided evenly between all children
* that use this option.
* @param fill <tt>true</tt> if space given to @a child by the @a expand option is
* actually allocated to @a child, rather than just padding it. This
* parameter has no effect if @a expand is set to <tt>false</tt>. A child is
* always allocated the full height of a horizontal Gtk::Box and the full width
* of a vertical Gtk::Box. This option affects the other dimension.
* @param padding Extra space in pixels to put between this child and its
* neighbors, over and above the global amount specified by
* Gtk::Box::property_spacing() property. If @a child is a widget at one of the
* reference ends of @a box, then @a padding pixels are also put between
* @a child and the reference edge of @a box.
*/
void pack_start(Widget& child, bool expand, bool fill, guint padding = 0);
/** Left side insert a widget to a box.
* @param child A Widget to be added to box.
* @param options Controls how the widget expands to fill space, and how the space around them is used.
* @param padding Padding that is added on either side of the widget. This is different to spacing set when the box is created (or with set_spacing()) - spacing is added between objects, and padding is added on either side of an object.
*/
void pack_start(Widget& child, PackOptions options = PACK_EXPAND_WIDGET, guint padding = 0);
/** Adds @a child to @a box, packed with reference to the end of @a box.
* The @a child is packed after (away from end of) any other child
* packed with reference to the end of @a box.
* @param child The Gtk::Widget to be added to @a box.
* @param expand <tt>true</tt> if the new child is to be given extra space allocated
* to @a box. The extra space will be divided evenly between all children
* of @a box that use this option.
* @param fill <tt>true</tt> if space given to @a child by the @a expand option is
* actually allocated to @a child, rather than just padding it. This
* parameter has no effect if @a expand is set to <tt>false</tt>. A child is
* always allocated the full height of a horizontal Gtk::Box and the full width
* of a vertical Gtk::Box. This option affects the other dimension.
* @param padding Extra space in pixels to put between this child and its
* neighbors, over and above the global amount specified by
* Gtk::Box::property_spacing() property. If @a child is a widget at one of the
* reference ends of @a box, then @a padding pixels are also put between
* @a child and the reference edge of @a box.
*/
void pack_end(Widget& child, bool expand, bool fill, guint padding = 0);
/** Right side insert a widget to a box.
* @param child A Widget to be added to box.
* @param options Controls how the widget expands to fill space, and how the space around them is used.
* @param padding Padding that is added on either side of the widget. This is different to spacing set when the box is created (or with set_spacing()) - spacing is added between objects, and padding is added on either side of an object.
*/
void pack_end(Widget& child, PackOptions options = PACK_EXPAND_WIDGET, guint padding = 0);
/** Sets the Gtk::Box::property_homogeneous() property of @a box, controlling
* whether or not all children of @a box are given equal space
* in the box.
* @param homogeneous A boolean value, <tt>true</tt> to create equal allotments,
* <tt>false</tt> for variable allotments.
*/
void set_homogeneous(bool homogeneous = true);
/** Returns whether the box is homogeneous (all children are the
* same size). See set_homogeneous().
* @return <tt>true</tt> if the box is homogeneous.
*/
bool get_homogeneous() const;
/** Sets the Gtk::Box::property_spacing() property of @a box, which is the
* number of pixels to place between children of @a box.
* @param spacing The number of pixels to put between children.
*/
void set_spacing(int spacing);
/** Gets the value set by set_spacing().
* @return Spacing between children.
*/
int get_spacing() const;
/** Sets the baseline position of a box. This affects
* only horizontal boxes with at least one baseline aligned
* child. If there is more vertical space availible than requested,
* and the baseline is not allocated by the parent then
* @a position is used to allocate the baseline wrt the
* extra space available.
*
* @newin{3,10}
* @param position A Gtk::BaselinePosition.
*/
void set_baseline_position(BaselinePosition position);
/** Gets the value set by set_baseline_position().
*
* @newin{3,10}
* @return The baseline position.
*/
BaselinePosition get_baseline_position() const;
/** Moves @a child to a new @a position in the list of @a box children.
* The list is the <tt>children</tt> field of
* Gtk::Box-struct, and contains both widgets packed Gtk::PACK_START
* as well as widgets packed Gtk::PACK_END, in the order that these
* widgets were added to @a box.
*
* A widget's position in the @a box children list determines where
* the widget is packed into @a box. A child widget at some position
* in the list will be packed just after all other widgets of the
* same packing type that appear earlier in the list.
* @param child The Gtk::Widget to move.
* @param position The new position for @a child in the list of children
* of @a box, starting from 0. If negative, indicates the end of
* the list.
*/
void reorder_child(Widget& child, int position);
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The amount of space between children.
*
* 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 value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< int > property_spacing() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The amount of space between children.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @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;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the children should all be the same size.
*
* 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 value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< bool > property_homogeneous() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the children should all be the same size.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @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;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The position of the baseline aligned widgets if extra space is available.
*
* 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 value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< BaselinePosition > property_baseline_position() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The position of the baseline aligned widgets if extra space is available.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @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;
#endif //#GLIBMM_PROPERTIES_ENABLED
};
} // namespace Gtk
//Include the deprecated header,
//whose classes were previously in this header,
//to preserve the "API" of the includes.
#include <gtkmm/hvbox.h>
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::Box
*/
Gtk::Box* wrap(GtkBox* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_BOX_H */
|