]> git.sesse.net Git - vlc/blob - modules/gui/macosx/intf.h
macosx: set a proper main window frame on termination
[vlc] / modules / gui / macosx / intf.h
1 /*****************************************************************************
2  * intf.h: MacOS X interface module
3  *****************************************************************************
4  * Copyright (C) 2002-2014 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  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
11  *          Pierre d'Herbemont <pdherbemont # videolan org>
12  *
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.
17  *
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.
22  *
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  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 #   include "config.h"
30 #endif
31
32 #import <vlc_common.h>
33 #import <vlc_interface.h>
34 #import <vlc_playlist.h>
35 #import <vlc_vout.h>
36 #import <vlc_aout.h>
37 #import <vlc_input.h>
38 #import <vlc_vout_window.h>
39
40 #import <Cocoa/Cocoa.h>
41 #import "SPMediaKeyTap.h"                   /* for the media key support */
42 #import "misc.h"
43 #import "MainWindow.h"
44 #import "VLCVoutWindowController.h"
45 #import "StringUtility.h"
46
47 #import <IOKit/pwr_mgt/IOPMLib.h>           /* for sleep prevention */
48
49 /*****************************************************************************
50  * Local prototypes.
51  *****************************************************************************/
52 #define VLCIntf [[VLCMain sharedInstance] intf]
53
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);
59
60
61 /*****************************************************************************
62  * VLCMain interface
63  *****************************************************************************/
64 @class AppleRemote;
65 @class VLCControls;
66 @class VLCPlaylist;
67
68 @interface VLCMain : NSObject <NSWindowDelegate, NSApplicationDelegate>
69 {
70     intf_thread_t *p_intf;      /* The main intf object */
71     input_thread_t *p_current_input;
72     BOOL launched;              /* finishedLaunching */
73     int items_at_launch;        /* items in playlist after launch */
74     id o_mainmenu;              /* VLCMainMenu */
75     id o_prefs;                 /* VLCPrefs       */
76     id o_sprefs;                /* VLCSimplePrefs */
77     id o_open;                  /* VLCOpen        */
78     id o_wizard;                /* VLCWizard      */
79     id o_coredialogs;           /* VLCCoreDialogProvider */
80     id o_info;                  /* VLCInformation */
81     id o_eyetv;                 /* VLCEyeTVController */
82     id o_bookmarks;             /* VLCBookmarks */
83     id o_coreinteraction;       /* VLCCoreInteraction */
84     BOOL nib_main_loaded;       /* main nibfile */
85     BOOL nib_open_loaded;       /* open nibfile */
86     BOOL nib_about_loaded;      /* about nibfile */
87     BOOL nib_wizard_loaded;     /* wizard nibfile */
88     BOOL nib_prefs_loaded;      /* preferences nibfile */
89     BOOL nib_info_loaded;       /* information panel nibfile */
90     BOOL nib_coredialogs_loaded; /* CoreDialogs nibfile */
91     BOOL nib_bookmarks_loaded;   /* Bookmarks nibfile */
92     BOOL b_active_videoplayback;
93     BOOL b_nativeFullscreenMode;
94
95     IBOutlet VLCMainWindow *o_mainwindow;            /* VLCMainWindow */
96
97     IBOutlet VLCControls * o_controls;     /* VLCControls    */
98     IBOutlet VLCPlaylist * o_playlist;     /* VLCPlaylist    */
99
100     AppleRemote * o_remote;
101     BOOL b_remote_button_hold; /* true as long as the user holds the left,right,plus or minus on the remote control */
102
103     /* media key support */
104     BOOL b_mediaKeySupport;
105     BOOL b_mediakeyJustJumped;
106     SPMediaKeyTap * o_mediaKeyController;
107
108     NSArray *o_usedHotkeys;
109
110     /* sleep management */
111     IOPMAssertionID systemSleepAssertionID;
112     IOPMAssertionID userActivityAssertionID;
113
114     VLCVoutWindowController *o_vout_controller;
115
116     /* iTunes/Spotify play/pause support */
117     BOOL b_has_itunes_paused;
118     BOOL b_has_spotify_paused;
119     NSTimer *o_itunes_play_timer;
120
121     BOOL b_playlist_updated_selector_in_queue;
122
123     dispatch_queue_t informInputChangedQueue;
124 }
125
126 @property (readonly) VLCVoutWindowController* voutController;
127 @property (readonly) BOOL nativeFullscreenMode;
128 @property (nonatomic, readwrite) BOOL playlistUpdatedSelectorInQueue;
129 + (VLCMain *)sharedInstance;
130
131 - (intf_thread_t *)intf;
132 - (void)setIntf:(intf_thread_t *)p_mainintf;
133
134 - (id)mainMenu;
135 - (VLCMainWindow *)mainWindow;
136 - (id)controls;
137 - (id)bookmarks;
138 - (id)open;
139 - (id)simplePreferences;
140 - (id)preferences;
141 - (id)playlist;
142 - (id)info;
143 - (id)wizard;
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;
152
153 - (void)PlaylistItemChanged;
154 - (void)playbackStatusUpdated;
155 - (void)sendDistributedNotificationWithUpdatedPlaybackStatus;
156 - (void)playbackModeUpdated;
157 - (void)updateVolume;
158 - (void)updatePlaybackPosition;
159 - (void)updateName;
160 - (void)playlistUpdated;
161 - (void)updateRecordState: (BOOL)b_value;
162 - (void)updateInfoandMetaPanel;
163 - (void)updateMainMenu;
164 - (void)updateMainWindow;
165 - (void)showMainWindow;
166 - (void)showFullscreenController;
167 - (void)updateDelays;
168
169 - (void)updateTogglePlaylistState;
170
171 - (void)mediaKeyTap:(SPMediaKeyTap*)keyTap receivedMediaKeyEvent:(NSEvent*)event;
172
173 - (void)resetAndReinitializeUserDefaults;
174
175 - (BOOL)isTerminating;
176
177 @end
178
179
180 /*****************************************************************************
181  * VLCApplication interface
182  *****************************************************************************/
183
184 @interface VLCApplication : NSApplication
185
186 @end