]> git.sesse.net Git - vlc/blob - src/libvlc.h
41c4125c2d1694afa34ca8472793b45e2d9969ff
[vlc] / src / libvlc.h
1 /*****************************************************************************
2  * libvlc.h: main libvlc header
3  *****************************************************************************
4  * Copyright (C) 1998-2002 VideoLAN
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          Gildas Bazin <gbazin@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 #define Nothing here, this is just to prevent update-po from being stupid
27 #include "vlc_keys.h"
28
29 static char *ppsz_language[] =
30 { "auto", "en", "en_GB", "es", "de",
31   "fr", "hu", "it", "ja", "nl", "no",
32   "pl", "pt_BR", "ru", "sv" };
33 static char *ppsz_language_text[] =
34 { N_("Auto"), N_("American"), N_("British"), N_("Spanish"), N_("German"),
35   N_("French"), N_("Hungarian"), N_("Italian"), N_("Japanese"), N_("Dutch"),
36   N_("Norwegian"), N_("Polish"), N_("Brazilian"), N_("Russian"),
37   N_("Swedish") };
38
39 static char *ppsz_snap_formats[] =
40 { "png", "jpg" };
41
42 /*****************************************************************************
43  * Configuration options for the main program. Each module will also separatly
44  * define its own configuration options.
45  * Look into configuration.h if you need to know more about the following
46  * macros.
47  *****************************************************************************/
48
49 #define INTF_CAT_LONGTEXT N_( \
50     "These options allow you to configure the interfaces used by VLC.\n" \
51     "You can select the main interface, additional " \
52     "interface modules, and define various related options." )
53
54 #define INTF_TEXT N_("Interface module")
55 #define INTF_LONGTEXT N_( \
56     "This option allows you to select the interface used by VLC.\n" \
57     "The default behavior is to automatically select the best module " \
58     "available.")
59
60 #define EXTRAINTF_TEXT N_("Extra interface modules")
61 #define EXTRAINTF_LONGTEXT N_( \
62     "This option allows you to select additional interfaces used by VLC. " \
63     "They will be launched in the background in addition to the default " \
64     "interface. Use a comma separated list of interface modules. (common " \
65     "values are logger, gestures, sap, rc, http or screensaver)")
66
67 #define CONTROL_TEXT N_("Control interfaces")
68 #define CONTROL_LONGTEXT N_( \
69     "This option allows you to select control interfaces. " )
70
71 #define VERBOSE_TEXT N_("Verbosity (0,1,2)")
72 #define VERBOSE_LONGTEXT N_( \
73     "This options sets the verbosity level (0=only errors and " \
74     "standard messages, 1=warnings, 2=debug).")
75
76 #define QUIET_TEXT N_("Be quiet")
77 #define QUIET_LONGTEXT N_( \
78     "This options turns off all warning and information messages.")
79
80 #define LANGUAGE_TEXT N_("Language")
81 #define LANGUAGE_LONGTEXT N_( "This option allows you to set the language " \
82     "of the interface. The system language is auto-detected if \"auto\" is " \
83     "specified here." )
84
85 #define COLOR_TEXT N_("Color messages")
86 #define COLOR_LONGTEXT N_( \
87     "When this option is turned on, the messages sent to the console will " \
88     "be colorized. Your terminal needs Linux color support for this to work.")
89
90 #define ADVANCED_TEXT N_("Show advanced options")
91 #define ADVANCED_LONGTEXT N_( \
92     "When this option is turned on, the preferences and/or interfaces  will " \
93     "show all the available options, including those that most users should " \
94     "never touch.")
95
96 #define AOUT_CAT_LONGTEXT N_( \
97     "These options allow you to modify the behavior of the audio " \
98     "subsystem, and to add audio filters which can be used for " \
99     "post processing or visual effects (spectrum analyzer, etc.).\n" \
100     "Enable these filters here, and configure them in the \"audio filters\" " \
101     "modules section.")
102
103 #define AOUT_TEXT N_("Audio output module")
104 #define AOUT_LONGTEXT N_( \
105     "This option allows you to select the audio output method used by VLC. " \
106     "The default behavior is to automatically select the best method " \
107     "available.")
108
109 #define AUDIO_TEXT N_("Enable audio")
110 #define AUDIO_LONGTEXT N_( \
111     "You can completely disable the audio output. In this case, the audio " \
112     "decoding stage will not take place, thus saving some processing power.")
113
114 #define MONO_TEXT N_("Force mono audio")
115 #define MONO_LONGTEXT N_("This will force a mono audio output.")
116
117 #define VOLUME_TEXT N_("Audio output volume")
118 #define VOLUME_LONGTEXT N_( \
119     "You can set the default audio output volume here, in a range from 0 to " \
120     "1024.")
121
122 #define VOLUME_SAVE_TEXT N_("Audio output saved volume")
123 #define VOLUME_SAVE_LONGTEXT N_( \
124     "This saves the audio output volume when you select mute.")
125
126 #define AOUT_RATE_TEXT N_("Audio output frequency (Hz)")
127 #define AOUT_RATE_LONGTEXT N_( \
128     "You can force the audio output frequency here. Common values are " \
129     "-1 (default), 48000, 44100, 32000, 22050, 16000, 11025, 8000.")
130
131 #if !defined( SYS_DARWIN )
132 #define AOUT_RESAMP_TEXT N_("High quality audio resampling")
133 #define AOUT_RESAMP_LONGTEXT N_( \
134     "This uses a high quality audio resampling algorithm. High quality "\
135     "audio resampling can be processor intensive so you can " \
136     "disable it and a cheaper resampling algorithm will be used instead.")
137 #endif
138
139 #define DESYNC_TEXT N_("Audio desynchronization compensation")
140 #define DESYNC_LONGTEXT N_( \
141     "This option allows you to delay the audio output. You must give a " \
142     "number of milliseconds. This can be handy if you notice a lag " \
143     "between the video and the audio.")
144
145 #define MULTICHA_TEXT N_("Preferred audio output channels mode")
146 #define MULTICHA_LONGTEXT N_( \
147     "This option allows you to set the audio output channels mode that will " \
148     "be used by default when possible (ie. if your hardware supports it as " \
149     "well as the audio stream being played).")
150
151 #define SPDIF_TEXT N_("Use the S/PDIF audio output when available")
152 #define SPDIF_LONGTEXT N_( \
153     "This option allows you to use the S/PDIF audio output by default when " \
154     "your hardware supports it as well as the audio stream being played.")
155
156 #define AUDIO_FILTER_TEXT N_("Audio filters")
157 #define AUDIO_FILTER_LONGTEXT N_( \
158     "This allows you to add audio post processing filters, to modify " \
159     "the sound" )
160
161 #define AUDIO_VISUAL_TEXT N_("Audio visualizations ")
162 #define AUDIO_VISUAL_LONGTEXT N_( \
163     "This allows you to add visualization modules " \
164     "(spectrum analyzer, etc.).")
165
166 #define AUDIO_CHANNEL_MIXER N_("Channel mixer")
167 #define AUDIO_CHANNEL_MIXER_LONGTEXT N_( \
168      "This allows you to choose a specific audio channel mixer. For " \
169      "instance, you can use the \"headphone\" mixer that gives 5.1 feeling " \
170      "with a headphone.")
171
172 #define VOUT_CAT_LONGTEXT N_( \
173     "These options allow you to modify the behavior of the video output " \
174     "subsystem. You can for example enable video filters (deinterlacing, " \
175     "image adjusting, etc.). Enable these filters here and configure " \
176     "them in the \"video filters\" modules section. You can also set many " \
177     "miscellaneous video options." )
178
179 #define VOUT_TEXT N_("Video output module")
180 #define VOUT_LONGTEXT N_( \
181     "This option allows you to select the video output method used by VLC. " \
182     "The default behavior is to automatically select the best " \
183     "method available.")
184
185 #define VIDEO_TEXT N_("Enable video")
186 #define VIDEO_LONGTEXT N_( \
187     "You can completely disable the video output. In this case, the video " \
188     "decoding stage will not take place, thus saving some processing power.")
189
190 #define WIDTH_TEXT N_("Video width")
191 #define WIDTH_LONGTEXT N_( \
192     "You can enforce the video width here. By default (-1) VLC will " \
193     "adapt to the video characteristics.")
194
195 #define HEIGHT_TEXT N_("Video height")
196 #define HEIGHT_LONGTEXT N_( \
197     "You can enforce the video height here. By default (-1) VLC will " \
198     "adapt to the video characteristics.")
199
200 #define VIDEOX_TEXT N_("Video x coordinate")
201 #define VIDEOX_LONGTEXT N_( \
202     "You can enforce the position of the top left corner of the video window "\
203     "here (x coordinate).")
204
205 #define VIDEOY_TEXT N_("Video y coordinate")
206 #define VIDEOY_LONGTEXT N_( \
207     "You can enforce the position of the top left corner of the video window "\
208     "here (y coordinate).")
209
210 #define VIDEO_TITLE_TEXT N_("Video title")
211 #define VIDEO_TITLE_LONGTEXT N_( \
212     "You can specify a custom video window title here.")
213
214 #define ALIGN_TEXT N_("Video alignment")
215 #define ALIGN_LONGTEXT N_( \
216     "You can enforce the video alignment in its window. By default (0) it " \
217     "will be centered (0=center, 1=left, 2=right, 4=top, 8=bottom, you can " \
218     "also use combinations of these values).")
219 static int pi_align_values[] = { 0, 1, 2, 4, 8, 5, 6, 9, 10 };
220 static char *ppsz_align_descriptions[] =
221 { N_("Center"), N_("Left"), N_("Right"), N_("Top"), N_("Bottom"),
222   N_("Top-Left"), N_("Top-Right"), N_("Bottom-Left"), N_("Bottom-Right") };
223
224 #define ZOOM_TEXT N_("Zoom video")
225 #define ZOOM_LONGTEXT N_( \
226     "You can zoom the video by the specified factor.")
227
228 #define GRAYSCALE_TEXT N_("Grayscale video output")
229 #define GRAYSCALE_LONGTEXT N_( \
230     "When enabled, the color information from the video won't be decoded " \
231     "(this can also allow you to save some processing power).")
232
233 #define FULLSCREEN_TEXT N_("Fullscreen video output")
234 #define FULLSCREEN_LONGTEXT N_( \
235     "If this option is enabled, VLC will always start a video in fullscreen " \
236     "mode.")
237
238 #define OVERLAY_TEXT N_("Overlay video output")
239 #define OVERLAY_LONGTEXT N_( \
240     "If enabled, VLC will try to take advantage of the overlay capabilities " \
241     "of your graphics card (hardware acceleration).")
242
243 #define VIDEO_ON_TOP_TEXT N_("Always on top")
244 #define VIDEO_ON_TOP_LONGTEXT N_("Always place the video window on top of " \
245     "other windows." )
246
247 #define VIDEO_DECO_TEXT N_("Window decorations")
248 #define VIDEO_DECO_LONGTEXT N_( \
249     "If this option is disabled, VLC will avoid creating window caption, " \
250     "frames, etc... around the video. Currently only supported on Windows.")
251
252 #define FILTER_TEXT N_("Video filter module")
253 #define FILTER_LONGTEXT N_( \
254     "This will allow you to add a post-processing filter to enhance the " \
255     "picture quality, for instance deinterlacing, or to clone or distort " \
256     "the video window.")
257
258 #define SNAP_PATH_TEXT N_("Video snapshot directory")
259 #define SNAP_PATH_LONGTEXT N_( \
260     "Allows you to specify the directory where the video snapshots will " \
261     "be stored.")
262
263 #define SNAP_FORMAT_TEXT N_("Video snapshot format")
264 #define SNAP_FORMAT_LONGTEXT N_( \
265     "Allows you to specify the image format in which the video snapshots will " \
266     "be stored.")
267
268 #define ASPECT_RATIO_TEXT N_("Source aspect ratio")
269 #define ASPECT_RATIO_LONGTEXT N_( \
270     "This will force the source aspect ratio. For instance, some DVDs claim " \
271     "to be 16:9 while they are actually 4:3. This can also be used as a " \
272     "hint for VLC when a movie does not have aspect ratio information. " \
273     "Accepted formats are x:y (4:3, 16:9, etc.) expressing the global image " \
274     "aspect, or a float value (1.25, 1.3333, etc.) expressing pixel " \
275     "squareness.")
276
277 #define SKIP_FRAMES_TEXT N_("Skip frames")
278 #define SKIP_FRAMES_LONGTEXT N_( \
279     "Disable this option to disable frame drops on MPEG-2 streams.")
280
281 #define INPUT_CAT_LONGTEXT N_( \
282     "These options allow you to modify the behavior of the input " \
283     "subsystem, such as the DVD or VCD device, the network interface " \
284     "settings or the subtitle channel.")
285
286 #define CR_AVERAGE_TEXT N_("Clock reference average counter")
287 #define CR_AVERAGE_LONGTEXT N_( \
288     "When using the PVR input (or a very irregular source), you should " \
289     "set this to 10000.")
290
291 #define SERVER_PORT_TEXT N_("UDP port")
292 #define SERVER_PORT_LONGTEXT N_( \
293     "This is the port used for UDP streams. By default, we chose 1234.")
294
295 #define MTU_TEXT N_("MTU of the network interface")
296 #define MTU_LONGTEXT N_( \
297     "This is the typical size of UDP packets that we expect. On Ethernet " \
298     "it is usually 1500.")
299
300 #define IFACE_ADDR_TEXT N_("Network interface address")
301 #define IFACE_ADDR_LONGTEXT N_( \
302     "If you have several interfaces on your machine and use the " \
303     "multicast solution, you will probably have to indicate the IP address " \
304     "of your multicasting interface here.")
305
306 #define TTL_TEXT N_("Time to live")
307 #define TTL_LONGTEXT N_( \
308     "Indicate here the Time To Live of the multicast packets sent by " \
309     "the stream output.")
310
311 #define INPUT_PROGRAM_TEXT N_("Choose program (SID)")
312 #define INPUT_PROGRAM_LONGTEXT N_( \
313     "Choose the program to select by giving its Service ID\n." \
314     "Only use this option if you want to read a multi-program stream " \
315     "(like DVB streams for example )" )
316
317 #define INPUT_PROGRAMS_TEXT N_("Choose programs")
318 #define INPUT_PROGRAMS_LONGTEXT N_( \
319     "Choose the programs to select by giving a comma-separated list of " \
320     "SIDs\n." \
321     "Only use this option if you want to read a multi-program stream " \
322     "(like DVB streams for example )" )
323
324 #define INPUT_CHAN_TEXT N_("Choose audio channel")
325 #define INPUT_CHAN_LONGTEXT N_( \
326     "Give the stream number of the audio channel you want to use" \
327     "(from 0 to n).")
328
329 #define INPUT_SUB_TEXT N_("Choose subtitles track")
330 #define INPUT_CHAN_LANG_TEXT N_("Choose audio language")
331 #define INPUT_CHAN_LANG_LONGTEXT N_( \
332     "Give the language of the audio channel you want to use " \
333     "(comma separted, two or tree letter country code).")
334 #define INPUT_SUB_LANG_TEXT N_("Choose subtitle track")
335 #define INPUT_SUB_LANG_LONGTEXT N_( \
336     "Give the language of the subtitle channel you want to use " \
337     "(comma separted, two or tree letter country code).")
338
339
340 #define INPUT_SUB_LONGTEXT N_( \
341     "Give the stream number of the subtitle channel you want to use " \
342     "(from 0 to n).")
343
344 #define INPUT_REPEAT_TEXT N_("Input repetitions")
345 #define INPUT_REPEAT_LONGTEXT N_("Number of time the same input will be " \
346                                  "repeated")
347
348 #define START_TIME_TEXT N_("Input start time (seconds)")
349 #define START_TIME_LONGTEXT N_("Input start time (seconds)")
350
351 #define STOP_TIME_TEXT N_("Input stop time (seconds)")
352 #define STOP_TIME_LONGTEXT N_("Input stop time (seconds)")
353
354 #define INPUT_LIST_TEXT N_("Input list")
355 #define INPUT_LIST_LONGTEXT N_("Allows you to specify a comma-separated list " \
356     "of inputs that will be concatenated.")
357
358 #define INPUT_SLAVE_TEXT N_("Input slave (experimental)")
359 #define INPUT_SLAVE_LONGTEXT N_("Allows you to play from several files at " \
360     "the same time. Experimental, not all formats are supported.")
361
362 #define BOOKMARKS_TEXT N_("Bookmarks list for a stream")
363 #define BOOKMARKS_LONGTEXT N_("You can specify a list of bookmarks for a stream in " \
364     "the form \"{name=bookmark-name,time=optional-time-offset," \
365     "bytes=optional-byte-offset},{...}\"")
366
367 #define SUB_CAT_LONGTEXT N_( \
368     "These options allow you to modify the behavior of the subpictures " \
369     "subsystem. You can for example enable subpictures filters (logo, etc.). " \
370     "Enable these filters here and configure them in the " \
371     "\"subpictures filters\" modules section. You can also set many " \
372     "miscellaneous subpictures options." )
373
374 #define SPUMARGIN_TEXT N_("Force SPU position")
375 #define SPUMARGIN_LONGTEXT N_( \
376     "You can use this option to place the subtitles under the movie, " \
377     "instead of over the movie. Try several positions.")
378
379 #define OSD_TEXT N_("On Screen Display")
380 #define OSD_LONGTEXT N_( \
381     "VLC can display messages on the video. This is called OSD (On Screen " \
382     "Display). You can disable this feature here.")
383
384 #define SUB_FILTER_TEXT N_("Subpictures filter module")
385 #define SUB_FILTER_LONGTEXT N_( \
386     "This will allow you to add a subpictures filter for instance to overlay "\
387     "a logo.")
388
389 #define SUB_AUTO_TEXT N_("Autodetect subtitle files")
390 #define SUB_AUTO_LONGTEXT \
391     N_("Automatically detect a subtitle file, if no subtitle filename is " \
392     "specified.")
393
394 #define SUB_FUZZY_TEXT N_("Subtitle autodetection fuzziness")
395 #define SUB_FUZZY_LONGTEXT \
396     N_("This determines how fuzzy subtitle and movie filename matching " \
397     "will be. Options are:\n" \
398     "0 = no subtitles autodetected\n" \
399     "1 = any subtitle file\n" \
400     "2 = any subtitle file containing the movie name\n" \
401     "3 = subtitle file matching the movie name with additional chars\n" \
402     "4 = subtitle file matching the movie name exactly")
403
404 #define SUB_PATH_TEXT N_("Subtitle autodetection paths")
405 #define SUB_PATH_LONGTEXT \
406     N_("Look for a subtitle file in those paths too, if your subtitle " \
407     "file was not found in the current directory.")
408
409 #define SUB_FILE_TEXT N_("Use subtitle file")
410 #define SUB_FILE_LONGTEXT \
411     N_("Load this subtitle file. To be used when autodetect cannot detect " \
412     "your subtitle file.")
413
414 #define DVD_DEV_TEXT N_("DVD device")
415 #ifdef WIN32
416 #define DVD_DEV_LONGTEXT N_( \
417     "This is the default DVD drive (or file) to use. Don't forget the colon " \
418     "after the drive letter (eg. D:)")
419 #else
420 #define DVD_DEV_LONGTEXT N_( \
421     "This is the default DVD device to use.")
422 #endif
423
424 #define VCD_DEV_TEXT N_("VCD device")
425 #ifdef HAVE_VCDX
426 #define VCD_DEV_LONGTEXT N_( \
427     "This is the default VCD device to use. " \
428     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
429 #else
430 #define VCD_DEV_LONGTEXT N_( \
431     "This is the default VCD device to use." )
432 #endif
433
434 #define CDAUDIO_DEV_TEXT N_("Audio CD device")
435 #ifdef HAVE_CDDAX
436 #define CDAUDIO_DEV_LONGTEXT N_( \
437     "This is the default Audio CD device to use. " \
438     "If you don't specify anything, we'll scan for a suitable CD-ROM device." )
439 #else
440 #define CDAUDIO_DEV_LONGTEXT N_( \
441     "This is the default Audio CD device to use." )
442 #endif
443
444 #define IPV6_TEXT N_("Force IPv6")
445 #define IPV6_LONGTEXT N_( \
446     "If you check this box, IPv6 will be used by default for all UDP and " \
447     "HTTP connections.")
448
449 #define IPV4_TEXT N_("Force IPv4")
450 #define IPV4_LONGTEXT N_( \
451     "If you check this box, IPv4 will be used by default for all UDP and " \
452     "HTTP connections.")
453
454 #define SOCKS_SERVER_TEXT N_("SOCKS server")
455 #define SOCKS_SERVER_LONGTEXT N_( \
456     "Allow you to specify a SOCKS server to use. It must be of the form " \
457     "address:port . It will be used for all TCP connections" )
458
459 #define SOCKS_USER_TEXT N_("SOCKS user name")
460 #define SOCKS_USER_LONGTEXT N_("Allows you to modify the user name that will " \
461     "be used for the connection to the SOCKS server.")
462
463 #define SOCKS_PASS_TEXT N_("SOCKS password")
464 #define SOCKS_PASS_LONGTEXT N_("Allows you to modify the password that will " \
465     "be used for the connection to the SOCKS server.")
466
467
468
469
470 #define META_TITLE_TEXT N_("Title metadata")
471 #define META_TITLE_LONGTEXT N_( \
472      "Allows you to specify a \"title\" metadata for an input.")
473
474 #define META_AUTHOR_TEXT N_("Author metadata")
475 #define META_AUTHOR_LONGTEXT N_( \
476      "Allows you to specify an \"author\" metadata for an input.")
477
478 #define META_ARTIST_TEXT N_("Artist metadata")
479 #define META_ARTIST_LONGTEXT N_( \
480      "Allows you to specify an \"artist\" metadata for an input.")
481
482 #define META_GENRE_TEXT N_("Genre metadata")
483 #define META_GENRE_LONGTEXT N_( \
484      "Allows you to specify a \"genre\" metadata for an input.")
485
486 #define META_CPYR_TEXT N_("Copyright metadata")
487 #define META_CPYR_LONGTEXT N_( \
488      "Allows you to specify a \"copyright\" metadata for an input.")
489
490 #define META_DESCR_TEXT N_("Description metadata")
491 #define META_DESCR_LONGTEXT N_( \
492      "Allows you to specify a \"description\" metadata for an input.")
493
494 #define META_DATE_TEXT N_("Date metadata")
495 #define META_DATE_LONGTEXT N_( \
496      "Allows you to specify a \"date\" metadata for an input.")
497
498 #define META_URL_TEXT N_("URL metadata")
499 #define META_URL_LONGTEXT N_( \
500      "Allows you to specify a \"url\" metadata for an input.")
501
502 #define CODEC_CAT_LONGTEXT N_( \
503     "This option can be used to alter the way VLC selects " \
504     "its codecs (decompression methods). Only advanced users should " \
505     "alter this option as it can break playback of all your streams." )
506
507 #define CODEC_TEXT N_("Preferred codecs list")
508 #define CODEC_LONGTEXT N_( \
509     "This allows you to select a list of codecs that VLC will use in " \
510     "priority. For instance, 'dummy,a52' will try the dummy and a52 codecs " \
511     "before trying the other ones.")
512
513 #define ENCODER_TEXT N_("Preferred encoders list")
514 #define ENCODER_LONGTEXT N_( \
515     "This allows you to select a list of encoders that VLC will use in " \
516     "priority")
517
518 #define SOUT_CAT_LONGTEXT N_( \
519     "These options allow you to set default global options for the " \
520     "stream output subsystem." )
521
522 #define SOUT_TEXT N_("Choose a stream output")
523 #define SOUT_LONGTEXT N_( \
524     "Empty if no stream output.")
525
526 #define SOUT_ALL_TEXT N_("Enable streaming of all ES")
527 #define SOUT_ALL_LONGTEXT N_( \
528     "This allows you to stream all ES (video, audio and subtitles)")
529
530 #define SOUT_DISPLAY_TEXT N_("Display while streaming")
531 #define SOUT_DISPLAY_LONGTEXT N_( \
532     "This allows you to play the stream while streaming it.")
533
534 #define SOUT_VIDEO_TEXT N_("Enable video stream output")
535 #define SOUT_VIDEO_LONGTEXT N_( \
536     "This allows you to choose if the video stream should be redirected to " \
537     "the stream output facility when this last one is enabled.")
538
539 #define SOUT_AUDIO_TEXT N_("Enable audio stream output")
540 #define SOUT_AUDIO_LONGTEXT N_( \
541     "This allows you to choose if the video stream should be redirected to " \
542     "the stream output facility when this last one is enabled.")
543
544 #define SOUT_KEEP_TEXT N_("Keep stream output open" )
545 #define SOUT_KEEP_LONGTEXT N_( \
546     "This allows you to keep an unique stream output instance across " \
547     "multiple playlist item (automatically insert the gather stream output " \
548     "if not specified)" )
549
550 #define PACKETIZER_TEXT N_("Preferred packetizer list")
551 #define PACKETIZER_LONGTEXT N_( \
552     "This allows you to select the order in which VLC will choose its " \
553     "packetizers."  )
554
555 #define MUX_TEXT N_("Mux module")
556 #define MUX_LONGTEXT N_( \
557     "This is a legacy entry to let you configure mux modules")
558
559 #define ACCESS_OUTPUT_TEXT N_("Access output module")
560 #define ACCESS_OUTPUT_LONGTEXT N_( \
561     "This is a legacy entry to let you configure access output modules")
562
563 #define ANN_SAPCTRL_TEXT N_("Control SAP flow")
564 #define ANN_SAPCTRL_LONGTEXT N_("If this option is enabled, the flow on " \
565     "the SAP multicast address will be controlled. This is needed if you " \
566     "want to make announcements on the MBone" )
567
568 #define ANN_SAPINTV_TEXT N_("SAP announcement interval")
569 #define ANN_SAPINTV_LONGTEXT N_("When the SAP flow control is disabled, " \
570     "this lets you set the fixed interval between SAP announcements" )
571
572 #define CPU_CAT_LONGTEXT N_( \
573     "These options allow you to enable special CPU optimizations.\n" \
574     "You should always leave all these enabled." )
575
576 #define MMX_TEXT N_("Enable CPU MMX support")
577 #define MMX_LONGTEXT N_( \
578     "If your processor supports the MMX instructions set, VLC can take " \
579     "advantage of them.")
580
581 #define THREE_DN_TEXT N_("Enable CPU 3D Now! support")
582 #define THREE_DN_LONGTEXT N_( \
583     "If your processor supports the 3D Now! instructions set, VLC can take " \
584     "advantage of them.")
585
586 #define MMXEXT_TEXT N_("Enable CPU MMX EXT support")
587 #define MMXEXT_LONGTEXT N_( \
588     "If your processor supports the MMX EXT instructions set, VLC can take " \
589     "advantage of them.")
590
591 #define SSE_TEXT N_("Enable CPU SSE support")
592 #define SSE_LONGTEXT N_( \
593     "If your processor supports the SSE instructions set, VLC can take " \
594     "advantage of them.")
595
596 #define SSE2_TEXT N_("Enable CPU SSE2 support")
597 #define SSE2_LONGTEXT N_( \
598     "If your processor supports the SSE2 instructions set, VLC can take " \
599     "advantage of them.")
600
601 #define ALTIVEC_TEXT N_("Enable CPU AltiVec support")
602 #define ALTIVEC_LONGTEXT N_( \
603     "If your processor supports the AltiVec instructions set, VLC can take " \
604     "advantage of them.")
605
606 #define PLAYLIST_CAT_LONGTEXT N_( \
607      "These options define the behavior of the playlist. Some " \
608      "of them can be overridden in the playlist dialog box." )
609
610 #define SD_TEXT N_( "Services discovery modules")
611 #define SD_LONGTEXT N_( \
612      "Specifies the services discovery modules to load, separated by commas." \
613      "Typical values are sap, hal, ..." )
614
615 #define RANDOM_TEXT N_("Play files randomly forever")
616 #define RANDOM_LONGTEXT N_( \
617     "When selected, VLC will randomly play files in the playlist until " \
618     "interrupted.")
619
620 #define LOOP_TEXT N_("Loop playlist on end")
621 #define LOOP_LONGTEXT N_( \
622     "If you want VLC to keep playing the playlist indefinitely then enable " \
623     "this option.")
624
625 #define REPEAT_TEXT N_("Repeat the current item")
626 #define REPEAT_LONGTEXT N_( \
627     "When this is active, VLC will keep playing the current playlist item " \
628     "over and over again.")
629
630 #define PAS_TEXT N_("Play and stop")
631 #define PAS_LONGTEXT N_( \
632     "Stop the playlist after each played playlist item. " \
633     "Does advance the playlist index.")
634
635 #define MISC_CAT_LONGTEXT N_( \
636     "These options allow you to select default modules. Leave these " \
637     "alone unless you really know what you are doing." )
638
639 #define MEMCPY_TEXT N_("Memory copy module")
640 #define MEMCPY_LONGTEXT N_( \
641     "You can select which memory copy module you want to use. By default " \
642     "VLC will select the fastest one supported by your hardware.")
643
644 #define ACCESS_TEXT N_("Access module")
645 #define ACCESS_LONGTEXT N_( \
646     "This is a legacy entry to let you configure access modules.")
647
648 #define DEMUX_TEXT N_("Demux module")
649 #define DEMUX_LONGTEXT N_( \
650     "This is a legacy entry to let you configure demux modules.")
651
652 #define RT_PRIORITY_TEXT N_("Allow real-time priority")
653 #define RT_PRIORITY_LONGTEXT N_( \
654     "Running VLC in real-time priority will allow for much more precise " \
655     "scheduling and yield better, especially when streaming content. " \
656     "It can however lock up your whole machine, or make it very very " \
657     "slow. You should only activate this if you know what you're " \
658     "doing.")
659
660 #define RT_OFFSET_TEXT N_("Adjust VLC priority")
661 #define RT_OFFSET_LONGTEXT N_( \
662     "This option adds an offset (positive or negative) to VLC default " \
663     "priorities. You can use it to tune VLC priority against other " \
664     "programs, or against other VLC instances.")
665
666 #define MINIMIZE_THREADS_TEXT N_("Minimize number of threads")
667 #define MINIMIZE_THREADS_LONGTEXT N_( \
668      "This option minimizes the number of threads needed to run VLC")
669
670 #define PLUGIN_PATH_TEXT N_("Modules search path")
671 #define PLUGIN_PATH_LONGTEXT N_( \
672     "This option allows you to specify an additional path for VLC to look " \
673     "for its modules.")
674
675 #define VLM_CONF_TEXT N_("VLM configuration file")
676 #define VLM_CONF_LONGTEXT N_( \
677     "This option allows you to specify a VLM configuration file that will " \
678     "be read when VLM is launched.")
679
680 #define PLUGINS_CACHE_TEXT N_("Use a plugins cache")
681 #define PLUGINS_CACHE_LONGTEXT N_( \
682     "This option allows you to use a plugins cache which will greatly " \
683     "improve the start time of VLC.")
684
685 #define DAEMON_TEXT N_("Run as daemon process")
686 #define DAEMON_LONGTEXT N_( \
687      "Runs VLC as a background daemon process.")
688
689 #define ONEINSTANCE_TEXT N_("Allow only one running instance")
690 #define ONEINSTANCE_LONGTEXT N_( \
691     "Allowing only one running instance of VLC can sometimes be useful, " \
692     "for instance if you associated VLC with some media types and you " \
693     "don't want a new instance of VLC to be opened each time you " \
694     "double-click on a file in the explorer. This option will allow you " \
695     "to play the file with the already running instance or enqueue it.")
696
697 #define HPRIORITY_TEXT N_("Increase the priority of the process")
698 #define HPRIORITY_LONGTEXT N_( \
699     "Increasing the priority of the process will very likely improve your " \
700     "playing experience as it allows VLC not to be disturbed by other " \
701     "applications that could otherwise take too much processor time.\n" \
702     "However be advised that in certain circumstances (bugs) VLC could take " \
703     "all the processor time and render the whole system unresponsive which " \
704     "might require a reboot of your machine.")
705
706 #define FAST_MUTEX_TEXT N_("Fast mutex on NT/2K/XP (developers only)")
707 #define FAST_MUTEX_LONGTEXT N_( \
708     "On Windows NT/2K/XP we use a slow mutex implementation but which " \
709     "allows us to correctly implement condition variables. " \
710     "You can also use the faster Win9x implementation but you might " \
711     "experience problems with it.")
712
713 #define WIN9X_CV_TEXT N_("Condition variables implementation for Win9x " \
714     "(developers only)")
715 #define WIN9X_CV_LONGTEXT N_( \
716     "On Windows 9x/Me you can use a fast but incorrect condition variables " \
717     "implementation (more precisely there is a possibility for a race " \
718     "condition to happen). " \
719     "However it is possible to use slower alternatives which are more " \
720     "robust. " \
721     "Currently you can choose between implementation 0 (which is the " \
722     "fastest but slightly incorrect), 1 (default) and 2.")
723
724 #define HOTKEY_CAT_LONGTEXT N_( "These settings are the global VLC key " \
725     "bindings, known as \"hotkeys\"." )
726
727 #define FULLSCREEN_KEY_TEXT N_("Fullscreen")
728 #define FULLSCREEN_KEY_LONGTEXT N_("Select the hotkey to use to swap fullscreen state.")
729 #define PLAY_PAUSE_KEY_TEXT N_("Play/Pause")
730 #define PLAY_PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to swap paused state.")
731 #define PAUSE_KEY_TEXT N_("Pause only")
732 #define PAUSE_KEY_LONGTEXT N_("Select the hotkey to use to pause.")
733 #define PLAY_KEY_TEXT N_("Play only")
734 #define PLAY_KEY_LONGTEXT N_("Select the hotkey to use to play.")
735 #define FASTER_KEY_TEXT N_("Faster")
736 #define FASTER_KEY_LONGTEXT N_("Select the hotkey to use for fast forward playback.")
737 #define SLOWER_KEY_TEXT N_("Slower")
738 #define SLOWER_KEY_LONGTEXT N_("Select the hotkey to use for slow motion playback.")
739 #define NEXT_KEY_TEXT N_("Next")
740 #define NEXT_KEY_LONGTEXT N_("Select the hotkey to use to skip to the next item in the playlist.")
741 #define PREV_KEY_TEXT N_("Previous")
742 #define PREV_KEY_LONGTEXT N_("Select the hotkey to use to skip to the previous item in the playlist.")
743 #define STOP_KEY_TEXT N_("Stop")
744 #define STOP_KEY_LONGTEXT N_("Select the hotkey to stop the playback.")
745 #define POSITION_KEY_TEXT N_("Position")
746 #define POSITION_KEY_LONGTEXT N_("Select the hotkey to display the position.")
747
748 #define JB10SEC_KEY_TEXT N_("Jump 10 seconds backwards")
749 #define JB10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds backwards.")
750
751 #define JB1MIN_KEY_TEXT N_("Jump 1 minute backwards")
752 #define JB1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute backwards.")
753 #define JB5MIN_KEY_TEXT N_("Jump 5 minutes backwards")
754 #define JB5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes backwards.")
755 #define JF10SEC_KEY_TEXT N_("Jump 10 seconds forward")
756 #define JF10SEC_KEY_LONGTEXT N_("Select the hotkey to jump 10 seconds forward.")
757
758 #define JF1MIN_KEY_TEXT N_("Jump 1 minute forward")
759 #define JF1MIN_KEY_LONGTEXT N_("Select the hotkey to jump 1 minute forward.")
760
761 #define JF5MIN_KEY_TEXT N_("Jump 5 minutes forward")
762 #define JF5MIN_KEY_LONGTEXT N_("Select the hotkey to jump 5 minutes forward.")
763
764 #define QUIT_KEY_TEXT N_("Quit")
765 #define QUIT_KEY_LONGTEXT N_("Select the hotkey to quit the application.")
766 #define NAV_UP_KEY_TEXT N_("Navigate up")
767 #define NAV_UP_KEY_LONGTEXT N_("Select the key to move the selector up in DVD menus.")
768 #define NAV_DOWN_KEY_TEXT N_("Navigate down")
769 #define NAV_DOWN_KEY_LONGTEXT N_("Select the key to move the selector down in DVD menus.")
770 #define NAV_LEFT_KEY_TEXT N_("Navigate left")
771 #define NAV_LEFT_KEY_LONGTEXT N_("Select the key to move the selector left in DVD menus.")
772 #define NAV_RIGHT_KEY_TEXT N_("Navigate right")
773 #define NAV_RIGHT_KEY_LONGTEXT N_("Select the key to move the selector right in DVD menus.")
774 #define NAV_ACTIVATE_KEY_TEXT N_("Activate")
775 #define NAV_ACTIVATE_KEY_LONGTEXT N_("Select the key to activate selected item in DVD menus.")
776 #define VOL_UP_KEY_TEXT N_("Volume up")
777 #define VOL_UP_KEY_LONGTEXT N_("Select the key to increase audio volume.")
778 #define VOL_DOWN_KEY_TEXT N_("Volume down")
779 #define VOL_DOWN_KEY_LONGTEXT N_("Select the key to decrease audio volume.")
780 #define VOL_MUTE_KEY_TEXT N_("Mute")
781 #define VOL_MUTE_KEY_LONGTEXT N_("Select the key to turn off audio volume.")
782 #define SUBDELAY_UP_KEY_TEXT N_("Subtitle delay up")
783 #define SUBDELAY_UP_KEY_LONGTEXT N_("Select the key to increase the subtitle delay.")
784 #define SUBDELAY_DOWN_KEY_TEXT N_("Subtitle delay down")
785 #define SUBDELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the subtitle delay.")
786 #define AUDIODELAY_UP_KEY_TEXT N_("Audio delay up")
787 #define AUDIODELAY_UP_KEY_LONGTEXT N_("Select the key to increase the audio delay.")
788 #define AUDIODELAY_DOWN_KEY_TEXT N_("Audio delay down")
789 #define AUDIODELAY_DOWN_KEY_LONGTEXT N_("Select the key to decrease the audio delay.")
790 #define PLAY_BOOKMARK1_KEY_TEXT N_("Play playlist bookmark 1")
791 #define PLAY_BOOKMARK2_KEY_TEXT N_("Play playlist bookmark 2")
792 #define PLAY_BOOKMARK3_KEY_TEXT N_("Play playlist bookmark 3")
793 #define PLAY_BOOKMARK4_KEY_TEXT N_("Play playlist bookmark 4")
794 #define PLAY_BOOKMARK5_KEY_TEXT N_("Play playlist bookmark 5")
795 #define PLAY_BOOKMARK6_KEY_TEXT N_("Play playlist bookmark 6")
796 #define PLAY_BOOKMARK7_KEY_TEXT N_("Play playlist bookmark 7")
797 #define PLAY_BOOKMARK8_KEY_TEXT N_("Play playlist bookmark 8")
798 #define PLAY_BOOKMARK9_KEY_TEXT N_("Play playlist bookmark 9")
799 #define PLAY_BOOKMARK10_KEY_TEXT N_("Play playlist bookmark 10")
800 #define PLAY_BOOKMARK_KEY_LONGTEXT N_("Select the key to play this bookmark.")
801 #define SET_BOOKMARK1_KEY_TEXT N_("Set playlist bookmark 1")
802 #define SET_BOOKMARK2_KEY_TEXT N_("Set playlist bookmark 2")
803 #define SET_BOOKMARK3_KEY_TEXT N_("Set playlist bookmark 3")
804 #define SET_BOOKMARK4_KEY_TEXT N_("Set playlist bookmark 4")
805 #define SET_BOOKMARK5_KEY_TEXT N_("Set playlist bookmark 5")
806 #define SET_BOOKMARK6_KEY_TEXT N_("Set playlist bookmark 6")
807 #define SET_BOOKMARK7_KEY_TEXT N_("Set playlist bookmark 7")
808 #define SET_BOOKMARK8_KEY_TEXT N_("Set playlist bookmark 8")
809 #define SET_BOOKMARK9_KEY_TEXT N_("Set playlist bookmark 9")
810 #define SET_BOOKMARK10_KEY_TEXT N_("Set playlist bookmark 10")
811 #define SET_BOOKMARK_KEY_LONGTEXT N_("Select the key to set this playlist bookmark.")
812
813 #define HISTORY_BACK_TEXT N_("Go back in browsing history")
814 #define HISTORY_BACK_LONGTEXT N_("Select the key to go back (to the previous media item) in the browsing history.")
815 #define HISTORY_FORWARD_TEXT N_("Go forward in browsing history")
816 #define HISTORY_FORWARD_LONGTEXT N_("Select the key to go forward (to the next media item) in the browsing history.")
817
818 #define AUDIO_TRACK_KEY_TEXT N_("Cycle audio track")
819 #define AUDIO_TRACK_KEY_LONGTEXT N_("Cycle through the available audio tracks(languages)")
820 #define SUBTITLE_TRACK_KEY_TEXT N_("Cycle subtitle track")
821 #define SUBTITLE_TRACK_KEY_LONGTEXT N_("Cycle through the available subtitle tracks")
822 #define INTF_SHOW_KEY_TEXT N_("Show interface")
823 #define INTF_SHOW_KEY_LONGTEXT N_("Raise the interface above all other windows")
824 #define SNAP_KEY_TEXT N_("Take video snapshot")
825 #define SNAP_KEY_LONGTEXT N_("Takes a video snapshot and writes it to disk.")
826
827 #define PLAYLIST_USAGE N_( \
828     "\nPlaylist MRL syntax:" \
829     "\n  URL[@[title][:chapter][-[title][:chapter]]] [:option=value]" \
830     "\nURL syntax:" \
831     "\n  [file://]filename              plain media file" \
832     "\n  http://ip:port/file            HTTP URL" \
833     "\n  ftp://ip:port/file             FTP URL" \
834     "\n  mms://ip:port/file             MMS URL" \
835     "\n  screen://                      Screen capture" \
836     "\n  [dvd://][device][@raw_device]  DVD device" \
837     "\n  [vcd://][device]               VCD device" \
838     "\n  [cdda://][device]              Audio CD device" \
839     "\n  udp:[[<source address>]@[<bind address>][:<bind port>]]" \
840     "\n                                 UDP stream sent by a streaming server"\
841     "\n  vlc:pause                      pause execution of playlist items" \
842     "\n  vlc:quit                       quit VLC" \
843     "\n")
844
845
846 /*
847  * Quick usage guide for the configuration options:
848  *
849  * add_category_hint( N_(text), N_(longtext), b_advanced_option );
850  * add_subcategory_hint( N_(text), N_(longtext), b_advanced_option );
851  * add_usage_hint( N_(text), b_advanced_option );
852  * add_string( option_name, value, p_callback, N_(text), N_(longtext),
853                b_advanced_option );
854  * add_file( option_name, psz_value, p_callback, N_(text), N_(longtext) );
855  * add_module( option_name, psz_value, i_capability, p_callback,
856  *             N_(text), N_(longtext) );
857  * add_integer( option_name, i_value, p_callback, N_(text), N_(longtext),
858                 b_advanced_option );
859  * add_bool( option_name, b_value, p_callback, N_(text), N_(longtext),
860              b_advanced_option );
861  */
862
863 vlc_module_begin();
864     /* Audio options */
865     set_category( CAT_AUDIO );
866     set_subcategory( SUBCAT_AUDIO_GENERAL );
867     add_bool( "audio", 1, NULL, AUDIO_TEXT, AUDIO_LONGTEXT, VLC_FALSE );
868     add_integer_with_range( "volume", AOUT_VOLUME_DEFAULT, AOUT_VOLUME_MIN,
869                             AOUT_VOLUME_MAX, NULL, VOLUME_TEXT,
870                             VOLUME_LONGTEXT, VLC_FALSE );
871     add_integer_with_range( "saved-volume", AOUT_VOLUME_DEFAULT,
872                             AOUT_VOLUME_MIN, AOUT_VOLUME_MAX, NULL,
873                             VOLUME_SAVE_TEXT, VOLUME_SAVE_LONGTEXT, VLC_TRUE );
874     add_integer( "aout-rate", -1, NULL, AOUT_RATE_TEXT,
875                  AOUT_RATE_LONGTEXT, VLC_TRUE );
876 #if !defined( SYS_DARWIN )
877     add_bool( "hq-resampling", 1, NULL, AOUT_RESAMP_TEXT,
878               AOUT_RESAMP_LONGTEXT, VLC_TRUE );
879 #endif
880     add_bool( "spdif", 0, NULL, SPDIF_TEXT, SPDIF_LONGTEXT, VLC_FALSE );
881     add_integer( "audio-desync", 0, NULL, DESYNC_TEXT,
882                  DESYNC_LONGTEXT, VLC_TRUE );
883     set_subcategory( SUBCAT_AUDIO_AOUT );
884     add_module( "aout", "audio output", NULL, NULL, AOUT_TEXT, AOUT_LONGTEXT,
885                 VLC_TRUE );
886     set_subcategory( SUBCAT_AUDIO_AFILTER );
887     add_module_list_cat( "audio-filter", SUBCAT_AUDIO_AFILTER, 0,
888                          NULL, AUDIO_FILTER_TEXT,
889                          AUDIO_FILTER_LONGTEXT, VLC_FALSE );
890     set_subcategory( SUBCAT_AUDIO_VISUAL );
891     add_string( "audio-visual", 0, NULL,AUDIO_VISUAL_TEXT,
892                 AUDIO_VISUAL_LONGTEXT, VLC_FALSE );
893     set_subcategory( SUBCAT_AUDIO_MISC );
894     add_module( "audio-channel-mixer", "audio filter", NULL, NULL,
895                 AUDIO_CHANNEL_MIXER, AUDIO_CHANNEL_MIXER_LONGTEXT, VLC_FALSE );
896         change_short('A');
897
898     /* Video options */
899     set_category( CAT_VIDEO );
900     set_subcategory( SUBCAT_VIDEO_GENERAL );
901     add_bool( "video", 1, NULL, VIDEO_TEXT, VIDEO_LONGTEXT, VLC_TRUE );
902     add_integer( "width", -1, NULL, WIDTH_TEXT, WIDTH_LONGTEXT, VLC_TRUE );
903     add_integer( "height", -1, NULL, HEIGHT_TEXT, HEIGHT_LONGTEXT, VLC_TRUE );
904     add_integer( "video-x", -1, NULL, VIDEOX_TEXT, VIDEOX_LONGTEXT, VLC_TRUE );
905     add_integer( "video-y", -1, NULL, VIDEOY_TEXT, VIDEOY_LONGTEXT, VLC_TRUE );
906     add_bool( "video-deco", 1, NULL, VIDEO_DECO_TEXT,
907               VIDEO_DECO_LONGTEXT, VLC_TRUE );
908     add_string( "video-title", NULL, NULL, VIDEO_TITLE_TEXT,
909                  VIDEO_TITLE_LONGTEXT, VLC_TRUE );
910     add_integer( "align", 0, NULL, ALIGN_TEXT, ALIGN_LONGTEXT, VLC_TRUE );
911         change_integer_list( pi_align_values, ppsz_align_descriptions, 0 );
912     add_float( "zoom", 1, NULL, ZOOM_TEXT, ZOOM_LONGTEXT, VLC_TRUE );
913     add_bool( "grayscale", 0, NULL, GRAYSCALE_TEXT,
914               GRAYSCALE_LONGTEXT, VLC_TRUE );
915     add_bool( "fullscreen", 0, NULL, FULLSCREEN_TEXT,
916               FULLSCREEN_LONGTEXT, VLC_FALSE );
917         change_short('f');
918     add_bool( "skip-frames", 1, NULL, SKIP_FRAMES_TEXT,
919               SKIP_FRAMES_LONGTEXT, VLC_FALSE );
920 #ifndef SYS_DARWIN
921     add_bool( "overlay", 1, NULL, OVERLAY_TEXT, OVERLAY_LONGTEXT, VLC_TRUE );
922 #endif
923     add_bool( "video-on-top", 0, NULL, VIDEO_ON_TOP_TEXT,
924               VIDEO_ON_TOP_LONGTEXT, VLC_FALSE );
925     add_string( "aspect-ratio", "", NULL,
926                 ASPECT_RATIO_TEXT, ASPECT_RATIO_LONGTEXT, VLC_TRUE );
927     add_directory( "snapshot-path", NULL, NULL, SNAP_PATH_TEXT,
928                    SNAP_PATH_LONGTEXT, VLC_FALSE );
929     add_string( "snapshot-format", "png", NULL, SNAP_FORMAT_TEXT,
930                    SNAP_FORMAT_LONGTEXT, VLC_FALSE );
931         change_string_list( ppsz_snap_formats, NULL, 0 );
932
933     set_subcategory( SUBCAT_VIDEO_VOUT );
934     add_module( "vout", "video output", NULL, NULL, VOUT_TEXT, VOUT_LONGTEXT,
935                 VLC_TRUE );
936         change_short('V');
937
938     set_subcategory( SUBCAT_VIDEO_VFILTER );
939     add_module_list_cat( "filter", SUBCAT_VIDEO_VFILTER, NULL, NULL,
940                 FILTER_TEXT, FILTER_LONGTEXT, VLC_FALSE );
941
942 #if 0
943     add_string( "pixel-ratio", "1", NULL, PIXEL_RATIO_TEXT, PIXEL_RATIO_TEXT );
944 #endif
945
946     /* Subpictures options */
947     set_subcategory( SUBCAT_VIDEO_SUBPIC );
948     set_section( N_("On Screen Display") , NULL );
949     add_bool( "osd", 1, NULL, OSD_TEXT, OSD_LONGTEXT, VLC_FALSE );
950
951     set_section( N_("Subtitles") , NULL );
952     add_bool( "sub-autodetect-file", VLC_TRUE, NULL,
953                  SUB_AUTO_TEXT, SUB_AUTO_LONGTEXT, VLC_FALSE );
954     add_integer( "sub-autodetect-fuzzy", 3, NULL,
955                  SUB_FUZZY_TEXT, SUB_FUZZY_LONGTEXT, VLC_TRUE );
956 #ifdef WIN32
957 #   define SUB_PATH ".\\subtitles"
958 #else
959 #   define SUB_PATH "./Subtitles, ./subtitles"
960 #endif
961     add_string( "sub-autodetect-path", SUB_PATH, NULL,
962                  SUB_PATH_TEXT, SUB_PATH_LONGTEXT, VLC_TRUE );
963     add_file( "sub-file", NULL, NULL, SUB_FILE_TEXT,
964               SUB_FILE_LONGTEXT, VLC_TRUE );
965     add_integer( "spumargin", -1, NULL, SPUMARGIN_TEXT,
966                  SPUMARGIN_LONGTEXT, VLC_TRUE );
967
968     set_section( N_( "Overlays" ) , NULL );
969     add_module( "sub-filter", "sub filter", NULL, NULL,
970                 SUB_FILTER_TEXT, SUB_FILTER_LONGTEXT, VLC_TRUE );
971
972     set_subcategory( SUBCAT_VIDEO_TEXT );
973
974     /* Input options */
975     set_category( CAT_INPUT );
976     set_subcategory( SUBCAT_INPUT_ACCESS );
977     set_subcategory( SUBCAT_INPUT_DEMUX );
978     set_subcategory( SUBCAT_INPUT_VCODEC );
979     set_subcategory( SUBCAT_INPUT_ACODEC );
980     set_subcategory( SUBCAT_INPUT_SCODEC );
981     set_subcategory( SUBCAT_INPUT_ADVANCED );
982
983     set_section( N_( "Tracks settings" ), NULL );
984     add_integer( "program", 0, NULL,
985                  INPUT_PROGRAM_TEXT, INPUT_PROGRAM_LONGTEXT, VLC_TRUE );
986     add_string( "programs", "", NULL,
987                 INPUT_PROGRAMS_TEXT, INPUT_PROGRAMS_LONGTEXT, VLC_FALSE );
988     add_integer( "audio-channel", -1, NULL,
989                  INPUT_CHAN_TEXT, INPUT_CHAN_LONGTEXT, VLC_FALSE );
990     add_integer( "spu-channel", -1, NULL,
991                  INPUT_SUB_TEXT, INPUT_SUB_LONGTEXT, VLC_FALSE );
992     add_string( "audio-language", "", NULL,
993                  INPUT_CHAN_LANG_TEXT, INPUT_CHAN_LANG_LONGTEXT, VLC_FALSE );
994     add_string( "spu-language", "", NULL,
995                  INPUT_SUB_LANG_TEXT, INPUT_SUB_LANG_LONGTEXT, VLC_FALSE );
996
997
998     set_section( N_( "Playback control" ) , NULL);
999     add_integer( "input-repeat", 0, NULL,
1000                  INPUT_REPEAT_TEXT, INPUT_REPEAT_LONGTEXT, VLC_TRUE );
1001     add_integer( "start-time", 0, NULL,
1002                  START_TIME_TEXT, START_TIME_LONGTEXT, VLC_TRUE );
1003     add_integer( "stop-time", 0, NULL,
1004                  STOP_TIME_TEXT, STOP_TIME_LONGTEXT, VLC_TRUE );
1005     add_string( "input-list", NULL, NULL,
1006                  INPUT_LIST_TEXT, INPUT_LIST_LONGTEXT, VLC_TRUE );
1007     add_string( "input-slave", NULL, NULL,
1008                  INPUT_SLAVE_TEXT, INPUT_SLAVE_LONGTEXT, VLC_TRUE );
1009
1010     add_string( "bookmarks", NULL, NULL,
1011                  BOOKMARKS_TEXT, BOOKMARKS_LONGTEXT, VLC_TRUE );
1012
1013     set_section( N_( "Default devices") , NULL )
1014
1015     add_file( "dvd", DVD_DEVICE, NULL, DVD_DEV_TEXT, DVD_DEV_LONGTEXT,
1016               VLC_FALSE );
1017     add_file( "vcd", VCD_DEVICE, NULL, VCD_DEV_TEXT, VCD_DEV_LONGTEXT,
1018               VLC_FALSE );
1019     add_file( "cd-audio", CDAUDIO_DEVICE, NULL, CDAUDIO_DEV_TEXT,
1020               CDAUDIO_DEV_LONGTEXT, VLC_FALSE );
1021
1022     set_section( N_( "Network settings" ), NULL );
1023
1024     add_integer( "server-port", 1234, NULL,
1025                  SERVER_PORT_TEXT, SERVER_PORT_LONGTEXT, VLC_FALSE );
1026     add_integer( "mtu", 1500, NULL, MTU_TEXT, MTU_LONGTEXT, VLC_TRUE );
1027     add_string( "iface-addr", "", NULL, IFACE_ADDR_TEXT,
1028                 IFACE_ADDR_LONGTEXT, VLC_TRUE );
1029     add_bool( "ipv6", 0, NULL, IPV6_TEXT, IPV6_LONGTEXT, VLC_FALSE );
1030         change_short('6');
1031     add_bool( "ipv4", 0, NULL, IPV4_TEXT, IPV4_LONGTEXT, VLC_FALSE );
1032         change_short('4');
1033
1034     set_section( N_( "Socks proxy") , NULL )
1035     add_string( "socks", NULL, NULL,
1036                  SOCKS_SERVER_TEXT, SOCKS_SERVER_LONGTEXT, VLC_TRUE );
1037     add_string( "socks-user", NULL, NULL,
1038                  SOCKS_USER_TEXT, SOCKS_USER_LONGTEXT, VLC_TRUE );
1039     add_string( "socks-pwd", NULL, NULL,
1040                  SOCKS_PASS_TEXT, SOCKS_PASS_LONGTEXT, VLC_TRUE );
1041
1042
1043     set_section( N_("Metadata" ) , NULL )
1044     add_string( "meta-title", NULL, NULL, META_TITLE_TEXT,
1045                 META_TITLE_LONGTEXT, VLC_TRUE );
1046     add_string( "meta-author", NULL, NULL, META_AUTHOR_TEXT,
1047                 META_AUTHOR_LONGTEXT, VLC_TRUE );
1048     add_string( "meta-artist", NULL, NULL, META_ARTIST_TEXT,
1049                 META_ARTIST_LONGTEXT, VLC_TRUE );
1050     add_string( "meta-genre", NULL, NULL, META_GENRE_TEXT,
1051                 META_GENRE_LONGTEXT, VLC_TRUE );
1052     add_string( "meta-copyright", NULL, NULL, META_CPYR_TEXT,
1053                 META_CPYR_LONGTEXT, VLC_TRUE );
1054     add_string( "meta-description", NULL, NULL, META_DESCR_TEXT,
1055                 META_DESCR_LONGTEXT, VLC_TRUE );
1056     add_string( "meta-date", NULL, NULL, META_DATE_TEXT,
1057                 META_DATE_LONGTEXT, VLC_TRUE );
1058     add_string( "meta-url", NULL, NULL, META_URL_TEXT,
1059                 META_URL_LONGTEXT, VLC_TRUE );
1060
1061     set_section( N_( "Advanced" ), NULL );
1062
1063     add_integer( "cr-average", 40, NULL, CR_AVERAGE_TEXT,
1064                  CR_AVERAGE_LONGTEXT, VLC_FALSE );
1065
1066     /* Decoder options */
1067     add_category_hint( N_("Decoders"), CODEC_CAT_LONGTEXT , VLC_TRUE );
1068     add_module( "codec", "decoder", NULL, NULL, CODEC_TEXT,
1069                 CODEC_LONGTEXT, VLC_TRUE );
1070     add_module( "encoder", "encoder", NULL, NULL, ENCODER_TEXT,
1071                 ENCODER_LONGTEXT, VLC_TRUE );
1072
1073
1074     /* Stream output options */
1075     set_category( CAT_SOUT );
1076     set_subcategory( SUBCAT_SOUT_GENERAL );
1077     add_category_hint( N_("Stream output"), SOUT_CAT_LONGTEXT , VLC_TRUE );
1078
1079     add_string( "sout", NULL, NULL, SOUT_TEXT, SOUT_LONGTEXT, VLC_TRUE );
1080     add_bool( "sout-display", VLC_FALSE, NULL, SOUT_DISPLAY_TEXT,
1081                                 SOUT_DISPLAY_LONGTEXT, VLC_TRUE );
1082     add_bool( "sout-keep", VLC_FALSE, NULL, SOUT_KEEP_TEXT,
1083                                 SOUT_KEEP_LONGTEXT, VLC_TRUE );
1084     add_bool( "sout-all", 0, NULL, SOUT_ALL_TEXT,
1085                                 SOUT_ALL_LONGTEXT, VLC_TRUE );
1086     add_bool( "sout-audio", 1, NULL, SOUT_AUDIO_TEXT,
1087                                 SOUT_AUDIO_LONGTEXT, VLC_TRUE );
1088     add_bool( "sout-video", 1, NULL, SOUT_VIDEO_TEXT,
1089                                 SOUT_VIDEO_LONGTEXT, VLC_TRUE );
1090     add_integer( "ttl", 1, NULL, TTL_TEXT, TTL_LONGTEXT, VLC_TRUE );
1091
1092     set_subcategory( SUBCAT_SOUT_STREAM );
1093     set_subcategory( SUBCAT_SOUT_MUX );
1094     add_module( "mux", "sout mux", NULL, NULL, MUX_TEXT,
1095                                 MUX_LONGTEXT, VLC_TRUE );
1096     set_subcategory( SUBCAT_SOUT_ACO );
1097     add_module( "access_output", "sout access", NULL, NULL,
1098                 ACCESS_OUTPUT_TEXT, ACCESS_OUTPUT_LONGTEXT, VLC_TRUE );
1099     set_subcategory( SUBCAT_SOUT_PACKETIZER );
1100     add_module( "packetizer", "packetizer", NULL, NULL,
1101                 PACKETIZER_TEXT, PACKETIZER_LONGTEXT, VLC_TRUE );
1102
1103     set_subcategory( SUBCAT_SOUT_SAP );
1104     add_bool( "sap-flow-control", VLC_FALSE, NULL, ANN_SAPCTRL_TEXT,
1105                                ANN_SAPCTRL_LONGTEXT, VLC_TRUE );
1106     add_integer( "sap-interval", 5, NULL, ANN_SAPINTV_TEXT,
1107                                ANN_SAPINTV_LONGTEXT, VLC_TRUE );
1108     set_subcategory( SUBCAT_SOUT_VOD );
1109
1110     /* CPU options */
1111     set_category( CAT_ADVANCED );
1112     set_subcategory( SUBCAT_ADVANCED_CPU );
1113 #if defined( __i386__ )
1114     add_bool( "mmx", 1, NULL, MMX_TEXT, MMX_LONGTEXT, VLC_TRUE );
1115     add_bool( "3dn", 1, NULL, THREE_DN_TEXT, THREE_DN_LONGTEXT, VLC_TRUE );
1116     add_bool( "mmxext", 1, NULL, MMXEXT_TEXT, MMXEXT_LONGTEXT, VLC_TRUE );
1117     add_bool( "sse", 1, NULL, SSE_TEXT, SSE_LONGTEXT, VLC_TRUE );
1118     add_bool( "sse2", 1, NULL, SSE2_TEXT, SSE2_LONGTEXT, VLC_TRUE );
1119 #endif
1120 #if defined( __powerpc__ ) || defined( SYS_DARWIN )
1121     add_bool( "altivec", 1, NULL, ALTIVEC_TEXT, ALTIVEC_LONGTEXT, VLC_TRUE );
1122 #endif
1123     /* Misc options */
1124     set_subcategory( SUBCAT_ADVANCED_MISC );
1125     add_module( "memcpy", "memcpy", NULL, NULL, MEMCPY_TEXT,
1126                 MEMCPY_LONGTEXT, VLC_TRUE );
1127     add_module( "access", "access", NULL, NULL, ACCESS_TEXT,
1128                 ACCESS_LONGTEXT, VLC_TRUE );
1129     add_module( "demux", "demux", NULL, NULL, DEMUX_TEXT,
1130                 DEMUX_LONGTEXT, VLC_TRUE );
1131     add_bool( "minimize-threads", 0, NULL, MINIMIZE_THREADS_TEXT,
1132               MINIMIZE_THREADS_LONGTEXT, VLC_TRUE );
1133     add_bool( "plugins-cache", VLC_TRUE, NULL, PLUGINS_CACHE_TEXT,
1134               PLUGINS_CACHE_LONGTEXT, VLC_TRUE );
1135     add_directory( "plugin-path", NULL, NULL, PLUGIN_PATH_TEXT,
1136                    PLUGIN_PATH_LONGTEXT, VLC_TRUE );
1137     add_string( "vlm-conf", NULL, NULL, VLM_CONF_TEXT,
1138                     VLM_CONF_LONGTEXT, VLC_TRUE );
1139
1140 #if !defined(WIN32)
1141     add_bool( "daemon", 0, NULL, DAEMON_TEXT, DAEMON_LONGTEXT, VLC_TRUE );
1142         change_short('d');
1143 #endif
1144
1145 #if !defined(SYS_DARWIN) && !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1146     add_bool( "rt-priority", 0, NULL, RT_PRIORITY_TEXT,
1147               RT_PRIORITY_LONGTEXT, VLC_TRUE );
1148 #endif
1149
1150 #if !defined(SYS_BEOS) && defined(PTHREAD_COND_T_IN_PTHREAD_H)
1151     add_integer( "rt-offset", 0, NULL, RT_OFFSET_TEXT,
1152                  RT_OFFSET_LONGTEXT, VLC_TRUE );
1153 #endif
1154
1155 #if defined(WIN32)
1156     add_bool( "one-instance", 0, NULL, ONEINSTANCE_TEXT,
1157               ONEINSTANCE_LONGTEXT, VLC_TRUE );
1158     add_bool( "high-priority", 0, NULL, HPRIORITY_TEXT,
1159               HPRIORITY_LONGTEXT, VLC_FALSE );
1160     add_bool( "fast-mutex", 0, NULL, FAST_MUTEX_TEXT,
1161               FAST_MUTEX_LONGTEXT, VLC_TRUE );
1162     add_integer( "win9x-cv-method", 1, NULL, WIN9X_CV_TEXT,
1163                   WIN9X_CV_LONGTEXT, VLC_TRUE );
1164 #endif
1165
1166     /* Playlist options */
1167     set_category( CAT_PLAYLIST );
1168     set_subcategory( SUBCAT_PLAYLIST_GENERAL );
1169     add_category_hint( N_("Playlist"), PLAYLIST_CAT_LONGTEXT , VLC_FALSE );
1170     add_bool( "random", 0, NULL, RANDOM_TEXT, RANDOM_LONGTEXT, VLC_FALSE );
1171         change_short('Z');
1172     add_bool( "loop", 0, NULL, LOOP_TEXT, LOOP_LONGTEXT, VLC_FALSE );
1173         change_short('L');
1174     add_bool( "repeat", 0, NULL, REPEAT_TEXT, REPEAT_LONGTEXT, VLC_TRUE );
1175         change_short('R');
1176     add_bool( "play-and-stop", 0, NULL, PAS_TEXT, PAS_LONGTEXT, VLC_TRUE );
1177
1178     set_subcategory( SUBCAT_PLAYLIST_SD );
1179     add_module_list_cat( "services-discovery", SUBCAT_PLAYLIST_SD, NULL,
1180                           NULL, SD_TEXT, SD_LONGTEXT, VLC_FALSE );
1181         change_short('S');
1182
1183     /* Interface options */
1184     set_category( CAT_INTERFACE );
1185     set_subcategory( SUBCAT_INTERFACE_GENERAL );
1186
1187     set_section ( N_("Interface module" ), NULL );
1188     add_module_cat( "intf", SUBCAT_INTERFACE_GENERAL, NULL, NULL, INTF_TEXT,
1189                 INTF_LONGTEXT, VLC_FALSE );
1190         change_short('I');
1191
1192     set_section ( N_("Extra interface modules" ),  NULL );
1193     add_module_list_cat( "extraintf", SUBCAT_INTERFACE_GENERAL,
1194                          NULL, NULL, EXTRAINTF_TEXT,
1195                          EXTRAINTF_LONGTEXT, VLC_FALSE );
1196
1197     set_section ( N_("Miscellaneous"), NULL );
1198     add_integer( "verbose", 0, NULL, VERBOSE_TEXT, VERBOSE_LONGTEXT,
1199                  VLC_FALSE );
1200         change_short('v');
1201     add_bool( "quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_TRUE );
1202         change_short('q');
1203     add_string( "language", "auto", NULL, LANGUAGE_TEXT, LANGUAGE_LONGTEXT,
1204                 VLC_FALSE );
1205         change_string_list( ppsz_language, ppsz_language_text, 0 );
1206     add_bool( "color", 0, NULL, COLOR_TEXT, COLOR_LONGTEXT, VLC_TRUE );
1207     add_bool( "advanced", 0, NULL, ADVANCED_TEXT, ADVANCED_LONGTEXT,
1208                     VLC_FALSE );
1209
1210     set_subcategory( SUBCAT_INTERFACE_CONTROL );
1211     add_module_list_cat( "control", SUBCAT_INTERFACE_CONTROL, NULL, NULL,
1212                          CONTROL_TEXT, CONTROL_LONGTEXT, VLC_FALSE );
1213
1214     /* Hotkey options*/
1215     set_subcategory( SUBCAT_INTERFACE_HOTKEYS );
1216     add_category_hint( N_("Hot keys"), HOTKEY_CAT_LONGTEXT , VLC_FALSE );
1217
1218 #if defined(SYS_DARWIN)
1219 /* Don't use the following combo's */
1220
1221 /*  copy                          KEY_MODIFIER_COMMAND|'c'
1222  *  cut                           KEY_MODIFIER_COMMAND|'x'
1223  *  paste                         KEY_MODIFIER_COMMAND|'v'
1224  *  select all                    KEY_MODIFIER_COMMAND|'a'
1225  *  preferences                   KEY_MODIFIER_COMMAND|','
1226  *  hide vlc                      KEY_MODIFIER_COMMAND|'h'
1227  *  hide other                    KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'h'
1228  *  open file                     KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'o'
1229  *  open                          KEY_MODIFIER_COMMAND|'o'
1230  *  open disk                     KEY_MODIFIER_COMMAND|'d'
1231  *  open network                  KEY_MODIFIER_COMMAND|'n'
1232  *  save playlist                 KEY_MODIFIER_COMMAND|'s'
1233  *  playlist random               KEY_MODIFIER_COMMAND|'z'
1234  *  playlist repeat all           KEY_MODIFIER_COMMAND|'l'
1235  *  playlist repeat               KEY_MODIFIER_COMMAND|'r'
1236  *  video half size               KEY_MODIFIER_COMMAND|'0'
1237  *  video normal size             KEY_MODIFIER_COMMAND|'1'
1238  *  video double size             KEY_MODIFIER_COMMAND|'2'
1239  *  video fit to screen           KEY_MODIFIER_COMMAND|'3'
1240  *  minimize window               KEY_MODIFIER_COMMAND|'m'
1241  *  close window                  KEY_MODIFIER_COMMAND|'w'
1242  *  show controller               KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'c'
1243  *  show playlist                 KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'p'
1244  *  show info                     KEY_MODIFIER_COMMAND|'i'
1245  *  help                          KEY_MODIFIER_COMMAND|'?'
1246  */
1247 #   define KEY_FULLSCREEN         KEY_MODIFIER_COMMAND|'f'
1248 #   define KEY_PLAY_PAUSE         KEY_MODIFIER_COMMAND|'p'
1249 #   define KEY_PAUSE              KEY_UNSET
1250 #   define KEY_PLAY               KEY_UNSET
1251 #   define KEY_FASTER             KEY_MODIFIER_COMMAND|'='
1252 #   define KEY_SLOWER             KEY_MODIFIER_COMMAND|'-'
1253 #   define KEY_NEXT               KEY_MODIFIER_COMMAND|KEY_RIGHT
1254 #   define KEY_PREV               KEY_MODIFIER_COMMAND|KEY_LEFT
1255 #   define KEY_STOP               KEY_MODIFIER_COMMAND|'.'
1256 #   define KEY_POSITION           't'
1257 #   define KEY_JUMP_M10SEC        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_LEFT
1258 #   define KEY_JUMP_P10SEC        KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|KEY_RIGHT
1259 #   define KEY_JUMP_M1MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_LEFT
1260 #   define KEY_JUMP_P1MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_RIGHT
1261 #   define KEY_JUMP_M5MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_LEFT
1262 #   define KEY_JUMP_P5MIN         KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|KEY_MODIFIER_ALT|KEY_RIGHT
1263 #   define KEY_NAV_ACTIVATE       KEY_ENTER
1264 #   define KEY_NAV_UP             KEY_UP
1265 #   define KEY_NAV_DOWN           KEY_DOWN
1266 #   define KEY_NAV_LEFT           KEY_LEFT
1267 #   define KEY_NAV_RIGHT          KEY_RIGHT
1268 #   define KEY_QUIT               KEY_MODIFIER_COMMAND|'q'
1269 #   define KEY_VOL_UP             KEY_MODIFIER_COMMAND|KEY_UP
1270 #   define KEY_VOL_DOWN           KEY_MODIFIER_COMMAND|KEY_DOWN
1271 #   define KEY_VOL_MUTE           KEY_MODIFIER_COMMAND|KEY_MODIFIER_SHIFT|'m'
1272 #   define KEY_SUBDELAY_UP        'j'
1273 #   define KEY_SUBDELAY_DOWN      'h'
1274 #   define KEY_AUDIODELAY_UP      'g'
1275 #   define KEY_AUDIODELAY_DOWN    'f'
1276 #   define KEY_AUDIO_TRACK        'l'
1277 #   define KEY_SUBTITLE_TRACK     's'
1278 #   define KEY_INTF_SHOW          'i'
1279 #   define KEY_SNAPSHOT           KEY_MODIFIER_COMMAND|KEY_MODIFIER_ALT|'s'
1280
1281 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_COMMAND|KEY_F1
1282 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_COMMAND|KEY_F2
1283 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_COMMAND|KEY_F3
1284 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_COMMAND|KEY_F4
1285 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_COMMAND|KEY_F5
1286 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_COMMAND|KEY_F6
1287 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_COMMAND|KEY_F7
1288 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_COMMAND|KEY_F8
1289 #   define KEY_SET_BOOKMARK9      KEY_UNSET
1290 #   define KEY_SET_BOOKMARK10     KEY_UNSET
1291 #   define KEY_PLAY_BOOKMARK1     KEY_F1
1292 #   define KEY_PLAY_BOOKMARK2     KEY_F2
1293 #   define KEY_PLAY_BOOKMARK3     KEY_F3
1294 #   define KEY_PLAY_BOOKMARK4     KEY_F4
1295 #   define KEY_PLAY_BOOKMARK5     KEY_F5
1296 #   define KEY_PLAY_BOOKMARK6     KEY_F6
1297 #   define KEY_PLAY_BOOKMARK7     KEY_F7
1298 #   define KEY_PLAY_BOOKMARK8     KEY_F8
1299 #   define KEY_PLAY_BOOKMARK9     KEY_UNSET
1300 #   define KEY_PLAY_BOOKMARK10    KEY_UNSET
1301 #   define KEY_HISTORY_BACK       KEY_MODIFIER_COMMAND|'['
1302 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_COMMAND|']'
1303
1304 #else
1305 #   define KEY_FULLSCREEN         'f'
1306 #   define KEY_PLAY_PAUSE         KEY_SPACE
1307 #   define KEY_PAUSE              KEY_UNSET
1308 #   define KEY_PLAY               KEY_UNSET
1309 #   define KEY_FASTER             '+'
1310 #   define KEY_SLOWER             '-'
1311 #   define KEY_NEXT               'n'
1312 #   define KEY_PREV               'p'
1313 #   define KEY_STOP               's'
1314 #   define KEY_POSITION           't'
1315 #   define KEY_JUMP_M10SEC        KEY_MODIFIER_ALT|KEY_LEFT
1316 #   define KEY_JUMP_P10SEC        KEY_MODIFIER_ALT|KEY_RIGHT
1317 #   define KEY_JUMP_M1MIN         KEY_MODIFIER_CTRL|KEY_LEFT
1318 #   define KEY_JUMP_P1MIN         KEY_MODIFIER_CTRL|KEY_RIGHT
1319 #   define KEY_JUMP_M5MIN         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_LEFT
1320 #   define KEY_JUMP_P5MIN         KEY_MODIFIER_CTRL|KEY_MODIFIER_ALT|KEY_RIGHT
1321 #   define KEY_NAV_ACTIVATE       KEY_ENTER
1322 #   define KEY_NAV_UP             KEY_UP
1323 #   define KEY_NAV_DOWN           KEY_DOWN
1324 #   define KEY_NAV_LEFT           KEY_LEFT
1325 #   define KEY_NAV_RIGHT          KEY_RIGHT
1326 #   define KEY_QUIT               KEY_MODIFIER_CTRL|'q'
1327 #   define KEY_VOL_UP             KEY_MODIFIER_CTRL|KEY_UP
1328 #   define KEY_VOL_DOWN           KEY_MODIFIER_CTRL|KEY_DOWN
1329 #   define KEY_VOL_MUTE           'm'
1330 #   define KEY_SUBDELAY_UP        KEY_MODIFIER_CTRL|'h'
1331 #   define KEY_SUBDELAY_DOWN      KEY_MODIFIER_CTRL|'j'
1332 #   define KEY_AUDIODELAY_UP      KEY_MODIFIER_CTRL|'k'
1333 #   define KEY_AUDIODELAY_DOWN    KEY_MODIFIER_CTRL|'l'
1334
1335 #   define KEY_AUDIO_TRACK        'l'
1336 #   define KEY_SUBTITLE_TRACK     'k'
1337 #   define KEY_INTF_SHOW          'i'
1338 #   define KEY_SNAPSHOT           KEY_MODIFIER_CTRL|'s'
1339
1340 #   define KEY_SET_BOOKMARK1      KEY_MODIFIER_CTRL|KEY_F1
1341 #   define KEY_SET_BOOKMARK2      KEY_MODIFIER_CTRL|KEY_F2
1342 #   define KEY_SET_BOOKMARK3      KEY_MODIFIER_CTRL|KEY_F3
1343 #   define KEY_SET_BOOKMARK4      KEY_MODIFIER_CTRL|KEY_F4
1344 #   define KEY_SET_BOOKMARK5      KEY_MODIFIER_CTRL|KEY_F5
1345 #   define KEY_SET_BOOKMARK6      KEY_MODIFIER_CTRL|KEY_F6
1346 #   define KEY_SET_BOOKMARK7      KEY_MODIFIER_CTRL|KEY_F7
1347 #   define KEY_SET_BOOKMARK8      KEY_MODIFIER_CTRL|KEY_F8
1348 #   define KEY_SET_BOOKMARK9      KEY_MODIFIER_CTRL|KEY_F9
1349 #   define KEY_SET_BOOKMARK10     KEY_MODIFIER_CTRL|KEY_F10
1350 #   define KEY_PLAY_BOOKMARK1     KEY_F1
1351 #   define KEY_PLAY_BOOKMARK2     KEY_F2
1352 #   define KEY_PLAY_BOOKMARK3     KEY_F3
1353 #   define KEY_PLAY_BOOKMARK4     KEY_F4
1354 #   define KEY_PLAY_BOOKMARK5     KEY_F5
1355 #   define KEY_PLAY_BOOKMARK6     KEY_F6
1356 #   define KEY_PLAY_BOOKMARK7     KEY_F7
1357 #   define KEY_PLAY_BOOKMARK8     KEY_F8
1358 #   define KEY_PLAY_BOOKMARK9     KEY_F9
1359 #   define KEY_PLAY_BOOKMARK10    KEY_F10
1360 #   define KEY_HISTORY_BACK       KEY_MODIFIER_CTRL|'['
1361 #   define KEY_HISTORY_FORWARD    KEY_MODIFIER_CTRL|']'
1362 #endif
1363
1364     add_key( "key-fullscreen", KEY_FULLSCREEN, NULL, FULLSCREEN_KEY_TEXT,
1365              FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
1366     add_key( "key-play-pause", KEY_PLAY_PAUSE, NULL, PLAY_PAUSE_KEY_TEXT,
1367              PLAY_PAUSE_KEY_LONGTEXT, VLC_FALSE );
1368     add_key( "key-pause", KEY_PAUSE, NULL, PAUSE_KEY_TEXT,
1369              PAUSE_KEY_LONGTEXT, VLC_TRUE );
1370     add_key( "key-play", KEY_PLAY, NULL, PLAY_KEY_TEXT,
1371              PLAY_KEY_LONGTEXT, VLC_TRUE );
1372     add_key( "key-faster", KEY_FASTER, NULL, FASTER_KEY_TEXT,
1373              FASTER_KEY_LONGTEXT, VLC_FALSE );
1374     add_key( "key-slower", KEY_SLOWER, NULL, SLOWER_KEY_TEXT,
1375              SLOWER_KEY_LONGTEXT, VLC_FALSE );
1376     add_key( "key-next", KEY_NEXT, NULL, NEXT_KEY_TEXT,
1377              NEXT_KEY_LONGTEXT, VLC_FALSE );
1378     add_key( "key-prev", KEY_PREV, NULL, PREV_KEY_TEXT,
1379              PREV_KEY_LONGTEXT, VLC_FALSE );
1380     add_key( "key-stop", KEY_STOP, NULL, STOP_KEY_TEXT,
1381              STOP_KEY_LONGTEXT, VLC_FALSE );
1382     add_key( "key-position", KEY_POSITION, NULL, POSITION_KEY_TEXT,
1383              POSITION_KEY_LONGTEXT, VLC_TRUE );
1384     add_key( "key-jump-10sec", KEY_JUMP_M10SEC, NULL, JB10SEC_KEY_TEXT,
1385              JB10SEC_KEY_LONGTEXT, VLC_FALSE );
1386     add_key( "key-jump+10sec", KEY_JUMP_P10SEC, NULL, JF10SEC_KEY_TEXT,
1387              JF10SEC_KEY_LONGTEXT, VLC_FALSE );
1388     add_key( "key-jump-1min", KEY_JUMP_M1MIN, NULL, JB1MIN_KEY_TEXT,
1389              JB1MIN_KEY_LONGTEXT, VLC_FALSE );
1390     add_key( "key-jump+1min", KEY_JUMP_P1MIN, NULL, JF1MIN_KEY_TEXT,
1391              JF1MIN_KEY_LONGTEXT, VLC_FALSE );
1392     add_key( "key-jump-5min", KEY_JUMP_M5MIN, NULL, JB5MIN_KEY_TEXT,
1393              JB5MIN_KEY_LONGTEXT, VLC_FALSE );
1394     add_key( "key-jump+5min", KEY_JUMP_P5MIN, NULL, JF5MIN_KEY_TEXT,
1395              JF5MIN_KEY_LONGTEXT, VLC_FALSE );
1396
1397     add_key( "key-nav-activate", KEY_NAV_ACTIVATE, NULL, NAV_ACTIVATE_KEY_TEXT,
1398              NAV_ACTIVATE_KEY_LONGTEXT, VLC_TRUE );
1399     add_key( "key-nav-up", KEY_NAV_UP, NULL, NAV_UP_KEY_TEXT,
1400              NAV_UP_KEY_LONGTEXT, VLC_TRUE );
1401     add_key( "key-nav-down", KEY_NAV_DOWN, NULL, NAV_DOWN_KEY_TEXT,
1402              NAV_DOWN_KEY_LONGTEXT, VLC_TRUE );
1403     add_key( "key-nav-left", KEY_NAV_LEFT, NULL, NAV_LEFT_KEY_TEXT,
1404              NAV_LEFT_KEY_LONGTEXT, VLC_TRUE );
1405     add_key( "key-nav-right", KEY_NAV_RIGHT, NULL, NAV_RIGHT_KEY_TEXT,
1406              NAV_RIGHT_KEY_LONGTEXT, VLC_TRUE );
1407
1408     add_key( "key-quit", KEY_QUIT, NULL, QUIT_KEY_TEXT,
1409              QUIT_KEY_LONGTEXT, VLC_FALSE );
1410     add_key( "key-vol-up", KEY_VOL_UP, NULL, VOL_UP_KEY_TEXT,
1411              VOL_UP_KEY_LONGTEXT, VLC_FALSE );
1412     add_key( "key-vol-down", KEY_VOL_DOWN, NULL, VOL_DOWN_KEY_TEXT,
1413              VOL_DOWN_KEY_LONGTEXT, VLC_FALSE );
1414     add_key( "key-vol-mute", KEY_VOL_MUTE, NULL, VOL_MUTE_KEY_TEXT,
1415              VOL_MUTE_KEY_LONGTEXT, VLC_FALSE );
1416     add_key( "key-subdelay-up", KEY_SUBDELAY_UP, NULL,
1417              SUBDELAY_UP_KEY_TEXT, SUBDELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1418     add_key( "key-subdelay-down", KEY_SUBDELAY_DOWN, NULL,
1419              SUBDELAY_DOWN_KEY_TEXT, SUBDELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1420     add_key( "key-audiodelay-up", KEY_AUDIODELAY_UP, NULL,
1421              AUDIODELAY_UP_KEY_TEXT, AUDIODELAY_UP_KEY_LONGTEXT, VLC_TRUE );
1422     add_key( "key-audiodelay-down", KEY_AUDIODELAY_DOWN, NULL,
1423              AUDIODELAY_DOWN_KEY_TEXT, AUDIODELAY_DOWN_KEY_LONGTEXT, VLC_TRUE );
1424     add_key( "key-audio-track", KEY_AUDIO_TRACK, NULL, AUDIO_TRACK_KEY_TEXT,
1425              AUDIO_TRACK_KEY_LONGTEXT, VLC_FALSE );
1426     add_key( "key-subtitle-track", KEY_SUBTITLE_TRACK, NULL,
1427              SUBTITLE_TRACK_KEY_TEXT, SUBTITLE_TRACK_KEY_LONGTEXT, VLC_FALSE );
1428     add_key( "key-intf-show", KEY_INTF_SHOW, NULL,
1429              INTF_SHOW_KEY_TEXT, INTF_SHOW_KEY_LONGTEXT, VLC_TRUE );
1430     add_key( "key-snapshot", KEY_SNAPSHOT, NULL,
1431              SNAP_KEY_TEXT, SNAP_KEY_LONGTEXT, VLC_TRUE );
1432
1433     add_key( "key-set-bookmark1", KEY_SET_BOOKMARK1, NULL,
1434              SET_BOOKMARK1_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1435     add_key( "key-set-bookmark2", KEY_SET_BOOKMARK2, NULL,
1436              SET_BOOKMARK2_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1437     add_key( "key-set-bookmark3", KEY_SET_BOOKMARK3, NULL,
1438              SET_BOOKMARK3_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1439     add_key( "key-set-bookmark4", KEY_SET_BOOKMARK4, NULL,
1440              SET_BOOKMARK4_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1441     add_key( "key-set-bookmark5", KEY_SET_BOOKMARK5, NULL,
1442              SET_BOOKMARK5_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1443     add_key( "key-set-bookmark6", KEY_SET_BOOKMARK6, NULL,
1444              SET_BOOKMARK6_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1445     add_key( "key-set-bookmark7", KEY_SET_BOOKMARK7, NULL,
1446              SET_BOOKMARK7_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1447     add_key( "key-set-bookmark8", KEY_SET_BOOKMARK8, NULL,
1448              SET_BOOKMARK8_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1449     add_key( "key-set-bookmark9", KEY_SET_BOOKMARK9, NULL,
1450              SET_BOOKMARK9_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1451     add_key( "key-set-bookmark10", KEY_SET_BOOKMARK10, NULL,
1452              SET_BOOKMARK10_KEY_TEXT, SET_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1453     add_key( "key-play-bookmark1", KEY_PLAY_BOOKMARK1, NULL,
1454              PLAY_BOOKMARK1_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1455     add_key( "key-play-bookmark2", KEY_PLAY_BOOKMARK2, NULL,
1456              PLAY_BOOKMARK2_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1457     add_key( "key-play-bookmark3", KEY_PLAY_BOOKMARK3, NULL,
1458              PLAY_BOOKMARK3_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1459     add_key( "key-play-bookmark4", KEY_PLAY_BOOKMARK4, NULL,
1460              PLAY_BOOKMARK4_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1461     add_key( "key-play-bookmark5", KEY_PLAY_BOOKMARK5, NULL,
1462              PLAY_BOOKMARK5_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1463     add_key( "key-play-bookmark6", KEY_PLAY_BOOKMARK6, NULL,
1464              PLAY_BOOKMARK6_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1465     add_key( "key-play-bookmark7", KEY_PLAY_BOOKMARK7, NULL,
1466              PLAY_BOOKMARK7_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1467     add_key( "key-play-bookmark8", KEY_PLAY_BOOKMARK8, NULL,
1468              PLAY_BOOKMARK8_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1469     add_key( "key-play-bookmark9", KEY_PLAY_BOOKMARK9, NULL,
1470              PLAY_BOOKMARK9_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1471     add_key( "key-play-bookmark10", KEY_PLAY_BOOKMARK10, NULL,
1472              PLAY_BOOKMARK10_KEY_TEXT, PLAY_BOOKMARK_KEY_LONGTEXT, VLC_TRUE );
1473     add_key( "key-history-back", KEY_HISTORY_BACK, NULL, HISTORY_BACK_TEXT,
1474              HISTORY_BACK_LONGTEXT, VLC_TRUE );
1475     add_key( "key-history-forward", KEY_HISTORY_FORWARD, NULL,
1476              HISTORY_FORWARD_TEXT, HISTORY_FORWARD_LONGTEXT, VLC_TRUE );
1477
1478     /* Usage (mainly useful for cmd line stuff) */
1479     add_usage_hint( PLAYLIST_USAGE );
1480
1481     set_description( N_("main program") );
1482     set_capability( "main", 100 );
1483 vlc_module_end();
1484
1485 static module_config_t p_help_config[] =
1486 {
1487     { CONFIG_ITEM_BOOL, NULL, "help", 'h',
1488       N_("print help (can be combined with --advanced)") },
1489     { CONFIG_ITEM_BOOL, NULL, "longhelp", 'H',
1490       N_("print detailed help (can be combined with --advanced)") },
1491     { CONFIG_ITEM_BOOL, NULL, "list", 'l',
1492       N_("print a list of available modules") },
1493     { CONFIG_ITEM_STRING, NULL, "module", 'p',
1494       N_("print help on module (can be combined with --advanced)") },
1495     { CONFIG_ITEM_BOOL, NULL, "save-config", '\0',
1496       N_("save the current command line options in the config") },
1497     { CONFIG_ITEM_BOOL, NULL, "reset-config", '\0',
1498       N_("reset the current config to the default values") },
1499     { CONFIG_ITEM_STRING, NULL, "config", '\0',
1500       N_("use alternate config file") },
1501     { CONFIG_ITEM_BOOL, NULL, "reset-plugins-cache", '\0',
1502       N_("resets the current plugins cache") },
1503     { CONFIG_ITEM_BOOL, NULL, "version", '\0',
1504       N_("print version information") },
1505     { CONFIG_HINT_END, NULL, NULL, '\0', NULL }
1506 };
1507
1508 /*****************************************************************************
1509  * End configuration.
1510  *****************************************************************************/
1511
1512 /*****************************************************************************
1513  * Initializer for the vlc_t structure storing the action / key associations
1514  *****************************************************************************/
1515 static struct hotkey p_hotkeys[] =
1516 {
1517     { "key-quit", ACTIONID_QUIT, 0 },
1518     { "key-play-pause", ACTIONID_PLAY_PAUSE, 0 },
1519     { "key-play", ACTIONID_PLAY, 0 },
1520     { "key-pause", ACTIONID_PAUSE, 0 },
1521     { "key-stop", ACTIONID_STOP, 0 },
1522     { "key-position", ACTIONID_POSITION, 0 },
1523     { "key-jump-10sec", ACTIONID_JUMP_BACKWARD_10SEC, 0 },
1524     { "key-jump+10sec", ACTIONID_JUMP_FORWARD_10SEC, 0 },
1525     { "key-jump-1min", ACTIONID_JUMP_BACKWARD_1MIN, 0 },
1526     { "key-jump+1min", ACTIONID_JUMP_FORWARD_1MIN, 0 },
1527     { "key-jump-5min", ACTIONID_JUMP_BACKWARD_5MIN, 0 },
1528     { "key-jump+5min", ACTIONID_JUMP_FORWARD_5MIN, 0 },
1529     { "key-prev", ACTIONID_PREV, 0 },
1530     { "key-next", ACTIONID_NEXT, 0 },
1531     { "key-faster", ACTIONID_FASTER, 0 },
1532     { "key-slower", ACTIONID_SLOWER, 0 },
1533     { "key-fullscreen", ACTIONID_FULLSCREEN, 0 },
1534     { "key-vol-up", ACTIONID_VOL_UP, 0 },
1535     { "key-vol-down", ACTIONID_VOL_DOWN, 0 },
1536     { "key-vol-mute", ACTIONID_VOL_MUTE, 0 },
1537     { "key-subdelay-down", ACTIONID_SUBDELAY_DOWN, 0 },
1538     { "key-subdelay-up", ACTIONID_SUBDELAY_UP, 0 },
1539     { "key-audiodelay-down", ACTIONID_AUDIODELAY_DOWN, 0 },
1540     { "key-audiodelay-up", ACTIONID_AUDIODELAY_UP, 0 },
1541     { "key-audio-track", ACTIONID_AUDIO_TRACK, 0},
1542     { "key-subtitle-track", ACTIONID_SUBTITLE_TRACK, 0},
1543     { "key-intf-show", ACTIONID_INTF_SHOW, 0},
1544     { "key-snapshot", ACTIONID_SNAPSHOT, 0},
1545     { "key-nav-activate", ACTIONID_NAV_ACTIVATE, 0 },
1546     { "key-nav-up", ACTIONID_NAV_UP, 0 },
1547     { "key-nav-down", ACTIONID_NAV_DOWN, 0 },
1548     { "key-nav-left", ACTIONID_NAV_LEFT, 0 },
1549     { "key-nav-right", ACTIONID_NAV_RIGHT, 0 },
1550     { "key-set-bookmark1", ACTIONID_SET_BOOKMARK1, 0},
1551     { "key-set-bookmark2", ACTIONID_SET_BOOKMARK2, 0},
1552     { "key-set-bookmark3", ACTIONID_SET_BOOKMARK3, 0},
1553     { "key-set-bookmark4", ACTIONID_SET_BOOKMARK4, 0},
1554     { "key-set-bookmark5", ACTIONID_SET_BOOKMARK5, 0},
1555     { "key-set-bookmark6", ACTIONID_SET_BOOKMARK6, 0},
1556     { "key-set-bookmark7", ACTIONID_SET_BOOKMARK7, 0},
1557     { "key-set-bookmark8", ACTIONID_SET_BOOKMARK8, 0},
1558     { "key-set-bookmark9", ACTIONID_SET_BOOKMARK9, 0},
1559     { "key-set-bookmark10", ACTIONID_SET_BOOKMARK10, 0},
1560     { "key-play-bookmark1", ACTIONID_PLAY_BOOKMARK1, 0},
1561     { "key-play-bookmark2", ACTIONID_PLAY_BOOKMARK2, 0},
1562     { "key-play-bookmark3", ACTIONID_PLAY_BOOKMARK3, 0},
1563     { "key-play-bookmark4", ACTIONID_PLAY_BOOKMARK4, 0},
1564     { "key-play-bookmark5", ACTIONID_PLAY_BOOKMARK5, 0},
1565     { "key-play-bookmark6", ACTIONID_PLAY_BOOKMARK6, 0},
1566     { "key-play-bookmark7", ACTIONID_PLAY_BOOKMARK7, 0},
1567     { "key-play-bookmark8", ACTIONID_PLAY_BOOKMARK8, 0},
1568     { "key-play-bookmark9", ACTIONID_PLAY_BOOKMARK9, 0},
1569     { "key-play-bookmark10", ACTIONID_PLAY_BOOKMARK10, 0},
1570     { "key-history-back", ACTIONID_HISTORY_BACK, 0},
1571     { "key-history-forward", ACTIONID_HISTORY_FORWARD, 0},
1572     { NULL, 0, 0 }
1573 };
1574