macosx: Remove private API for sort indicator images
[vlc.git] / modules / gui / macosx / VLCStatusBarIcon.h
blob6e1a0a6f26234da07e9f8bec5ae9bf18caca2391
1 /*****************************************************************************
2 * VLCStatusBarIcon.h: Status bar icon controller/delegate
3 *****************************************************************************
4 * Copyright (C) 2016 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Goran Dokic <vlc at 8hz dot com>
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>
26 @interface VLCStatusBarIcon : NSObject <NSMenuDelegate>
28 @property (readwrite, strong) NSStatusItem *statusItem;
29 @property (readwrite, strong) IBOutlet NSMenu *vlcStatusBarIconMenu;
31 @property (strong) IBOutlet NSView *playbackInfoView;
32 @property (strong) IBOutlet NSView *controlsView;
34 // Get data from VLC and update the little status menu
35 - (void)updateMenuItemRandom;
36 - (void)updateProgress;
38 - (IBAction)restoreMainWindow:(id)sender;
39 - (IBAction)statusBarIconTogglePlayPause:(id)sender;
40 - (IBAction)statusBarIconStop:(id)sender;
41 - (IBAction)statusBarIconNext:(id)sender;
42 - (IBAction)statusBarIconPrevious:(id)sender;
43 - (IBAction)statusBarIconToggleRandom:(id)sender;
45 @end