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 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2020 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.SizerFlags:
==========================================================================================================================================
|phoenix_title| **wx.SizerFlags**
==========================================================================================================================================
Container for sizer items flags providing readable names for them.
Normally, when you add an item to a sizer via :meth:`wx.Sizer.Add` , you have to specify a lot of flags and parameters which can be unwieldy. This is where :ref:`wx.SizerFlags` comes in: it allows you to specify all parameters using the named methods instead. For example, instead of
::
sizer.Add(ctrl, 0, wx.EXPAND | wx.ALL, 10)
you can now write
::
sizer.Add(ctrl, wx.SizerFlags().Expand().Border(wx.ALL, 10))
This is more readable and also allows you to create :ref:`wx.SizerFlags` objects which can be reused for several sizer items.
::
flagsExpand = wx.SizerFlags(1)
flagsExpand.Expand().Border(wx.ALL, 10)
sizer.Add(ctrl1, flagsExpand)
sizer.Add(ctrl2, flagsExpand)
Note that by specification, all methods of :ref:`wx.SizerFlags` return the :ref:`wx.SizerFlags` object itself to allowing chaining multiple methods calls like in the examples above.
.. seealso:: :ref:`wx.Sizer`
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html
<div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
<img id="toggleBlock-trigger" src="_static/images/closed.png"/>
Inheritance diagram for class <strong>SizerFlags</strong>:
</div>
<div id="toggleBlock-summary" style="display:block;"></div>
<div id="toggleBlock-content" style="display:none;">
<p class="graphviz">
<center><img src="_static/images/inheritance/wx.SizerFlags_inheritance.png" alt="Inheritance diagram of SizerFlags" usemap="#dummy" class="inheritance"/></center>
<script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
<map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.SizerFlags.html" title="wx.SizerFlags" alt="" coords="5,5,116,35"/> </map>
</p>
</div>
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.SizerFlags.__init__` Creates the :ref:`wx.Sizer` with the proportion specified by `proportion`.
:meth:`~wx.SizerFlags.Align` Sets the alignment of this :ref:`wx.SizerFlags` to `align`.
:meth:`~wx.SizerFlags.Border` Sets the :ref:`wx.SizerFlags` to have a border of a number of pixels specified by `borderinpixels` with the directions specified by `direction`.
:meth:`~wx.SizerFlags.Bottom` Aligns the object to the bottom, similar for ``Align(wxALIGN_BOTTOM)`` .
:meth:`~wx.SizerFlags.Center` Sets the object of the :ref:`wx.SizerFlags` to center itself in the area it is given.
:meth:`~wx.SizerFlags.CenterHorizontal` Same as :meth:`~SizerFlags.CentreHorizontal` .
:meth:`~wx.SizerFlags.CenterVertical` Same as :meth:`~SizerFlags.CentreVertical` .
:meth:`~wx.SizerFlags.Centre` :ref:`wx.Center` for people with the other dialect of English.
:meth:`~wx.SizerFlags.CentreHorizontal` Center an item only in horizontal direction.
:meth:`~wx.SizerFlags.CentreVertical` Center an item only in vertical direction.
:meth:`~wx.SizerFlags.DisableConsistencyChecks` Globally disable checks for sizer flag consistency in debug builds.
:meth:`~wx.SizerFlags.DoubleBorder` Sets the border in the given `direction` having twice the default border size.
:meth:`~wx.SizerFlags.DoubleHorzBorder` Sets the border in left and right directions having twice the default border size.
:meth:`~wx.SizerFlags.Expand` Sets the object of the :ref:`wx.SizerFlags` to expand to fill as much area as it can.
:meth:`~wx.SizerFlags.FixedMinSize` Set the ``FIXED_MINSIZE`` flag which indicates that the initial size of the window should be also set as its minimal size.
:meth:`~wx.SizerFlags.GetDefaultBorder` Returns the border used by default in :ref:`wx.Border` method.
:meth:`~wx.SizerFlags.GetDefaultBorderFractional` Returns the border used by default, with fractional precision.
:meth:`~wx.SizerFlags.Left` Aligns the object to the left, similar for ``Align(wxALIGN_LEFT)`` .
:meth:`~wx.SizerFlags.Proportion` Sets the proportion of this :ref:`wx.SizerFlags` to `proportion`.
:meth:`~wx.SizerFlags.ReserveSpaceEvenIfHidden` Set the ``RESERVE_SPACE_EVEN_IF_HIDDEN`` flag.
:meth:`~wx.SizerFlags.Right` Aligns the object to the right, similar for ``Align(wxALIGN_RIGHT)`` .
:meth:`~wx.SizerFlags.Shaped` Set the ``_SHAPED`` flag which indicates that the elements should always keep the fixed width to height ratio equal to its original value.
:meth:`~wx.SizerFlags.Top` Aligns the object to the top, similar for ``Align(wxALIGN_TOP)`` .
:meth:`~wx.SizerFlags.TripleBorder` Sets the border in the given `direction` having thrice the default border size.
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.SizerFlags(object)
**Possible constructors**::
SizerFlags(proportion=0)
Container for sizer items flags providing readable names for them.
.. method:: __init__(self, proportion=0)
Creates the :ref:`wx.Sizer` with the proportion specified by `proportion`.
:param `proportion`:
:type `proportion`: int
.. method:: Align(self, alignment)
Sets the alignment of this :ref:`wx.SizerFlags` to `align`.
This method replaces the previously set alignment with the specified one.
:param `alignment`: Combination of ``ALIGN_XXX`` bit masks.
:type `alignment`: int
:rtype: :ref:`wx.SizerFlags`
.. seealso:: :ref:`wx.Top`, :ref:`wx.Left`, :ref:`wx.Right`, :ref:`wx.Bottom`, :ref:`wx.Centre`
.. method:: Border(self, *args, **kw)
|overload| Overloaded Implementations:
:html:`<hr class="overloadsep" /><br />`
**Border** `(self, direction, borderinpixels)`
Sets the :ref:`wx.SizerFlags` to have a border of a number of pixels specified by `borderinpixels` with the directions specified by `direction`.
Prefer to use the overload below or :meth:`DoubleBorder` or :meth:`TripleBorder` versions instead of hard-coding the border value in pixels to avoid too small borders on devices with high ``DPI`` displays.
:param `direction`:
:type `direction`: int
:param `borderinpixels`:
:type `borderinpixels`: int
:rtype: :ref:`wx.SizerFlags`
:html:`<hr class="overloadsep" /><br />`
**Border** `(self, direction=ALL)`
Sets the :ref:`wx.SizerFlags` to have a border with size as returned by :meth:`GetDefaultBorder` .
:param `direction`: Direction(s) to apply the border in.
:type `direction`: int
:rtype: :ref:`wx.SizerFlags`
:html:`<hr class="overloadsep" /><br />`
.. method:: Bottom(self)
Aligns the object to the bottom, similar for ``Align(wxALIGN_BOTTOM)`` .
Unlike :meth:`Align` , this method doesn't change the horizontal alignment of the item.
:rtype: :ref:`wx.SizerFlags`
.. method:: Center(self)
Sets the object of the :ref:`wx.SizerFlags` to center itself in the area it is given.
:rtype: :ref:`wx.SizerFlags`
.. method:: CenterHorizontal(self)
Same as :meth:`CentreHorizontal` .
:rtype: :ref:`wx.SizerFlags`
.. versionadded:: 4.1/wxWidgets-3.1.0
.. method:: CenterVertical(self)
Same as :meth:`CentreVertical` .
:rtype: :ref:`wx.SizerFlags`
.. versionadded:: 4.1/wxWidgets-3.1.0
.. method:: Centre(self)
:ref:`wx.Center` for people with the other dialect of English.
:rtype: :ref:`wx.SizerFlags`
.. method:: CentreHorizontal(self)
Center an item only in horizontal direction.
This is mostly useful for ``2D`` sizers as for the ``1D`` ones it is shorter to just use :ref:`wx.Centre` as the alignment is only used in one direction with them anyhow. For ``2D`` sizers, centering an item in one direction is quite different from centering it in both directions however.
Note that, unlike :meth:`Align` , this method doesn't change the vertical alignment.
:rtype: :ref:`wx.SizerFlags`
.. versionadded:: 4.1/wxWidgets-3.1.0
.. seealso:: :meth:`CentreVertical`
.. method:: CentreVertical(self)
Center an item only in vertical direction.
The remarks in :meth:`CentreHorizontal` documentation also apply to this function.
Note that, unlike :meth:`Align` , this method doesn't change the horizontal alignment.
:rtype: :ref:`wx.SizerFlags`
.. versionadded:: 4.1/wxWidgets-3.1.0
.. staticmethod:: DisableConsistencyChecks()
Globally disable checks for sizer flag consistency in debug builds.
By default, sizer classes such as :ref:`wx.BoxSizer` and :ref:`wx.FlexGridSizer` assert when passed invalid flags, even though doing this usually doesn't result in any catastrophic consequences and the invalid flags are simply ignored later. Due to this, and the fact that these checks were only added in wxWidgets 3.1, existing code may run into multiple asserts warning about incorrect sizer flags use. Using this function provides a temporary solution for avoiding such asserts when upgrading to wxWidgets 3.1 from a previous version and will prevent such checks from being done.
Please do note that correcting the code by removing the invalid flags remains a much better solution as these asserts may be very helpful to understand why some code using sizer flags doesn't work as expected, so using this function, especially permanently, rather than a temporary workaround, is `not` recommended.
Notice that the same effect as calling this function can be achieved by setting the environment variable ``WXSUPPRESS_SIZER_FLAGS_CHECK`` to any value.
.. versionadded:: 4.1/wxWidgets-3.1.6
.. method:: DoubleBorder(self, direction=ALL)
Sets the border in the given `direction` having twice the default border size.
:param `direction`:
:type `direction`: int
:rtype: :ref:`wx.SizerFlags`
.. method:: DoubleHorzBorder(self)
Sets the border in left and right directions having twice the default border size.
:rtype: :ref:`wx.SizerFlags`
.. method:: Expand(self)
Sets the object of the :ref:`wx.SizerFlags` to expand to fill as much area as it can.
:rtype: :ref:`wx.SizerFlags`
.. method:: FixedMinSize(self)
Set the ``FIXED_MINSIZE`` flag which indicates that the initial size of the window should be also set as its minimal size.
:rtype: :ref:`wx.SizerFlags`
.. staticmethod:: GetDefaultBorder()
Returns the border used by default in :ref:`wx.Border` method.
This value is scaled appropriately for the current ``DPI`` on the systems where physical pixel values are used for the control positions and sizes, i.e. not with wxGTK or wxOSX.
:rtype: `int`
.. seealso:: :meth:`GetDefaultBorderFractional`
.. staticmethod:: GetDefaultBorderFractional()
Returns the border used by default, with fractional precision.
For example when the border is scaled to a non-integer ``DPI``.
:rtype: `float`
.. versionadded:: 4.1/wxWidgets-3.1.4
.. seealso:: :meth:`GetDefaultBorder`
.. method:: Left(self)
Aligns the object to the left, similar for ``Align(wxALIGN_LEFT)`` .
Unlike :meth:`Align` , this method doesn't change the vertical alignment of the item.
:rtype: :ref:`wx.SizerFlags`
.. method:: Proportion(self, proportion)
Sets the proportion of this :ref:`wx.SizerFlags` to `proportion`.
:param `proportion`:
:type `proportion`: int
:rtype: :ref:`wx.SizerFlags`
.. method:: ReserveSpaceEvenIfHidden(self)
Set the ``RESERVE_SPACE_EVEN_IF_HIDDEN`` flag.
Normally Sizers don't allocate space for hidden windows or other items. This flag overrides this behaviour so that sufficient space is allocated for the window even if it isn't visible. This makes it possible to dynamically show and hide controls without resizing parent dialog, for example.
:rtype: :ref:`wx.SizerFlags`
.. versionadded:: 2.8.8
.. method:: Right(self)
Aligns the object to the right, similar for ``Align(wxALIGN_RIGHT)`` .
Unlike :meth:`Align` , this method doesn't change the vertical alignment of the item.
:rtype: :ref:`wx.SizerFlags`
.. method:: Shaped(self)
Set the ``_SHAPED`` flag which indicates that the elements should always keep the fixed width to height ratio equal to its original value.
:rtype: :ref:`wx.SizerFlags`
.. method:: Top(self)
Aligns the object to the top, similar for ``Align(wxALIGN_TOP)`` .
Unlike :meth:`Align` , this method doesn't change the horizontal alignment of the item.
:rtype: :ref:`wx.SizerFlags`
.. method:: TripleBorder(self, direction=ALL)
Sets the border in the given `direction` having thrice the default border size.
:param `direction`:
:type `direction`: int
:rtype: :ref:`wx.SizerFlags`
|