]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/intf.h
* ALL: ported the WX-bookmarks-window to Cocoa (closes #22)
[vlc] / modules / gui / macosx / intf.h
index 75237ca0695903039ebfc32f39d3df66b8f6392f..c51bc3579b5a252d7ece51343a1836ec188315ff 100644 (file)
@@ -92,10 +92,12 @@ struct intf_sys_t
     id o_open;                  /* VLCOpen        */
     id o_wizard;                /* VLCWizard      */
     id o_extended;              /* VLCExtended    */
+    id o_bookmarks;             /* VLCBookmarks   */
     BOOL nib_open_loaded;       /* reference to the open-nib */
     BOOL nib_about_loaded;      /* reference to the about-nib */
     BOOL nib_wizard_loaded;     /* reference to the wizard-nib */
     BOOL nib_extended_loaded;   /* reference to the extended-nib */
+    BOOL nib_bookmarks_loaded;  /* reference to the bookmarks-nib */ 
 
     IBOutlet id o_window;       /* main window    */
     IBOutlet id o_playlist_view;/* playlist view  */
@@ -229,6 +231,7 @@ struct intf_sys_t
     IBOutlet id o_mi_controller;
     IBOutlet id o_mi_equalizer;
     IBOutlet id o_mi_extended;
+    IBOutlet id o_mi_bookmarks;
     IBOutlet id o_mi_playlist;
     IBOutlet id o_mi_info;
     IBOutlet id o_mi_messages;
@@ -266,6 +269,7 @@ struct intf_sys_t
 - (id)getPlaylist;
 - (id)getInfo;
 - (id)getWizard;
+- (id)getBookmarks;
 - (void)terminate;
 - (NSString *)localizedString:(char *)psz;
 - (char *)delocalizeString:(NSString *)psz;
@@ -296,6 +300,7 @@ struct intf_sys_t
 
 - (IBAction)showWizard:(id)sender;
 - (IBAction)showExtended:(id)sender;
+- (IBAction)showBookmarks:(id)sender;
 
 - (IBAction)viewAbout:(id)sender;
 - (IBAction)viewPreferences:(id)sender;