]> git.sesse.net Git - vlc/blob - modules/gui/macosx/playlist.h
* Fix the state of the playlist and fullscreen button.
[vlc] / modules / gui / macosx / playlist.h
1 /*****************************************************************************
2  * playlist.h: MacOS X interface plugin
3  *****************************************************************************
4  * Copyright (C) 2002-2003 VideoLAN
5  * $Id: playlist.h,v 1.16 2003/12/11 19:34:46 hartman Exp $
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Derk-Jan Hartman <thedj@users.sourceforge.net>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * VLCPlaylistView interface 
27  *****************************************************************************/
28 @interface VLCPlaylistView : NSTableView
29 {
30 }
31
32 @end
33
34 /*****************************************************************************
35  * VLCPlaylist interface 
36  *****************************************************************************/
37 @interface VLCPlaylist : NSObject
38 {
39     int i_moveRow;
40     
41     IBOutlet id o_window;
42     IBOutlet id o_btn_playlist;
43     IBOutlet id o_table_view;
44     
45     IBOutlet id o_status_field;
46     IBOutlet id o_tc_name;
47     IBOutlet id o_tc_author;
48
49     IBOutlet id o_ctx_menu;
50     IBOutlet id o_mi_save_playlist;
51     IBOutlet id o_mi_play;
52     IBOutlet id o_mi_delete;
53     IBOutlet id o_mi_selectall;
54
55     IBOutlet id o_random_ckb;
56     IBOutlet id o_loop_ckb;
57     IBOutlet id o_repeat_ckb;
58
59     IBOutlet id o_search_keyword;
60     IBOutlet id o_search_button;
61
62 }
63
64 - (void)initStrings;
65 - (NSMenu *)menuForEvent:(NSEvent *)o_event;
66
67 - (IBAction)toggleWindow:(id)sender;
68 - (IBAction)savePlaylist:(id)sender;
69 - (IBAction)playItem:(id)sender;
70 - (IBAction)deleteItems:(id)sender;
71 - (IBAction)selectAll:(id)sender;
72 - (IBAction)searchItem:(id)sender;
73
74 - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
75
76 - (void)updateRowSelection;
77 - (void)playlistUpdated;
78
79 @end