Up
Authors
- Nicola Pero (
n.pero@mi.flashnet.it
)
-
The GSVbox class (a GNU extension)
Copyright: (C) 1999 Free Software Foundation, Inc.
A GSVbox is completely analogue to a GSHbox. It implements the same methods; the only different is that it packs views from bottom to top (from top to bottom if flipped).
- Declared in:
- GNUstepGUI/GSVbox.h
Availability: OpenStep
Description forthcoming.
Instance Variables
Method summary
- (void)
addSeparator;
Availability: OpenStep
See the documentation for GSHbox
- (void)
addSeparatorWithMinYMargin: (float)aMargin;
Availability: OpenStep
See the documentation for GSHbox
- (void)
addView: (NSView*)aView;
Availability: OpenStep
See the documentation for GSHbox
- (void)
addView: (NSView*)aView
enablingYResizing: (BOOL)aFlag;
Availability: OpenStep
See the documentation for GSHbox
- (void)
addView: (NSView*)aView
enablingYResizing: (BOOL)aFlag
withMinYMargin: (float)aMargin;
Availability: OpenStep
See the documentation for GSHbox
- (void)
addView: (NSView*)aView
withMinYMargin: (float)aMargin;
Availability: OpenStep
See the documentation for GSHbox
- (id)
init;
Availability: OpenStep
Description forthcoming.
- (int)
numberOfViews;
Availability: OpenStep
Return the number of views in the GSVbox (separators included).
- (void)
setDefaultMinYMargin: (float)aMargin;
Availability: OpenStep
See the documentation for GSHbox
Instance Variables for GSVbox Class
@protected float _defaultMinYMargin;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
@protected BOOL _haveViews;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.
Up