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
|
-- -*-haskell-*-
-- GIMP Toolkit (GTK) Widget Table
--
-- Author : Axel Simon
--
-- Created: 15 May 2001
--
-- Copyright (C) 1999-2005 Axel Simon
--
-- 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.
--
-- |
-- Maintainer : gtk2hs-users@lists.sourceforge.net
-- Stability : provisional
-- Portability : portable (depends on GHC)
--
-- The table widget is a container in which widgets can be aligned in cells.
--
module Graphics.UI.Gtk.Layout.Table (
-- * Detail
--
-- | The 'Table' 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 'tableNew', the size of which can later
-- be changed with 'tableResize'.
--
-- Widgets can be added to a table using 'tableAttach' or the more
-- convenient (but slightly less flexible) 'tableAttachDefaults'.
--
-- To alter the space next to a specific row, use 'tableSetRowSpacing', and
-- for a column, 'tableSetColSpacing'.
--
-- The gaps between /all/ rows or columns can be changed by calling
-- 'tableSetRowSpacings' or 'tableSetColSpacings' respectively.
--
-- 'tableSetHomogeneous', can be used to set whether all cells in the table
-- will resize themselves to the size of the largest widget in the table.
-- * Class Hierarchy
-- |
-- @
-- | 'GObject'
-- | +----'Object'
-- | +----'Widget'
-- | +----'Container'
-- | +----Table
-- @
-- * Types
Table,
TableClass,
castToTable, gTypeTable,
toTable,
-- * Constructors
tableNew,
-- * Methods
tableResize,
AttachOptions(..),
tableAttach,
tableAttachDefaults,
tableSetRowSpacing,
tableGetRowSpacing,
tableSetColSpacing,
tableGetColSpacing,
tableSetRowSpacings,
tableGetDefaultRowSpacing,
tableSetColSpacings,
tableGetDefaultColSpacing,
tableSetHomogeneous,
tableGetHomogeneous,
-- * Attributes
tableNRows,
tableNColumns,
tableRowSpacing,
tableColumnSpacing,
tableHomogeneous,
-- * Child Attributes
tableChildLeftAttach,
tableChildRightAttach,
tableChildTopAttach,
tableChildBottomAttach,
tableChildXOptions,
tableChildYOptions,
tableChildXPadding,
tableChildYPadding,
) where
import Control.Monad (liftM)
import System.Glib.FFI
import System.Glib.Flags (fromFlags)
import System.Glib.Attributes
import System.Glib.Properties
import Graphics.UI.Gtk.Abstract.Object (makeNewObject)
{#import Graphics.UI.Gtk.Types#}
import Graphics.UI.Gtk.General.Enums (AttachOptions(..))
import Graphics.UI.Gtk.Abstract.ContainerChildProperties
{# context lib="gtk" prefix="gtk" #}
--------------------
-- Constructors
-- | 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 'tableResize'. @rows@ and @columns@ must both be
-- in the range 0 .. 65535.
--
tableNew ::
Int -- ^ @rows@ - The number of rows the new table should have.
-> Int -- ^ @columns@ - The number of columns the new table should have.
-> Bool -- ^ @homogeneous@ - If set to @True@, all table cells are
-- resized to the size of the cell containing the largest widget.
-> IO Table
tableNew rows columns homogeneous =
makeNewObject mkTable $
liftM (castPtr :: Ptr Widget -> Ptr Table) $
{# call unsafe table_new #}
(fromIntegral rows)
(fromIntegral columns)
(fromBool homogeneous)
--------------------
-- Methods
-- | Change the dimensions of an already existing table.
--
tableResize :: TableClass self => self
-> Int -- ^ @rows@ - The new number of rows.
-> Int -- ^ @columns@ - The new number of columns.
-> IO ()
tableResize self rows columns =
{# call table_resize #}
(toTable self)
(fromIntegral rows)
(fromIntegral columns)
-- | Adds a widget to a table. The number of \'cells\' that a widget will
-- occupy is specified by @leftAttach@, @rightAttach@, @topAttach@ and
-- @bottomAttach@. These each represent the leftmost, rightmost, uppermost and
-- lowest column and row numbers of the table. (Columns and rows are indexed
-- from zero).
--
tableAttach :: (TableClass self, WidgetClass child) => self
-> child -- ^ @child@ - The widget to add.
-> Int -- ^ @leftAttach@ - the column number to attach the left
-- side of a child widget to.
-> Int -- ^ @rightAttach@ - the column number to attach the right
-- side of a child widget to.
-> Int -- ^ @topAttach@ - the row number to attach the top of a
-- child widget to.
-> Int -- ^ @bottomAttach@ - the row number to attach the bottom
-- of a child widget to.
-> [AttachOptions] -- ^ @xoptions@ - Used to specify the properties of the
-- child widget when the table is resized.
-> [AttachOptions] -- ^ @yoptions@ - The same as xoptions, except this field
-- determines behaviour of vertical resizing.
-> Int -- ^ @xpadding@ - An integer value specifying the padding
-- on the left and right of the widget being added to the
-- table.
-> Int -- ^ @ypadding@ - The amount of padding above and below
-- the child widget.
-> IO ()
tableAttach self child leftAttach rightAttach topAttach bottomAttach xoptions
yoptions xpadding ypadding =
{# call table_attach #}
(toTable self)
(toWidget child)
(fromIntegral leftAttach)
(fromIntegral rightAttach)
(fromIntegral topAttach)
(fromIntegral bottomAttach)
((fromIntegral . fromFlags) xoptions)
((fromIntegral . fromFlags) yoptions)
(fromIntegral xpadding)
(fromIntegral ypadding)
-- | As there are many options associated with 'tableAttach', 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
-- 'AttachOptions' are @['Expand', 'Fill']@, and the padding is set to 0.
--
tableAttachDefaults :: (TableClass self, WidgetClass widget) => self
-> widget -- ^ @widget@ - The child widget to add.
-> Int -- ^ @leftAttach@ - The column number to attach the left side of
-- the child widget to.
-> Int -- ^ @rightAttach@ - The column number to attach the right side of
-- the child widget to.
-> Int -- ^ @topAttach@ - The row number to attach the top of the child
-- widget to.
-> Int -- ^ @bottomAttach@ - The row number to attach the bottom of the
-- child widget to.
-> IO ()
tableAttachDefaults self widget leftAttach rightAttach topAttach bottomAttach =
{# call table_attach_defaults #}
(toTable self)
(toWidget widget)
(fromIntegral leftAttach)
(fromIntegral rightAttach)
(fromIntegral topAttach)
(fromIntegral bottomAttach)
-- | Changes the space between a given table row and its surrounding rows.
--
tableSetRowSpacing :: TableClass self => self
-> Int -- ^ @row@ - row number whose spacing will be changed.
-> Int -- ^ @spacing@ - number of pixels that the spacing should take up.
-> IO ()
tableSetRowSpacing self row spacing =
{# call table_set_row_spacing #}
(toTable self)
(fromIntegral row)
(fromIntegral spacing)
-- | Gets the amount of space between row @row@, and row @row@ + 1. See
-- 'tableSetRowSpacing'.
--
tableGetRowSpacing :: TableClass self => self
-> Int -- ^ @row@ - a row in the table, 0 indicates the first row
-> IO Int -- ^ returns the row spacing
tableGetRowSpacing self row =
liftM fromIntegral $
{# call unsafe table_get_row_spacing #}
(toTable self)
(fromIntegral row)
-- | Alters the amount of space between a given table column and the adjacent
-- columns.
--
tableSetColSpacing :: TableClass self => self
-> Int -- ^ @column@ - the column whose spacing should be changed.
-> Int -- ^ @spacing@ - number of pixels that the spacing should take up.
-> IO ()
tableSetColSpacing self column spacing =
{# call table_set_col_spacing #}
(toTable self)
(fromIntegral column)
(fromIntegral spacing)
-- | Gets the amount of space between column @col@, and column @col@ + 1. See
-- 'tableSetColSpacing'.
--
tableGetColSpacing :: TableClass self => self
-> Int -- ^ @column@ - a column in the table, 0 indicates the first column
-> IO Int -- ^ returns the column spacing
tableGetColSpacing self column =
liftM fromIntegral $
{# call unsafe table_get_col_spacing #}
(toTable self)
(fromIntegral column)
-- | Sets the space between every row in @table@ equal to @spacing@.
--
tableSetRowSpacings :: TableClass self => self
-> Int -- ^ @spacing@ - the number of pixels of space to place between
-- every row in the table.
-> IO ()
tableSetRowSpacings self spacing =
{# call table_set_row_spacings #}
(toTable self)
(fromIntegral spacing)
-- | Gets the default row spacing for the table. This is the spacing that will
-- be used for newly added rows. (See 'tableSetRowSpacings')
--
tableGetDefaultRowSpacing :: TableClass self => self
-> IO Int -- ^ returns the default row spacing
tableGetDefaultRowSpacing self =
liftM fromIntegral $
{# call unsafe table_get_default_row_spacing #}
(toTable self)
-- | Sets the space between every column in @table@ equal to @spacing@.
--
tableSetColSpacings :: TableClass self => self
-> Int -- ^ @spacing@ - the number of pixels of space to place between
-- every column in the table.
-> IO ()
tableSetColSpacings self spacing =
{# call table_set_col_spacings #}
(toTable self)
(fromIntegral spacing)
-- | Gets the default column spacing for the table. This is the spacing that
-- will be used for newly added columns. (See 'tableSetColSpacings')
--
tableGetDefaultColSpacing :: TableClass self => self
-> IO Int -- ^ returns the default column spacing
tableGetDefaultColSpacing self =
liftM fromIntegral $
{# call unsafe table_get_default_col_spacing #}
(toTable self)
-- | Changes the homogenous property of table cells, ie. whether all cells are
-- an equal size or not.
--
tableSetHomogeneous :: TableClass self => self
-> Bool -- ^ @homogeneous@ - Set to @True@ to ensure all table cells are the
-- same size. Set to @False@ if this is not your desired behaviour.
-> IO ()
tableSetHomogeneous self homogeneous =
{# call table_set_homogeneous #}
(toTable self)
(fromBool homogeneous)
-- | Returns whether the table cells are all constrained to the same width and
-- height. (See 'tableSetHomogeneous')
--
tableGetHomogeneous :: TableClass self => self
-> IO Bool -- ^ returns @True@ if the cells are all constrained to the same
-- size
tableGetHomogeneous self =
liftM toBool $
{# call unsafe table_get_homogeneous #}
(toTable self)
--------------------
-- Attributes
-- | The number of rows in the table.
--
-- Default value: 0
--
tableNRows :: TableClass self => Attr self Int
tableNRows = newAttrFromUIntProperty "n-rows"
-- | The number of columns in the table.
--
-- Default value: 0
--
tableNColumns :: TableClass self => Attr self Int
tableNColumns = newAttrFromUIntProperty "n-columns"
-- | The amount of space between two consecutive rows.
--
-- Default value: 0
--
tableRowSpacing :: TableClass self => Attr self Int
tableRowSpacing = newAttrFromUIntProperty "row-spacing"
-- | The amount of space between two consecutive columns.
--
-- Default value: 0
--
tableColumnSpacing :: TableClass self => Attr self Int
tableColumnSpacing = newAttrFromUIntProperty "column-spacing"
-- | If @True@ this means the table cells are all the same width\/height.
--
-- Default value: @False@
--
tableHomogeneous :: TableClass self => Attr self Bool
tableHomogeneous = newAttr
tableGetHomogeneous
tableSetHomogeneous
--------------------
-- Child Attributes
-- | The column number to attach the left side of the child to.
--
-- Allowed values: \<= 65535
--
-- Default value: 0
--
tableChildLeftAttach :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildLeftAttach = newAttrFromContainerChildUIntProperty "left-attach"
-- | The column number to attach the right side of a child widget to.
--
-- Allowed values: [1,65535]
--
-- Default value: 1
--
tableChildRightAttach :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildRightAttach = newAttrFromContainerChildUIntProperty "right-attach"
-- | The row number to attach the top of a child widget to.
--
-- Allowed values: \<= 65535
--
-- Default value: 0
--
tableChildTopAttach :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildTopAttach = newAttrFromContainerChildUIntProperty "top-attach"
-- | The row number to attach the bottom of the child to.
--
-- Allowed values: [1,65535]
--
-- Default value: 1
--
tableChildBottomAttach :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildBottomAttach = newAttrFromContainerChildUIntProperty "bottom-attach"
-- | Options specifying the horizontal behaviour of the child.
--
-- Default value: @['Expand', 'Fill']@
--
tableChildXOptions :: (TableClass self, WidgetClass child) => child -> Attr self [AttachOptions]
tableChildXOptions = newAttrFromContainerChildFlagsProperty "x-options"
{# call pure unsafe gtk_attach_options_get_type #}
-- | Options specifying the vertical behaviour of the child.
--
-- Default value: @['Expand', 'Fill']@
--
tableChildYOptions :: (TableClass self, WidgetClass child) => child -> Attr self [AttachOptions]
tableChildYOptions = newAttrFromContainerChildFlagsProperty "y-options"
{# call pure unsafe gtk_attach_options_get_type #}
-- | Extra space to put between the child and its left and right neighbors, in
-- pixels.
--
-- Allowed values: \<= 65535
--
-- Default value: 0
--
tableChildXPadding :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildXPadding = newAttrFromContainerChildUIntProperty "x-padding"
-- | Extra space to put between the child and its upper and lower neighbors,
-- in pixels.
--
-- Allowed values: \<= 65535
--
-- Default value: 0
--
tableChildYPadding :: (TableClass self, WidgetClass child) => child -> Attr self Int
tableChildYPadding = newAttrFromContainerChildUIntProperty "y-padding"
|