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
|
#############################################################################
## Name: XS/Constraint.xs
## Purpose: XS for Wx::LayoutConstraints
## Author: Mattia Barbon
## Modified by:
## Created: 31/10/2000
## RCS-ID: $Id: Constraint.xs 2057 2007-06-18 23:03:00Z mbarbon $
## Copyright: (c) 2000-2001, 2006 Mattia Barbon
## Licence: This program is free software; you can redistribute it and/or
## modify it under the same terms as Perl itself
#############################################################################
#include <wx/layout.h>
MODULE=Wx PACKAGE=Wx::IndividualLayoutConstraint
void
wxIndividualLayoutConstraint::Above( otherWin, margin = 0 )
wxWindow* otherWin
int margin
void
wxIndividualLayoutConstraint::Absolute( value )
int value
void
wxIndividualLayoutConstraint::AsIs()
void
wxIndividualLayoutConstraint::Below( otherWin, margin = 0 )
wxWindow* otherWin
int margin
void
wxIndividualLayoutConstraint::Unconstrained()
void
wxIndividualLayoutConstraint::LeftOf( otherWin, margin = 0 )
wxWindow* otherWin
int margin
void
wxIndividualLayoutConstraint::PercentOf( otherWin, edge, per )
wxWindow* otherWin
wxEdge edge
int per
void
wxIndividualLayoutConstraint::RightOf( otherWin, margin = 0 )
wxWindow* otherWin
int margin
void
wxIndividualLayoutConstraint::SameAs( otherWin, edge, margin = 0 )
wxWindow* otherWin
wxEdge edge
int margin
void
wxIndividualLayoutConstraint::Set( rel, otherWin, otherEdge, value = 0, margin = 0 )
wxRelationship rel
wxWindow* otherWin
wxEdge otherEdge
int value
int margin
MODULE=Wx PACKAGE=Wx::LayoutConstraints
wxLayoutConstraints*
wxLayoutConstraints::new()
wxIndividualLayoutConstraint*
wxLayoutConstraints::bottom()
CODE:
RETVAL = &THIS->bottom;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::centreX()
CODE:
RETVAL = &THIS->centreX;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::centreY()
CODE:
RETVAL = &THIS->centreY;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::height()
CODE:
RETVAL = &THIS->height;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::left()
CODE:
RETVAL = &THIS->left;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::right()
CODE:
RETVAL = &THIS->right;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::top()
CODE:
RETVAL = &THIS->top;
OUTPUT:
RETVAL
wxIndividualLayoutConstraint*
wxLayoutConstraints::width()
CODE:
RETVAL = &THIS->width;
OUTPUT:
RETVAL
|