/usr/include/gtkmm-3.0/gtkmm/grid.h is in libgtkmm-3.0-dev 3.22.0-1.
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 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 | // Generated by gmmproc 2.50.0 -- DO NOT MODIFY!
#ifndef _GTKMM_GRID_H
#define _GTKMM_GRID_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 <gtkmm/enums.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
using GtkGrid = struct _GtkGrid;
using GtkGridClass = struct _GtkGridClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{ class Grid_Class; } // namespace Gtk
#endif //DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{
/** A container which arranges its child widgets in rows and columns.
* It is very similar to Table and Box,
* but it consistently uses Widget's margin and expand
* properties instead of custom child properties, and it fully supports
* height-for-width geometry management.
*
* Children are added using attach(). They can span multiple
* rows or columns. It is also possible to add a child next to an
* existing child, using attach_next_to().
*
* Grid can be used like a Box by just using Gtk::Container::add(),
* which will place children next to each other in the direction determined
* by the orientation property.
*
* @ingroup Widgets
* @ingroup Containers
*
* @newin{3,0}
*/
class Grid
: public Container,
public Orientable
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Grid CppObjectType;
typedef Grid_Class CppClassType;
typedef GtkGrid BaseObjectType;
typedef GtkGridClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
Grid(Grid&& src) noexcept;
Grid& operator=(Grid&& src) noexcept;
// noncopyable
Grid(const Grid&) = delete;
Grid& operator=(const Grid&) = delete;
~Grid() noexcept override;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class Grid_Class;
static CppClassType grid_class_;
protected:
explicit Grid(const Glib::ConstructParams& construct_params);
explicit Grid(GtkGrid* 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.
GtkGrid* gobj() { return reinterpret_cast<GtkGrid*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkGrid* gobj() const { return reinterpret_cast<GtkGrid*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
private:
public:
Grid();
//TODO: Add a Grid(Orientation orientation = ORIENTATION_HORIZONTAL) constructor to match the Paned and Box ones?
//Probably not, because a vertical GtkGrid is not very useful. murrayc.
/** Adds a widget to the grid.
*
* The position of @a child is determined by @a left and @a top. The
* number of “cells” that @a child will occupy is determined by
* @a width and @a height.
*
* @param child The widget to add.
* @param left The column number to attach the left side of @a child to.
* @param top The row number to attach the top side of @a child to.
* @param width The number of columns that @a child will span.
* @param height The number of rows that @a child will span.
*/
void attach(Widget& child, int left, int top, int width, int height);
/** Adds a widget to the grid.
*
* The widget is placed next to @a sibling, on the side determined by
* @a side. The %attach_next_to() without the @a sibling parameter
* places the widget in row 0 (for left or right placement) or column 0
* (for top or bottom placement), at the end indicated by @a side.
*
* Attaching widgets labeled [1], [2], [3] without the @a sibling parameter and
* @a side == Gtk::POS_LEFT yields a layout of [3][2][1].
*
* @param child The widget to add.
* @param sibling The child of @a grid that @a child will be placed
* next to, or omitted to place @a child at the beginning or end.
* @param side The side of @a sibling that @a child is positioned next to.
* @param width The number of columns that @a child will span.
* @param height The number of rows that @a child will span.
*/
void attach_next_to(Widget& child, Widget& sibling, PositionType side, int width, int height);
/// A attach_next_to() convenience overload.
void attach_next_to(Widget& child, PositionType side, int width, int height);
/** Gets the child of @a grid whose area covers the grid
* cell whose upper left corner is at @a left, @a top.
*
* @newin{3,2}
*
* @param left The left edge of the cell.
* @param top The top edge of the cell.
* @return The child at the given position, or <tt>nullptr</tt>.
*/
Widget* get_child_at(int left, int top);
/** Gets the child of @a grid whose area covers the grid
* cell whose upper left corner is at @a left, @a top.
*
* @newin{3,2}
*
* @param left The left edge of the cell.
* @param top The top edge of the cell.
* @return The child at the given position, or <tt>nullptr</tt>.
*/
const Widget* get_child_at(int left, int top) const;
/** Inserts a row at the specified position.
*
* Children which are attached at or below this position
* are moved one row down. Children which span across this
* position are grown to span the new row.
*
* @newin{3,2}
*
* @param position The position to insert the row at.
*/
void insert_row(int position);
/** Inserts a column at the specified position.
*
* Children which are attached at or to the right of this position
* are moved one column to the right. Children which span across this
* position are grown to span the new column.
*
* @newin{3,2}
*
* @param position The position to insert the column at.
*/
void insert_column(int position);
/** Removes a row from the grid.
*
* Children that are placed in this row are removed,
* spanning children that overlap this row have their
* height reduced by one, and children below the row
* are moved up.
*
* @newin{3,10}
*
* @param position The position of the row to remove.
*/
void remove_row(int position);
/** Removes a column from the grid.
*
* Children that are placed in this column are removed,
* spanning children that overlap this column have their
* width reduced by one, and children after the column
* are moved to the left.
*
* @newin{3,10}
*
* @param position The position of the column to remove.
*/
void remove_column(int position);
/** Inserts a row or column at the specified position.
*
* The new row or column is placed next to @a sibling, on the side
* determined by @a side. If @a side is Gtk::POS_TOP or Gtk::POS_BOTTOM,
* a row is inserted. If @a side is Gtk::POS_LEFT of Gtk::POS_RIGHT,
* a column is inserted.
*
* @newin{3,2}
*
* @param sibling The child of @a grid that the new row or column will be
* placed next to.
* @param side The side of @a sibling that @a child is positioned next to.
*/
void insert_next_to(Widget& sibling, PositionType side);
/** Sets whether all rows of @a grid will have the same height.
*
* @param homogeneous <tt>true</tt> to make rows homogeneous.
*/
void set_row_homogeneous(bool homogeneous = true);
/** Returns whether all rows of @a grid have the same height.
*
* @return Whether all rows of @a grid have the same height.
*/
bool get_row_homogeneous() const;
/** Sets the amount of space between rows of @a grid.
*
* @param spacing The amount of space to insert between rows.
*/
void set_row_spacing(guint spacing);
/** Returns the amount of space between the rows of @a grid.
*
* @return The row spacing of @a grid.
*/
guint get_row_spacing() const;
/** Sets whether all columns of @a grid will have the same width.
*
* @param homogeneous <tt>true</tt> to make columns homogeneous.
*/
void set_column_homogeneous(bool homogeneous);
/** Returns whether all columns of @a grid have the same width.
*
* @return Whether all columns of @a grid have the same width.
*/
bool get_column_homogeneous() const;
/** Sets the amount of space between columns of @a grid.
*
* @param spacing The amount of space to insert between columns.
*/
void set_column_spacing(guint spacing);
/** Returns the amount of space between the columns of @a grid.
*
* @return The column spacing of @a grid.
*/
guint get_column_spacing() const;
/** Sets how the baseline should be positioned on @a row of the
* grid, in case that row is assigned more space than is requested.
*
* @newin{3,10}
*
* @param row A row index.
* @param pos A Gtk::BaselinePosition.
*/
void set_row_baseline_position(int row, BaselinePosition pos);
/** Returns the baseline position of @a row as set
* by set_row_baseline_position() or the default value
* Gtk::BASELINE_POSITION_CENTER.
*
* @newin{3,10}
*
* @param row A row index.
* @return The baseline position of @a row.
*/
BaselinePosition get_row_baseline_position(int row) const;
/** Sets which row defines the global baseline for the entire grid.
* Each row in the grid can have its own local baseline, but only
* one of those is global, meaning it will be the baseline in the
* parent of the @a grid.
*
* @newin{3,10}
*
* @param row The row index.
*/
void set_baseline_row(int row);
/** Returns which row defines the global baseline of @a grid.
*
* @newin{3,10}
*
* @return The row index defining the global baseline.
*/
int get_baseline_row() const;
/** The amount of space between two consecutive rows.
*
* @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< guint > property_row_spacing() ;
/** The amount of space between two consecutive rows.
*
* @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< guint > property_row_spacing() const;
/** The amount of space between two consecutive columns.
*
* @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< guint > property_column_spacing() ;
/** The amount of space between two consecutive columns.
*
* @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< guint > property_column_spacing() const;
/** If TRUE, the rows are all the same height.
*
* @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_row_homogeneous() ;
/** If TRUE, the rows are all the same height.
*
* @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_row_homogeneous() const;
/** If TRUE, the columns are all the same width.
*
* @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_column_homogeneous() ;
/** If TRUE, the columns are all the same width.
*
* @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_column_homogeneous() const;
/** The row to align the to the baseline when valign is GTK_ALIGN_BASELINE.
*
* @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_row() ;
/** The row to align the to the baseline when valign is GTK_ALIGN_BASELINE.
*
* @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_row() const;
/** The column number to attach the left side of the child to.
*
* @return A ChildPropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy< int > child_property_left_attach(Gtk::Widget& child) ;
/** The column number to attach the left side of the child to.
*
* @return A ChildPropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy_ReadOnly< int > child_property_left_attach(const Gtk::Widget& child) const;
/** The row number to attach the top side of a child widget to.
*
* @return A ChildPropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy< int > child_property_top_attach(Gtk::Widget& child) ;
/** The row number to attach the top side of a child widget to.
*
* @return A ChildPropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy_ReadOnly< int > child_property_top_attach(const Gtk::Widget& child) const;
/** The number of columns that a child spans.
*
* @return A ChildPropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy< int > child_property_width(Gtk::Widget& child) ;
/** The number of columns that a child spans.
*
* @return A ChildPropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy_ReadOnly< int > child_property_width(const Gtk::Widget& child) const;
/** The number of rows that a child spans.
*
* @return A ChildPropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy< int > child_property_height(Gtk::Widget& child) ;
/** The number of rows that a child spans.
*
* @return A ChildPropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Gtk::ChildPropertyProxy_ReadOnly< int > child_property_height(const Gtk::Widget& child) 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::Grid
*/
Gtk::Grid* wrap(GtkGrid* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_GRID_H */
|