Commit d94d377a authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx/MainWindowTitle: cleanup header

parent 3b4a5339
...@@ -48,6 +48,9 @@ ...@@ -48,6 +48,9 @@
IBOutlet id o_fullscreen_btn; IBOutlet id o_fullscreen_btn;
IBOutlet id o_title_lbl; IBOutlet id o_title_lbl;
} }
@property (readonly) NSButton * closeButton;
@property (readonly) NSButton * minimizeButton;
@property (readonly) NSButton * zoomButton;
- (void)loadButtonIcons; - (void)loadButtonIcons;
- (IBAction)buttonAction:(id)sender; - (IBAction)buttonAction:(id)sender;
...@@ -56,30 +59,21 @@ ...@@ -56,30 +59,21 @@
- (void)setWindowButtonOver:(BOOL)b_value; - (void)setWindowButtonOver:(BOOL)b_value;
- (void)setWindowFullscreenButtonOver:(BOOL)b_value; - (void)setWindowFullscreenButtonOver:(BOOL)b_value;
- (NSButton*)closeButton;
- (NSButton*)minimizeButton;
- (NSButton*)zoomButton;
@end @end
@interface VLCWindowButtonCell : NSButtonCell @interface VLCWindowButtonCell : NSButtonCell
{
}
@end @end
@interface VLCResizeControl : NSImageView @interface VLCResizeControl : NSImageView
{
}
@end @end
@interface VLCColorView : NSView @interface VLCColorView : NSView
{
}
@end @end
@interface VLCCustomWindowButtonPrototype: NSButton @interface VLCCustomWindowButtonPrototype: NSButton
{
}
- (NSArray*)extendedAccessibilityAttributeNames: (NSArray*)theAttributeNames; - (NSArray*)extendedAccessibilityAttributeNames: (NSArray*)theAttributeNames;
- (id)extendedAccessibilityAttributeValue: (NSString*)theAttributeName; - (id)extendedAccessibilityAttributeValue: (NSString*)theAttributeName;
- (NSNumber*)extendedAccessibilityIsAttributeSettable: (NSString*)theAttributeName; - (NSNumber*)extendedAccessibilityIsAttributeSettable: (NSString*)theAttributeName;
...@@ -87,25 +81,21 @@ ...@@ -87,25 +81,21 @@
@end @end
@interface VLCCustomWindowCloseButton: VLCCustomWindowButtonPrototype @interface VLCCustomWindowCloseButton: VLCCustomWindowButtonPrototype
{
}
@end @end
@interface VLCCustomWindowMinimizeButton: VLCCustomWindowButtonPrototype @interface VLCCustomWindowMinimizeButton: VLCCustomWindowButtonPrototype
{
}
@end @end
@interface VLCCustomWindowZoomButton: VLCCustomWindowButtonPrototype @interface VLCCustomWindowZoomButton: VLCCustomWindowButtonPrototype
{
}
@end @end
@interface VLCCustomWindowFullscreenButton : VLCCustomWindowButtonPrototype @interface VLCCustomWindowFullscreenButton : VLCCustomWindowButtonPrototype
{
}
@end @end
@interface VLCWindowTitleTextField : NSTextField @interface VLCWindowTitleTextField : NSTextField
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment