Main Page | Modules | Class Hierarchy | Class List | Directories | File List | Class Members | File Members | Related Pages

bookmarks.h

00001 /*****************************************************************************
00002  * bookmarks.h: MacOS X Bookmarks window
00003  *****************************************************************************
00004  * Copyright (C) 2005 the VideoLAN team
00005  * $Id: bookmarks.h 12811 2005-10-10 15:41:52Z fkuehne $
00006  *
00007  * Authors: Felix KŸhne <[email protected]>
00008  *
00009  * This program is free software; you can redistribute it and/or modify
00010  * it under the terms of the GNU General Public License as published by
00011  * the Free Software Foundation; either version 2 of the License, or
00012  * (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
00022  *****************************************************************************/
00023 
00024 #import <Cocoa/Cocoa.h>
00025 #import <vlc/vlc.h>
00026 
00027 @interface VLCBookmarks : NSObject
00028 {
00029     /* main window */
00030     IBOutlet id o_bookmarks_window;
00031     IBOutlet id o_btn_add;
00032     IBOutlet id o_btn_clear;
00033     IBOutlet id o_btn_edit;
00034     IBOutlet id o_btn_extract;
00035     IBOutlet id o_btn_rm;
00036     IBOutlet id o_tbl_dataTable;
00037     
00038     /* edit window */
00039     IBOutlet id o_edit_window;
00040     IBOutlet id o_edit_btn_ok;
00041     IBOutlet id o_edit_btn_cancel;
00042     IBOutlet id o_edit_lbl_name;
00043     IBOutlet id o_edit_lbl_time;
00044     IBOutlet id o_edit_lbl_bytes;
00045     IBOutlet id o_edit_fld_name;
00046     IBOutlet id o_edit_fld_time;
00047     IBOutlet id o_edit_fld_bytes;
00048     
00049     input_thread_t *p_old_input;
00050 }
00051 
00052 - (IBAction)add:(id)sender;
00053 - (IBAction)clear:(id)sender;
00054 - (IBAction)edit:(id)sender;
00055 - (IBAction)extract:(id)sender;
00056 - (IBAction)remove:(id)sender;
00057 - (IBAction)goToBookmark:(id)sender;
00058 
00059 - (IBAction)edit_cancel:(id)sender;
00060 - (IBAction)edit_ok:(id)sender;
00061 
00062 + (VLCBookmarks *)sharedInstance;
00063 
00064 - (void)initStrings;
00065 - (void)showBookmarks;
00066 - (id)getDataTable;
00067 @end

Generated on Tue Dec 20 10:14:38 2005 for vlc-0.8.4a by  doxygen 1.4.2