mirror of
https://github.com/textmate/textmate.git
synced 2026-02-14 16:34:57 -05:00
18 lines
651 B
C
18 lines
651 B
C
#include <oak/misc.h>
|
|
|
|
PUBLIC extern NSString* const OakCursorDidHideNotification;
|
|
|
|
PUBLIC void OakRunIOAlertPanel (char const* format, ...) __attribute__ ((format (printf, 1, 2)));
|
|
PUBLIC BOOL OakIsAlternateKeyOrMouseEvent (NSUInteger flags = NSAlternateKeyMask, NSEvent* anEvent = [NSApp currentEvent]);
|
|
|
|
#if !defined(MAC_OS_X_VERSION_10_7) || (MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7)
|
|
enum {
|
|
NSScrollerKnobStyleDefault = 0,
|
|
NSScrollerKnobStyleDark = 1,
|
|
NSScrollerKnobStyleLight = 2
|
|
};
|
|
typedef NSInteger NSScrollerKnobStyle;
|
|
#endif
|
|
|
|
PUBLIC void SetLionScrollerKnobStyle (NSScrollView* scrollView, NSScrollerKnobStyle style);
|