macosx: Remove private API for sort indicator images
[vlc.git] / modules / gui / macosx / VLCBookmarksWindowController.h
blobf774de732cfe3c3ebdcc87f304cdd47f749ace9d
1 /*****************************************************************************
2 * VLCBookmarksWindowController.h: MacOS X Bookmarks window
3 *****************************************************************************
4 * Copyright (C) 2005, 2007, 2015 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Felix Kühne <fkuehne at videolan dot org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #import <Cocoa/Cocoa.h>
25 #import "VLCMain.h"
26 #import <vlc_common.h>
28 @interface VLCBookmarksWindowController : NSWindowController
30 /* main window */
31 @property (readwrite, weak) IBOutlet NSButton *addButton;
32 @property (readwrite, weak) IBOutlet NSButton *clearButton;
33 @property (readwrite, weak) IBOutlet NSButton *editButton;
34 @property (readwrite, weak) IBOutlet NSButton *removeButton;
35 @property (readwrite, weak) IBOutlet NSTableView *dataTable;
37 /* edit window */
38 @property (readwrite) IBOutlet NSWindow *editBookmarksWindow;
39 @property (readwrite, weak) IBOutlet NSButton *editOKButton;
40 @property (readwrite, weak) IBOutlet NSButton *editCancelButton;
41 @property (readwrite, weak) IBOutlet NSTextField *editNameLabel;
42 @property (readwrite, weak) IBOutlet NSTextField *editTimeLabel;
43 @property (readwrite, weak) IBOutlet NSTextField *editNameTextField;
44 @property (readwrite, weak) IBOutlet NSTextField *editTimeTextField;
46 - (void)updateCocoaWindowLevel:(NSInteger)i_level;
47 - (IBAction)toggleWindow:(id)sender;
49 - (IBAction)add:(id)sender;
50 - (IBAction)clear:(id)sender;
51 - (IBAction)edit:(id)sender;
52 - (IBAction)remove:(id)sender;
53 - (IBAction)goToBookmark:(id)sender;
55 - (IBAction)edit_cancel:(id)sender;
56 - (IBAction)edit_ok:(id)sender;
58 @end