]> git.sesse.net Git - vlc/blob - modules/gui/macosx/playlist.h
macosx: re-implement macosx-background
[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 #define URI_COLUMN @"uri"
39
40 /*****************************************************************************
41  * VLCPlaylistView interface
42  *****************************************************************************/
43 @interface VLCPlaylistView : NSOutlineView
44 {
45 }
46
47 @end
48
49 /*****************************************************************************
50  * VLCPlaylistCommon interface
51  *****************************************************************************/
52 @interface VLCPlaylistCommon : NSObject <NSOutlineViewDataSource, NSOutlineViewDelegate>
53 {
54     IBOutlet VLCPlaylistView* o_outline_view;
55
56     IBOutlet id o_tc_name_other;
57     IBOutlet id o_tc_author_other;
58     IBOutlet id o_tc_duration_other;
59     IBOutlet VLCPlaylistView* o_outline_view_other;
60
61     NSMutableDictionary *o_outline_dict;
62     playlist_item_t * p_current_root_item;
63 }
64
65 - (void)setPlaylistRoot: (playlist_item_t *)root_item;
66 - (playlist_item_t *)currentPlaylistRoot;
67 - (playlist_item_t *)selectedPlaylistItem;
68 - (NSOutlineView *)outlineView;
69 @end
70
71 /*****************************************************************************
72  * VLCPlaylistWizard interface
73  *****************************************************************************/
74 @interface VLCPlaylistWizard : VLCPlaylistCommon
75 {
76 }
77
78 - (IBAction)reloadOutlineView;
79
80 @end
81
82 /*****************************************************************************
83  * VLCPlaylist interface
84  *****************************************************************************/
85 @interface VLCPlaylist : VLCPlaylistCommon
86 {
87     IBOutlet id o_controller;
88     IBOutlet id o_playlist_wizard;
89
90     IBOutlet id o_btn_playlist;
91     IBOutlet id o_playlist_view;
92     IBOutlet id o_search_field;
93     IBOutlet id o_search_field_other;
94     IBOutlet id o_mi_save_playlist;
95     IBOutlet id o_ctx_menu;
96
97     IBOutlet id o_mi_play;
98     IBOutlet id o_mi_delete;
99     IBOutlet id o_mi_info;
100     IBOutlet id o_mi_preparse;
101     IBOutlet id o_mi_revealInFinder;
102     IBOutlet id o_mm_mi_revealInFinder;
103     IBOutlet id o_mi_dl_cover_art;
104     IBOutlet id o_mi_selectall;
105     IBOutlet id o_mi_sort_name;
106     IBOutlet id o_mi_sort_author;
107     IBOutlet id o_mi_recursive_expand;
108
109     IBOutlet id o_save_accessory_view;
110     IBOutlet id o_save_accessory_popup;
111     IBOutlet id o_save_accessory_text;
112
113
114     NSImage *o_descendingSortingImage;
115     NSImage *o_ascendingSortingImage;
116
117     NSMutableArray *o_nodes_array;
118     NSMutableArray *o_items_array;
119
120     BOOL b_selected_item_met;
121     BOOL b_isSortDescending;
122     id o_tc_sortColumn;
123 }
124
125 - (void)searchfieldChanged:(NSNotification *)o_notification;
126 - (NSMenu *)menuForEvent:(NSEvent *)o_event;
127
128 - (IBAction)searchItem:(id)sender;
129
130 - (void)playlistUpdated;
131 - (void)outlineViewSelectionDidChange:(NSNotification *)notification;
132 - (void)sortNode:(int)i_mode;
133 - (void)updateRowSelection;
134
135 - (BOOL)isSelectionEmpty;
136
137 - (IBAction)playItem:(id)sender;
138 - (IBAction)revealItemInFinder:(id)sender;
139 - (IBAction)preparseItem:(id)sender;
140 - (IBAction)downloadCoverArt:(id)sender;
141 - (IBAction)savePlaylist:(id)sender;
142 - (IBAction)deleteItem:(id)sender;
143 - (IBAction)selectAll:(id)sender;
144 - (IBAction)sortNodeByName:(id)sender;
145 - (IBAction)sortNodeByAuthor:(id)sender;
146 - (IBAction)recursiveExpandNode:(id)sender;
147
148 - (id)playingItem;
149 - (NSArray *)draggedItems;
150
151 - (void)appendArray:(NSArray*)o_array atPos:(int)i_position enqueue:(BOOL)b_enqueue;
152 - (void)appendNodeArray:(NSArray*)o_array inNode:(playlist_item_t *)p_node atPos:(int)i_position enqueue:(BOOL)b_enqueue;
153
154 - (void)setColumn: (NSString *)o_column state: (NSInteger)i_state;
155 @end