blob: 75b3b509a89cd681afabefcf991b9888689e818b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ Parsed from AppKit.framework NSStatusBarButton.h }
{$ifdef TYPES}
type
NSStatusBarButtonPtr = ^NSStatusBarButton;
{$endif}
{$ifdef CLASSES}
type
NSStatusBarButton = objcclass external (NSButton)
private
_statusBarButtonPrivate: id;
public
procedure setAppearsDisabled(newValue: ObjCBOOL); message 'setAppearsDisabled:';
function appearsDisabled: ObjCBOOL; message 'appearsDisabled';
end;
{$endif}
|