]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/PXSourceList.h
macosx: add yosemite guard
[vlc] / modules / gui / macosx / PXSourceList.h
index 416dfe009abcb978b28600bbc3d79b83f809f9bc..e01899d0b2948c22bbe184c8d98958b7b029d5c3 100644 (file)
@@ -7,30 +7,29 @@
 //
 
 #import <Cocoa/Cocoa.h>
-#import "CompatibilityFixes.h"
 
 #import "PXSourceListDelegate.h"
 #import "PXSourceListDataSource.h"
 
 @interface PXSourceList: NSOutlineView <NSOutlineViewDelegate, NSOutlineViewDataSource>
 {
-       id <PXSourceListDelegate> _secondaryDelegate;           //Used to store the publicly visible delegate
-       id <PXSourceListDataSource> _secondaryDataSource;       //Used to store the publicly visible data source
-       
-       NSSize _iconSize;                                                                       //The size of icons in the Source List. Defaults to 16x16
+    id <PXSourceListDelegate> _secondaryDelegate; //Used to store the publicly visible delegate
+    id <PXSourceListDataSource> _secondaryDataSource; //Used to store the publicly visible data source
+
+    NSSize _iconSize; //The size of icons in the Source List. Defaults to 16x16
 }
-       
+
 @property (nonatomic) NSSize iconSize;
-       
+
 @property (assign) id<PXSourceListDataSource> dataSource;
 @property (assign) id<PXSourceListDelegate> delegate;
 
-- (NSUInteger)numberOfGroups;                                                  //Returns the number of groups in the Source List
-- (BOOL)isGroupItem:(id)item;                                                  //Returns whether `item` is a group
-- (BOOL)isGroupAlwaysExpanded:(id)group;                               //Returns whether `group` is displayed as always expanded
+- (NSUInteger)numberOfGroups; //Returns the number of groups in the Source List
+- (BOOL)isGroupItem:(id)item; //Returns whether `item` is a group
+- (BOOL)isGroupAlwaysExpanded:(id)group; //Returns whether `group` is displayed as always expanded
 
-- (BOOL)itemHasBadge:(id)item;                                                 //Returns whether `item` has a badge
-- (NSInteger)badgeValueForItem:(id)item;                               //Returns the badge value for `item`
+- (BOOL)itemHasBadge:(id)item; //Returns whether `item` has a badge
+- (NSInteger)badgeValueForItem:(id)item; //Returns the badge value for `item`
 
 @end