Up
Authors
- Generated by fedor
-
NSString* GSDisplayName;
Availability: OpenStep
Description forthcoming.
NSString* GSDisplayNumber;
Availability: OpenStep
Description forthcoming.
NSString* GSScreenNumber;
Availability: OpenStep
Description forthcoming.
NSString* GSBoxBorder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSBrowserHeader;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSColorWell;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSColorWellInnerBorder;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuHorizontalBackground;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuHorizontalItem;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuSeparatorItem;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuTitleBackground;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuVerticalBackground;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSMenuVerticalItem;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSPopUpButton;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSProgressIndicatorBarDeterminate;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSProgressIndicatorBezel;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSRadio;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerDownArrow;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerHorizontalKnob;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerHorizontalSlot;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerLeftArrow;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerRightArrow;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerUpArrow;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerVerticalKnob;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSScrollerVerticalSlot;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSSliderHorizontalTrack;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSSliderVerticalTrack;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSSwitch;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewBackgroundTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewBottomBackgroundTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewBottomSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewBottomUnSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewLeftBackgroundTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewLeftSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewLeftUnSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewRightBackgroundTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewRightSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewRightUnSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTabViewUnSelectedTabFill;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTableCorner;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSTableHeader;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
NSString* GSThemeDidActivateNotification;
Availability: Not in OpenStep/MacOS-X
Notification sent when a theme has just become
active.
The notification is posted by the
-activate
method.
This is primarily for internal use by
AppKit controls which need to readjust how they are
displayed when a new theme is in use.
Theme
subclasses must ensure that the theme is ready for
use by the time this notification is posted (which
generally means that they should have finished
putting all resources in place in response to a
GSThemeWillActivateNotification).
NSString* GSThemeDidDeactivateNotification;
Availability: Not in OpenStep/MacOS-X
Notification sent when a theme has just become
inactive.
The notification is posted by the
-deactivate
method.
This is primarily for use by
subclasses of GSTheme which need to perform
additional cleanup after the theme stops being
used.
NSString* GSThemeWillActivateNotification;
Availability: Not in OpenStep/MacOS-X
Notification sent when a theme is about to
become active.
The notification is posted by
the
-activate
method.
This is for use by subclasses of
GSTheme which need to perform additional setup before
the theme starts being used by AppKit controls.
At
the point when this notification is called, the color,
image, and defaults information from the theme will
have been installed and the theme subclass may perform
final adjustments.
NSString* GSThemeWillDeactivateNotification;
Availability: Not in OpenStep/MacOS-X
Notification sent when a theme is about to
become inactive.
The notification is posted by
the
-deactivate
method.
This allows code to make preparatory
changes before the current theme is deactivated, but
subclasses should not make the theme unusable at
this point as the AppKit may be doing its own cleanup in
response to the notification.
typedef enum ... GSThemeControlState;
Availability: Not in OpenStep/MacOS-X
This enumeration provides constants for informing
drawing methods what state a control is in (and
consequently how the display element being drawn
should be presented). NB. GSThemeNormalState must be 0
and GSThemeSelectedState must be the last state, in order
to allow code to iterate through all the states.
typedef enum ... GSThemeFillStyle;
Availability: Not in OpenStep/MacOS-X
This defines how the values in a tile array should be
used when drawing a rectangle. Mostly this just effects
the center, middle image of the rectangle.
FillStyleMatrix is provided for the use of
theme editors wishing to display the tile.
typedef struct GSThemeMargins struct GSThemeMargins;
Availability: Not in OpenStep/MacOS-X
Structure to describe the size of
top/bottom/left/right margins inside a
button
Up