/usr/include/d/gtkd-3/gtk/Table.d is in libgtkd-3-dev 3.7.5-2build1.
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 | /*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gtk.Table;
private import glib.ConstructionException;
private import gtk.Container;
private import gtk.Widget;
private import gtk.c.functions;
public import gtk.c.types;
public import gtkc.gtktypes;
/**
* The #GtkTable functions allow the programmer to arrange widgets in rows and
* columns, making it easy to align many widgets next to each other,
* horizontally and vertically.
*
* Tables are created with a call to gtk_table_new(), the size of which can
* later be changed with gtk_table_resize().
*
* Widgets can be added to a table using gtk_table_attach() or the more
* convenient (but slightly less flexible) gtk_table_attach_defaults().
*
* To alter the space next to a specific row, use gtk_table_set_row_spacing(),
* and for a column, gtk_table_set_col_spacing().
* The gaps between all rows or columns can be changed by
* calling gtk_table_set_row_spacings() or gtk_table_set_col_spacings()
* respectively. Note that spacing is added between the
* children, while padding added by gtk_table_attach() is added on
* either side of the widget it belongs to.
*
* gtk_table_set_homogeneous(), can be used to set whether all cells in the
* table will resize themselves to the size of the largest widget in the table.
*
* > #GtkTable has been deprecated. Use #GtkGrid instead. It provides the same
* > capabilities as GtkTable for arranging widgets in a rectangular grid, but
* > does support height-for-width geometry management.
*/
public class Table : Container
{
/** the main Gtk struct */
protected GtkTable* gtkTable;
/** Get the main Gtk struct */
public GtkTable* getTableStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gtkTable;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)gtkTable;
}
protected override void setStruct(GObject* obj)
{
gtkTable = cast(GtkTable*)obj;
super.setStruct(obj);
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GtkTable* gtkTable, bool ownedRef = false)
{
this.gtkTable = gtkTable;
super(cast(GtkContainer*)gtkTable, ownedRef);
}
int row;
int col;
int maxRows;
int maxCols;
public AttachOptions defaultXOption = AttachOptions.SHRINK;
public AttachOptions defaultYOption = AttachOptions.SHRINK;
/**
* Removes all children and resizes the table to 1,1
*/
override void removeAll()
{
super.removeAll();
resize(1,1);
row = 0;
col = 0;
}
/**
* Used to create a new table widget. An initial size must be given by
* specifying how many rows and columns the table should have, although
* this can be changed later with gtk_table_resize(). rows and columns
* must both be in the range 0 .. 65535.
* Params:
* rows = The number of rows the new table should have.
* columns = The number of columns the new table should have.
* homogeneous = If set to TRUE, all table cells are resized to the size of the cell
* containing the largest widget.
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this (uint rows, uint columns, int homogeneous)
{
auto p = gtk_table_new(rows, columns, homogeneous);
if(p is null)
{
throw new ConstructionException("null returned by gtk_table_new");
}
this(cast(GtkTable*) p);
row = 0;
col = 0;
maxRows = rows;
maxCols = columns;
}
/**
* Attach a new widget creating a new row if necessary
*/
void attach(Widget child)
{
attach(child, col, col + 1, row, row + 1,
defaultXOption, defaultYOption,
getDefaultColSpacing(), getDefaultRowSpacing());
++col;
if (col >= maxCols)
{
col = 0;
++row;
}
}
/**
*/
/** */
public static GType getType()
{
return gtk_table_get_type();
}
/**
* Adds a widget to a table. The number of “cells” that a widget will occupy is
* specified by @left_attach, @right_attach, @top_attach and @bottom_attach.
* These each represent the leftmost, rightmost, uppermost and lowest column
* and row numbers of the table. (Columns and rows are indexed from zero).
*
* To make a button occupy the lower right cell of a 2x2 table, use
* |[
* gtk_table_attach (table, button,
* 1, 2, // left, right attach
* 1, 2, // top, bottom attach
* xoptions, yoptions,
* xpadding, ypadding);
* ]|
* If you want to make the button span the entire bottom row, use @left_attach == 0 and @right_attach = 2 instead.
*
* Deprecated: Use gtk_grid_attach() with #GtkGrid. Note that the attach
* arguments differ between those two functions.
*
* Params:
* child = The widget to add.
* leftAttach = the column number to attach the left side of a child widget to.
* rightAttach = the column number to attach the right side of a child widget to.
* topAttach = the row number to attach the top of a child widget to.
* bottomAttach = the row number to attach the bottom of a child widget to.
* xoptions = Used to specify the properties of the child widget when the table is resized.
* yoptions = The same as xoptions, except this field determines behaviour of vertical resizing.
* xpadding = An integer value specifying the padding on the left and right of the widget being added to the table.
* ypadding = The amount of padding above and below the child widget.
*/
public void attach(Widget child, uint leftAttach, uint rightAttach, uint topAttach, uint bottomAttach, GtkAttachOptions xoptions, GtkAttachOptions yoptions, uint xpadding, uint ypadding)
{
gtk_table_attach(gtkTable, (child is null) ? null : child.getWidgetStruct(), leftAttach, rightAttach, topAttach, bottomAttach, xoptions, yoptions, xpadding, ypadding);
}
/**
* As there are many options associated with gtk_table_attach(), this convenience
* function provides the programmer with a means to add children to a table with
* identical padding and expansion options. The values used for the #GtkAttachOptions
* are `GTK_EXPAND | GTK_FILL`, and the padding is set to 0.
*
* Deprecated: Use gtk_grid_attach() with #GtkGrid. Note that the attach
* arguments differ between those two functions.
*
* Params:
* widget = The child widget to add.
* leftAttach = The column number to attach the left side of the child widget to.
* rightAttach = The column number to attach the right side of the child widget to.
* topAttach = The row number to attach the top of the child widget to.
* bottomAttach = The row number to attach the bottom of the child widget to.
*/
public void attachDefaults(Widget widget, uint leftAttach, uint rightAttach, uint topAttach, uint bottomAttach)
{
gtk_table_attach_defaults(gtkTable, (widget is null) ? null : widget.getWidgetStruct(), leftAttach, rightAttach, topAttach, bottomAttach);
}
/**
* Gets the amount of space between column @col, and
* column @col + 1. See gtk_table_set_col_spacing().
*
* Deprecated: #GtkGrid does not offer a replacement for this
* functionality.
*
* Params:
* column = a column in the table, 0 indicates the first column
*
* Returns: the column spacing
*/
public uint getColSpacing(uint column)
{
return gtk_table_get_col_spacing(gtkTable, column);
}
/**
* Gets the default column spacing for the table. This is
* the spacing that will be used for newly added columns.
* (See gtk_table_set_col_spacings())
*
* Deprecated: Use gtk_grid_get_column_spacing() with #GtkGrid.
*
* Returns: the default column spacing
*/
public uint getDefaultColSpacing()
{
return gtk_table_get_default_col_spacing(gtkTable);
}
/**
* Gets the default row spacing for the table. This is
* the spacing that will be used for newly added rows.
* (See gtk_table_set_row_spacings())
*
* Deprecated: Use gtk_grid_get_row_spacing() with #GtkGrid.
*
* Returns: the default row spacing
*/
public uint getDefaultRowSpacing()
{
return gtk_table_get_default_row_spacing(gtkTable);
}
/**
* Returns whether the table cells are all constrained to the same
* width and height. (See gtk_table_set_homogeneous ())
*
* Deprecated: Use gtk_grid_get_row_homogeneous() and
* gtk_grid_get_column_homogeneous() with #GtkGrid.
*
* Returns: %TRUE if the cells are all constrained to the same size
*/
public bool getHomogeneous()
{
return gtk_table_get_homogeneous(gtkTable) != 0;
}
/**
* Gets the amount of space between row @row, and
* row @row + 1. See gtk_table_set_row_spacing().
*
* Deprecated: #GtkGrid does not offer a replacement for this
* functionality.
*
* Params:
* row = a row in the table, 0 indicates the first row
*
* Returns: the row spacing
*/
public uint getRowSpacing(uint row)
{
return gtk_table_get_row_spacing(gtkTable, row);
}
/**
* Gets the number of rows and columns in the table.
*
* Deprecated: #GtkGrid does not expose the number of columns and
* rows.
*
* Params:
* rows = return location for the number of
* rows, or %NULL
* columns = return location for the number
* of columns, or %NULL
*
* Since: 2.22
*/
public void getSize(out uint rows, out uint columns)
{
gtk_table_get_size(gtkTable, &rows, &columns);
}
/**
* If you need to change a table’s size after
* it has been created, this function allows you to do so.
*
* Deprecated: #GtkGrid resizes automatically.
*
* Params:
* rows = The new number of rows.
* columns = The new number of columns.
*/
public void resize(uint rows, uint columns)
{
gtk_table_resize(gtkTable, rows, columns);
}
/**
* Alters the amount of space between a given table column and the following
* column.
*
* Deprecated: Use gtk_widget_set_margin_start() and
* gtk_widget_set_margin_end() on the widgets contained in the row if
* you need this functionality. #GtkGrid does not support per-row spacing.
*
* Params:
* column = the column whose spacing should be changed.
* spacing = number of pixels that the spacing should take up.
*/
public void setColSpacing(uint column, uint spacing)
{
gtk_table_set_col_spacing(gtkTable, column, spacing);
}
/**
* Sets the space between every column in @table equal to @spacing.
*
* Deprecated: Use gtk_grid_set_column_spacing() with #GtkGrid.
*
* Params:
* spacing = the number of pixels of space to place between every column
* in the table.
*/
public void setColSpacings(uint spacing)
{
gtk_table_set_col_spacings(gtkTable, spacing);
}
/**
* Changes the homogenous property of table cells, ie. whether all cells are
* an equal size or not.
*
* Deprecated: Use gtk_grid_set_row_homogeneous() and
* gtk_grid_set_column_homogeneous() with #GtkGrid.
*
* Params:
* homogeneous = Set to %TRUE to ensure all table cells are the same size. Set
* to %FALSE if this is not your desired behaviour.
*/
public void setHomogeneous(bool homogeneous)
{
gtk_table_set_homogeneous(gtkTable, homogeneous);
}
/**
* Changes the space between a given table row and the subsequent row.
*
* Deprecated: Use gtk_widget_set_margin_top() and
* gtk_widget_set_margin_bottom() on the widgets contained in the row if
* you need this functionality. #GtkGrid does not support per-row spacing.
*
* Params:
* row = row number whose spacing will be changed.
* spacing = number of pixels that the spacing should take up.
*/
public void setRowSpacing(uint row, uint spacing)
{
gtk_table_set_row_spacing(gtkTable, row, spacing);
}
/**
* Sets the space between every row in @table equal to @spacing.
*
* Deprecated: Use gtk_grid_set_row_spacing() with #GtkGrid.
*
* Params:
* spacing = the number of pixels of space to place between every row in the table.
*/
public void setRowSpacings(uint spacing)
{
gtk_table_set_row_spacings(gtkTable, spacing);
}
}
|