]> git.sesse.net Git - vlc/blob - modules/gui/macosx/macosx.m
vlc_plugin: fix non-LGPL plugins meta infos
[vlc] / modules / gui / macosx / macosx.m
1 /*****************************************************************************
2  * macosx.m: Mac OS X module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2014 VLC authors and VideoLAN
5  * $Id$
6  *
7  * Authors: Felix Paul Kühne <fkuehne at videolan dot org>
8  *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_vout_window.h>
38
39 /*****************************************************************************
40  * External prototypes
41  *****************************************************************************/
42 int  OpenIntf     (vlc_object_t *);
43 void CloseIntf    (vlc_object_t *);
44
45 int  WindowOpen   (vout_window_t *, const vout_window_cfg_t *);
46 void WindowClose  (vout_window_t *);
47
48 /*****************************************************************************
49  * Module descriptor
50  *****************************************************************************/
51 #define VDEV_TEXT N_("Video device")
52 #define VDEV_LONGTEXT N_("Number of the screen to use by default to display " \
53                          "videos in 'fullscreen'. The screen number correspondance can be found in "\
54                          "the video device selection menu.")
55
56 #define OPAQUENESS_TEXT N_("Opaqueness")
57 #define OPAQUENESS_LONGTEXT N_("Set the transparency of the video output. 1 is non-transparent (default) " \
58                                 "0 is fully transparent.")
59
60 #define BLACK_TEXT N_("Black screens in fullscreen")
61 #define BLACK_LONGTEXT N_("In fullscreen mode, keep screen where there is no " \
62                           "video displayed black")
63
64 #define FSPANEL_TEXT N_("Show Fullscreen controller")
65 #define FSPANEL_LONGTEXT N_("Shows a lucent controller when moving the mouse " \
66                             "in fullscreen mode.")
67
68 #define AUTOPLAY_OSX_TEST N_("Auto-playback of new items")
69 #define AUTOPLAY_OSX_LONGTEXT N_("Start playback of new items immediately " \
70                                  "once they were added.")
71
72 #define RECENT_ITEMS_TEXT N_("Keep Recent Items")
73 #define RECENT_ITEMS_LONGTEXT N_("By default, VLC keeps a list of the last 10 items. " \
74                                  "This feature can be disabled here.")
75
76 #define USE_APPLE_REMOTE_TEXT N_("Control playback with the Apple Remote")
77 #define USE_APPLE_REMOTE_LONGTEXT N_("By default, VLC can be remotely controlled with the Apple Remote.")
78
79 #define USE_APPLE_REMOTE_VOLUME_TEXT N_("Control system volume with the Apple Remote")
80 #define USE_APPLE_REMOTE_VOLUME_LONGTEXT N_("By default, VLC will control its own volume with the Apple Remote. However, you can choose to control the global system volume instead.")
81
82 #define USE_APPLE_REMOTE_PREVNEXT_TEXT N_("Control playlist items with the Apple Remote")
83 #define USE_APPLE_REMOTE_PREVNEXT_LONGTEXT N_("By default, VLC will allow you to switch to the next or previous item with the Apple Remote. You can disable this behavior with this option.")
84
85 #define USE_MEDIAKEYS_TEXT N_("Control playback with media keys")
86 #define USE_MEDIAKEYS_LONGTEXT N_("By default, VLC can be controlled using the media keys on modern Apple " \
87                                   "keyboards.")
88
89 #define INTERFACE_STYLE_TEXT N_("Run VLC with dark interface style")
90 #define INTERFACE_STYLE_LONGTEXT N_("If this option is enabled, VLC will use the dark interface style. Otherwise, the grey interface style is used.")
91
92 #define NATIVE_FULLSCREEN_MODE_ON_LION_TEXT N_("Use the native fullscreen mode")
93 #define NATIVE_FULLSCREEN_MODE_ON_LION_LONGTEXT N_("By default, VLC uses the fullscreen mode known from previous Mac OS X releases. It can also use the native fullscreen mode on Mac OS X 10.7 and later.")
94
95 #define KEEPSIZE_TEXT N_("Resize interface to the native video size")
96 #define KEEPSIZE_LONGTEXT N_("You have two choices:\n" \
97 " - The interface will resize to the native video size\n" \
98 " - The video will fit to the interface size\n " \
99 "By default, interface resize to the native video size.")
100
101 #define PAUSE_MINIMIZED_TEXT N_("Pause the video playback when minimized")
102 #define PAUSE_MINIMIZED_LONGTEXT N_(\
103 "With this option enabled, the playback will be automatically paused when minimizing the window.")
104
105 #define ICONCHANGE_TEXT N_("Allow automatic icon changes")
106 #define ICONCHANGE_LONGTEXT N_("This option allows the interface to change its icon on various occasions.")
107
108 #define LOCK_ASPECT_RATIO_TEXT N_("Lock Aspect Ratio")
109
110 #define JUMPBUTTONS_TEXT N_("Show Previous & Next Buttons")
111 #define JUMPBUTTONS_LONGTEXT N_("Shows the previous and next buttons in the main window.")
112
113 #define PLAYMODEBUTTONS_TEXT N_("Show Shuffle & Repeat Buttons")
114 #define PLAYMODEBUTTONS_LONGTEXT N_("Shows the shuffle and repeat buttons in the main window.")
115
116 #define EFFECTSBUTTON_TEXT N_("Show Audio Effects Button")
117 #define EFFECTSBUTTON_LONGTEXT N_("Shows the audio effects button in the main window.")
118
119 #define SIDEBAR_TEXT N_("Show Sidebar")
120 #define SIDEBAR_LONGTEXT N_("Shows a sidebar in the main window listing media sources.")
121
122 #define ITUNES_TEXT N_("Control external music players")
123 #define ITUNES_LONGTEXT N_("VLC will pause and resume supported music players on playback.")
124
125 #define LARGE_LISTFONT_TEXT N_("Use large text for list views")
126
127 static const int itunes_list[] =
128     { 0, 1, 2 };
129 static const char *const itunes_list_text[] = {
130     N_("Do nothing"), N_("Pause iTunes / Spotify"), N_("Pause and resume iTunes / Spotify")
131 };
132
133 #define CONTINUE_PLAYBACK_TEXT N_("Continue playback where you left off")
134 #define CONTINUE_PLAYBACK_LONGTEXT N_("VLC will store playback positions of the last 30 items you played. If you re-open one of those, playback will continue.")
135
136 static const int continue_playback_list[] =
137 { 0, 1, 2 };
138 static const char *const continue_playback_list_text[] = {
139     N_("Ask"), N_("Always"), N_("Never")
140 };
141
142 #define VOLUME_MAX_TEXT N_("Maximum Volume displayed")
143
144
145 vlc_module_begin()
146     set_description(N_("Mac OS X interface"))
147     set_capability("interface", 200)
148     set_callbacks(OpenIntf, NULL)
149     set_category(CAT_INTERFACE)
150     set_subcategory(SUBCAT_INTERFACE_MAIN)
151     cannot_unload_broken_library()
152
153     set_section(N_("Appearance"), 0)
154         add_bool("macosx-interfacestyle", false, INTERFACE_STYLE_TEXT, INTERFACE_STYLE_LONGTEXT, false)
155         add_bool("macosx-nativefullscreenmode", false, NATIVE_FULLSCREEN_MODE_ON_LION_TEXT, NATIVE_FULLSCREEN_MODE_ON_LION_LONGTEXT, false)
156         add_bool("macosx-icon-change", true, ICONCHANGE_TEXT, ICONCHANGE_LONGTEXT, true)
157         add_bool("macosx-show-playback-buttons", false, JUMPBUTTONS_TEXT, JUMPBUTTONS_LONGTEXT, false)
158         add_bool("macosx-show-playmode-buttons", false, PLAYMODEBUTTONS_TEXT, PLAYMODEBUTTONS_LONGTEXT, false)
159         add_bool("macosx-show-effects-button", false, EFFECTSBUTTON_TEXT, EFFECTSBUTTON_LONGTEXT, false)
160         add_bool("macosx-show-sidebar", true, SIDEBAR_TEXT, SIDEBAR_LONGTEXT, false)
161         add_integer_with_range("macosx-max-volume", 125, 60, 200, VOLUME_MAX_TEXT, VOLUME_MAX_TEXT, true)
162         add_bool("macosx-large-text", false, LARGE_LISTFONT_TEXT, LARGE_LISTFONT_TEXT, false)
163
164     set_section(N_("Behavior"), 0)
165         add_bool("macosx-autoplay", true, AUTOPLAY_OSX_TEST, AUTOPLAY_OSX_LONGTEXT, false)
166         add_bool("macosx-recentitems", true, RECENT_ITEMS_TEXT, RECENT_ITEMS_LONGTEXT, false)
167         add_bool("macosx-fspanel", true, FSPANEL_TEXT, FSPANEL_LONGTEXT, false)
168         add_bool("macosx-video-autoresize", true, KEEPSIZE_TEXT, KEEPSIZE_LONGTEXT, false)
169         add_bool("macosx-pause-minimized", false, PAUSE_MINIMIZED_TEXT, PAUSE_MINIMIZED_LONGTEXT, false)
170         add_bool("macosx-lock-aspect-ratio", true, LOCK_ASPECT_RATIO_TEXT, LOCK_ASPECT_RATIO_TEXT, true)
171         add_integer("macosx-control-itunes", 1, ITUNES_TEXT, ITUNES_LONGTEXT, false)
172         change_integer_list(itunes_list, itunes_list_text)
173         add_integer("macosx-continue-playback", 0, CONTINUE_PLAYBACK_TEXT, CONTINUE_PLAYBACK_LONGTEXT, false)
174         change_integer_list(continue_playback_list, continue_playback_list_text)
175
176     set_section(N_("Apple Remote and media keys"), 0)
177         add_bool("macosx-appleremote", true, USE_APPLE_REMOTE_TEXT, USE_APPLE_REMOTE_LONGTEXT, false)
178         add_bool("macosx-appleremote-sysvol", false, USE_APPLE_REMOTE_VOLUME_TEXT, USE_APPLE_REMOTE_VOLUME_LONGTEXT, false)
179         add_bool("macosx-appleremote-prevnext", false, USE_APPLE_REMOTE_PREVNEXT_TEXT, USE_APPLE_REMOTE_PREVNEXT_LONGTEXT, false)
180         add_bool("macosx-mediakeys", true, USE_MEDIAKEYS_TEXT, USE_MEDIAKEYS_LONGTEXT, false)
181
182     add_obsolete_bool("macosx-stretch") /* since 2.0.0 */
183     add_obsolete_bool("macosx-eq-keep") /* since 2.0.0 */
184     add_obsolete_bool("macosx-autosave-volume") /* since 2.1.0 */
185
186     add_submodule()
187         set_description("Mac OS X Video Output Provider")
188         set_capability("vout window", 100)
189         set_callbacks(WindowOpen, WindowClose)
190
191         set_section(N_("Video output"), 0)
192         add_integer("macosx-vdev", 0, VDEV_TEXT, VDEV_LONGTEXT, false)
193         add_float_with_range("macosx-opaqueness", 1, 0, 1, OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, true);
194         add_bool("macosx-black", false, BLACK_TEXT, BLACK_LONGTEXT, false)
195 vlc_module_end()
196