]> git.sesse.net Git - vlc/blobdiff - modules/gui/macosx/bookmarks.h
macosx: video effects panel: synchronize text field and stepper values properly by...
[vlc] / modules / gui / macosx / bookmarks.h
index a294b3b683466ca2c40f00c71c3724d8e3d6eaf9..accd5a3f81146d762e51c5ccb0fe5860d325a8e5 100644 (file)
@@ -1,10 +1,10 @@
 /*****************************************************************************
  * bookmarks.h: MacOS X Bookmarks window
  *****************************************************************************
- * Copyright (C) 2005 the VideoLAN team
+ * Copyright (C) 2005, 2007 VLC authors and VideoLAN
  * $Id$
  *
- * Authors: Felix K\9fhne <fkuehne@users.sf.net>
+ * Authors: Felix Kühne <fkuehne at videolan dot org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,8 @@
  *****************************************************************************/
 
 #import <Cocoa/Cocoa.h>
-#import <vlc/vlc.h>
+#import "intf.h"
+#import <vlc_common.h>
 
 @interface VLCBookmarks : NSObject
 {
@@ -34,7 +35,7 @@
     IBOutlet id o_btn_extract;
     IBOutlet id o_btn_rm;
     IBOutlet id o_tbl_dataTable;
-    
+
     /* edit window */
     IBOutlet id o_edit_window;
     IBOutlet id o_edit_btn_ok;
     IBOutlet id o_edit_fld_name;
     IBOutlet id o_edit_fld_time;
     IBOutlet id o_edit_fld_bytes;
-    
+
     input_thread_t *p_old_input;
 }
++ (VLCBookmarks *)sharedInstance;
 
 - (IBAction)add:(id)sender;
 - (IBAction)clear:(id)sender;
@@ -59,9 +61,6 @@
 - (IBAction)edit_cancel:(id)sender;
 - (IBAction)edit_ok:(id)sender;
 
-+ (VLCBookmarks *)sharedInstance;
-
-- (void)initStrings;
 - (void)showBookmarks;
-- (id)getDataTable;
+- (id)dataTable;
 @end