1 /*****************************************************************************
2 * intf.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2002-2014 VLC authors and VideoLAN
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 * David Fuhrmann <david dot fuhrmann at googlemail dot com>
11 * Pierre d'Herbemont <pdherbemont # videolan org>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26 *****************************************************************************/
32 #import <vlc_common.h>
33 #import <vlc_interface.h>
34 #import <vlc_playlist.h>
38 #import <vlc_vout_window.h>
40 #import <Cocoa/Cocoa.h>
41 #import "SPMediaKeyTap.h" /* for the media key support */
43 #import "MainWindow.h"
44 #import "VLCVoutWindowController.h"
45 #import "StringUtility.h"
47 #import <IOKit/pwr_mgt/IOPMLib.h> /* for sleep prevention */
49 /*****************************************************************************
51 *****************************************************************************/
52 #define VLCIntf [[VLCMain sharedInstance] intf]
54 // You need to release those objects after use
55 input_thread_t *getInput(void);
56 vout_thread_t *getVout(void);
57 vout_thread_t *getVoutForActiveWindow(void);
58 audio_output_t *getAout(void);
60 static NSString * VLCInputChangedNotification = @"VLCInputChangedNotification";
62 /*****************************************************************************
64 *****************************************************************************/
69 @interface VLCMain : NSObject <NSWindowDelegate, NSApplicationDelegate>
71 intf_thread_t *p_intf; /* The main intf object */
72 input_thread_t *p_current_input;
73 BOOL launched; /* finishedLaunching */
74 int items_at_launch; /* items in playlist after launch */
75 id o_mainmenu; /* VLCMainMenu */
76 id o_prefs; /* VLCPrefs */
77 id o_sprefs; /* VLCSimplePrefs */
78 id o_open; /* VLCOpen */
79 id o_wizard; /* VLCWizard */
80 id o_coredialogs; /* VLCCoreDialogProvider */
81 id o_info; /* VLCInformation */
82 id o_eyetv; /* VLCEyeTVController */
83 id o_bookmarks; /* VLCBookmarks */
84 id o_coreinteraction; /* VLCCoreInteraction */
85 BOOL nib_main_loaded; /* main nibfile */
86 BOOL nib_open_loaded; /* open nibfile */
87 BOOL nib_about_loaded; /* about nibfile */
88 BOOL nib_wizard_loaded; /* wizard nibfile */
89 BOOL nib_prefs_loaded; /* preferences nibfile */
90 BOOL nib_info_loaded; /* information panel nibfile */
91 BOOL nib_coredialogs_loaded; /* CoreDialogs nibfile */
92 BOOL nib_bookmarks_loaded; /* Bookmarks nibfile */
93 BOOL b_active_videoplayback;
94 BOOL b_nativeFullscreenMode;
96 IBOutlet VLCMainWindow *o_mainwindow; /* VLCMainWindow */
98 IBOutlet VLCControls * o_controls; /* VLCControls */
99 IBOutlet VLCPlaylist * o_playlist; /* VLCPlaylist */
101 AppleRemote * o_remote;
102 BOOL b_remote_button_hold; /* true as long as the user holds the left,right,plus or minus on the remote control */
104 /* media key support */
105 BOOL b_mediaKeySupport;
106 BOOL b_mediakeyJustJumped;
107 SPMediaKeyTap * o_mediaKeyController;
108 BOOL b_mediaKeyTrapEnabled;
110 NSArray *o_usedHotkeys;
112 /* sleep management */
113 IOPMAssertionID systemSleepAssertionID;
114 IOPMAssertionID userActivityAssertionID;
116 VLCVoutWindowController *o_vout_controller;
118 /* iTunes/Spotify play/pause support */
119 BOOL b_has_itunes_paused;
120 BOOL b_has_spotify_paused;
121 NSTimer *o_itunes_play_timer;
123 dispatch_queue_t informInputChangedQueue;
126 @property (readonly) VLCVoutWindowController* voutController;
127 @property (readonly) BOOL nativeFullscreenMode;
128 @property (nonatomic, readwrite) BOOL playlistUpdatedSelectorInQueue;
129 + (VLCMain *)sharedInstance;
131 - (intf_thread_t *)intf;
132 - (void)setIntf:(intf_thread_t *)p_mainintf;
135 - (VLCMainWindow *)mainWindow;
139 - (id)simplePreferences;
144 - (id)coreDialogProvider;
145 - (id)eyeTVController;
146 - (id)appleRemoteController;
147 - (void)setActiveVideoPlayback:(BOOL)b_value;
148 - (BOOL)activeVideoPlayback;
149 - (void)applicationWillTerminate:(NSNotification *)notification;
150 - (void)updateCurrentlyUsedHotkeys;
151 - (BOOL)hasDefinedShortcutKey:(NSEvent *)o_event force:(BOOL)b_force;
153 - (void)PlaylistItemChanged;
154 - (void)plItemUpdated;
155 - (void)playbackStatusUpdated;
156 - (void)sendDistributedNotificationWithUpdatedPlaybackStatus;
157 - (void)playbackModeUpdated;
158 - (void)updateVolume;
159 - (void)updatePlaybackPosition;
161 - (void)updateRecordState: (BOOL)b_value;
162 - (void)updateMetaAndInfo;
163 - (void)updateMainMenu;
164 - (void)updateMainWindow;
165 - (void)showMainWindow;
166 - (void)showFullscreenController;
167 - (void)updateDelays;
169 - (void)updateTogglePlaylistState;
171 - (void)mediaKeyTap:(SPMediaKeyTap*)keyTap receivedMediaKeyEvent:(NSEvent*)event;
173 - (void)resetAndReinitializeUserDefaults;
175 - (BOOL)isTerminating;
180 /*****************************************************************************
181 * VLCApplication interface
182 *****************************************************************************/
184 @interface VLCApplication : NSApplication