![]() |
API 0.9.5
|
#include "../Foundation/Foundation.h"
Go to the source code of this file.
Defines | |
#define | SPLIT_VIEW_DID_SUPPRESS_RESIZE_NOTIFICATION() ((_suppressResizeNotificationsMask & DidSuppressResizeNotification) !== 0) |
#define | SPLIT_VIEW_MAYBE_POST_DID_RESIZE() |
#define | SPLIT_VIEW_MAYBE_POST_WILL_RESIZE() |
#define | SPLIT_VIEW_SUPPRESS_RESIZE_NOTIFICATIONS(shouldSuppress) |
Variables | |
var | CPSplitViewAutosaveNameKey = "CPSplitViewAutosaveNameKey" |
var | CPSplitViewButtonBarsKey = "CPSplitViewButtonBarsKey" |
var | CPSplitViewDelegateKey = "CPSplitViewDelegateKey" |
CPSplitViewDidResizeSubviewsNotification = @"CPSplitViewDidResizeSubviewsNotification" | |
var | CPSplitViewHorizontalImage = nil |
var | CPSplitViewIsPaneSplitterKey = "CPSplitViewIsPaneSplitterKey" |
var | CPSplitViewIsVerticalKey = "CPSplitViewIsVerticalKey" |
var | CPSplitViewVerticalImage = nil |
CPSplitViewWillResizeSubviewsNotification = @"CPSplitViewWillResizeSubviewsNotification" | |
var | DidPostWillResizeNotification = 1 << 1 |
var | DidSuppressResizeNotification = 1 << 2 |
var | ShouldSuppressResizeNotifications = 1 |
#define SPLIT_VIEW_DID_SUPPRESS_RESIZE_NOTIFICATION | ( | ) | ((_suppressResizeNotificationsMask & DidSuppressResizeNotification) !== 0) |
Definition at line 39 of file CPSplitView.j.
#define SPLIT_VIEW_MAYBE_POST_DID_RESIZE | ( | ) |
if ((_suppressResizeNotificationsMask & ShouldSuppressResizeNotifications) !== 0) \ _suppressResizeNotificationsMask |= DidSuppressResizeNotification; \ else \ [self _postNotificationDidResize];
Definition at line 33 of file CPSplitView.j.
#define SPLIT_VIEW_MAYBE_POST_WILL_RESIZE | ( | ) |
if ((_suppressResizeNotificationsMask & DidPostWillResizeNotification) === 0) \ { \ [self _postNotificationWillResize]; \ _suppressResizeNotificationsMask |= DidPostWillResizeNotification; \ }
Definition at line 26 of file CPSplitView.j.
#define SPLIT_VIEW_SUPPRESS_RESIZE_NOTIFICATIONS | ( | shouldSuppress | ) |
if (shouldSuppress) \ _suppressResizeNotificationsMask |= ShouldSuppressResizeNotifications; \ else \ _suppressResizeNotificationsMask = 0;
Definition at line 42 of file CPSplitView.j.
var CPSplitViewAutosaveNameKey = "CPSplitViewAutosaveNameKey" |
Definition at line 1085 of file CPSplitView.j.
var CPSplitViewButtonBarsKey = "CPSplitViewButtonBarsKey" |
Definition at line 1084 of file CPSplitView.j.
var CPSplitViewDelegateKey = "CPSplitViewDelegateKey" |
Definition at line 1081 of file CPSplitView.j.
CPSplitViewDidResizeSubviewsNotification = @"CPSplitViewDidResizeSubviewsNotification" |
Definition at line 48 of file CPSplitView.j.
var CPSplitViewHorizontalImage = nil |
Definition at line 51 of file CPSplitView.j.
var CPSplitViewIsPaneSplitterKey = "CPSplitViewIsPaneSplitterKey" |
Definition at line 1083 of file CPSplitView.j.
var CPSplitViewIsVerticalKey = "CPSplitViewIsVerticalKey" |
Definition at line 1082 of file CPSplitView.j.
var CPSplitViewVerticalImage = nil |
Definition at line 52 of file CPSplitView.j.
CPSplitViewWillResizeSubviewsNotification = @"CPSplitViewWillResizeSubviewsNotification" |
Definition at line 49 of file CPSplitView.j.
var DidPostWillResizeNotification = 1 << 1 |
Definition at line 55 of file CPSplitView.j.
var DidSuppressResizeNotification = 1 << 2 |
Definition at line 56 of file CPSplitView.j.
Definition at line 54 of file CPSplitView.j.