]> git.sesse.net Git - vlc/blob - modules/gui/macosx/playlist.h
macosx: fixed table column duplication by moving the dynamic column generation from...
[vlc] / modules / gui / macosx / playlist.h
1 /*****************************************************************************
2  * playlist.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2012 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Derk-Jan Hartman <hartman at videolan dot org>
9  *          Felix Paul Kühne <fkuehne at videolan dot org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #import "PXSourceList.h"
27
28 /* playlist column definitions */
29 #define TRACKNUM_COLUMN @"tracknumber"
30 #define TITLE_COLUMN @"name"
31 #define ARTIST_COLUMN @"artist"
32 #define DURATION_COLUMN @"duration"
33 #define GENRE_COLUMN @"genre"
34 #define ALBUM_COLUMN @"album"
35 #define DESCRIPTION_COLUMN @"description"
36 #define DATE_COLUMN @"date"
37 #define LANGUAGE_COLUMN @"language"
38
39 /*****************************************************************************
40  * VLCPlaylistView interface
41  *****************************************************************************/
42 @interface VLCPlaylistView : NSOutlineView
43 {
44 }
45
46 @end
47
48 /*****************************************************************************
49  * VLCPlaylistCommon interface
50  *****************************************************************************/
51 @interface VLCPlaylistCommon : NSObject <NSOutlineViewDataSource, NSOutlineViewDelegate>
52 {
53     IBOutlet VLCPlaylistView* o_outline_view;
54
55     IBOutlet id o_tc_name_other;
56     IBOutlet id o_tc_author_other;
57     IBOutlet id o_tc_duration_other;
58     IBOutlet VLCPlaylistView* o_outline_view_other;
59
60     NSMutableDictionary *o_outline_dict;
61     playlist_item_t * p_current_root_item;
62 }
63
64 - (void)setPlaylistRoot: (playlist_item_t *)root_item;
65 - (playlist_item_t *)currentPlaylistRoot;
66 - (playlist_item_t *)selectedPlaylistItem;
67 - (NSOutlineView *)outlineView;
68 @end
69
70 /*****************************************************************************
71  * VLCPlaylistWizard interface
72  *****************************************************************************/
73 @interface VLCPlaylistWizard : VLCPlaylistCommon
74 {
75 }
76
77 - (IBAction)reloadOutlineView;
78
79 @end
80
81 /*****************************************************************************
82  * VLCPlaylist interface
83  *****************************************************************************/
84 @interface VLCPlaylist : VLCPlaylistCommon
85 {
86     IBOutlet id o_controller;
87     IBOutlet id o_playlist_wizard;
88
89     IBOutlet id o_btn_playlist;
90     IBOutlet id o_playlist_view;
91     IBOutlet id o_search_field;
92     IBOutlet id o_search_field_other;
93     IBOutlet id o_mi_save_playlist;
94     IBOutlet id o_ctx_menu;
95
96     IBOutlet id o_mi_play;
97     IBOutlet id o_mi_delete;
98     IBOutlet id o_mi_info;
99     IBOutlet id o_mi_preparse;
100     IBOutlet id o_mi_revealInFinder;
101     IBOutlet id o_mm_mi_revealInFinder;
102     IBOutlet id o_mi_dl_cover_art;
103     IBOutlet id o_mi_selectall;
104     IBOutlet id o_mi_sort_name;
105     IBOutlet id o_mi_sort_author;
106     IBOutlet id o_mi_recursive_expand;
107
108     IBOutlet id o_save_accessory_view;
109     IBOutlet id o_save_accessory_popup;
110     IBOutlet id o_save_accessory_text;
111
112
113     NSImage *o_descendingSortingImage;
114     NSImage *o_ascendingSortingImage;
115
116     NSMutableArray *o_nodes_array;
117     NSMutableArray *o_items_array;
118
119     BOOL b_selected_item_met;
120     BOOL b_isSortDescending;
121     id o_tc_sortColumn;
122 }
123
124 - (void)searchfieldChanged:(NSNotification *)o_notification;
125 - (NSMenu *)menuForEvent:(NSEvent *)o_event;
126
127 - (IBAction)searchItem:(id)sender;
128
129 - (void)playlistUpdated;
130 - (void)outlineViewSelectionDidChange:(NSNotification *)notification;
131 - (void)sortNode:(int)i_mode;
132 - (void)updateRowSelection;
133
134 - (BOOL)isSelectionEmpty;
135
136 - (IBAction)playItem:(id)sender;
137 - (IBAction)revealItemInFinder:(id)sender;
138 - (IBAction)preparseItem:(id)sender;
139 - (IBAction)downloadCoverArt:(id)sender;
140 - (IBAction)savePlaylist:(id)sender;
141 - (IBAction)deleteItem:(id)sender;
142 - (IBAction)selectAll:(id)sender;
143 - (IBAction)sortNodeByName:(id)sender;
144 - (IBAction)sortNodeByAuthor:(id)sender;
145 - (IBAction)recursiveExpandNode:(id)sender;
146
147 - (id)playingItem;
148 - (NSArray *)draggedItems;
149
150 - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
151 - (void)appendNodeArray:(NSArray*)o_array inNode:(playlist_item_t *)p_node atPos:(int)i_position enqueue:(BOOL)b_enqueue;
152
153 - (void)setColumn: (NSString *)o_column state: (NSInteger)i_state;
154 @end