]> git.sesse.net Git - vlc/blob - modules/video_output/x11/x11.c
Merge branch 'master' of git@git.videolan.org:vlc
[vlc] / modules / video_output / x11 / x11.c
1 /*****************************************************************************
2  * x11.c : X11 plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 1998-2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Samuel Hocevar <sam@zoy.org>
9  *          David Kennedy <dkennedy@tinytoad.com>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29
30 #ifdef HAVE_CONFIG_H
31 # include "config.h"
32 #endif
33
34 #include <vlc/vlc.h>
35
36 /*****************************************************************************
37  * Exported prototypes
38  *****************************************************************************/
39 extern int  E_(Activate)   ( vlc_object_t * );
40 extern void E_(Deactivate) ( vlc_object_t * );
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 #define ALT_FS_TEXT N_("Alternate fullscreen method")
46 #define ALT_FS_LONGTEXT N_( \
47     "There are two ways to make a fullscreen window, unfortunately each one " \
48     "has its drawbacks.\n" \
49     "1) Let the window manager handle your fullscreen window (default), but " \
50     "things like taskbars will likely show on top of the video.\n" \
51     "2) Completely bypass the window manager, but then nothing will be able " \
52     "to show on top of the video.")
53
54 #define DISPLAY_TEXT N_("X11 display")
55 #define DISPLAY_LONGTEXT N_( \
56     "X11 hardware display to use. By default VLC will " \
57     "use the value of the DISPLAY environment variable.")
58
59 #define SHM_TEXT N_("Use shared memory")
60 #define SHM_LONGTEXT N_( \
61     "Use shared memory to communicate between VLC and the X server.")
62
63 #define SCREEN_TEXT N_("Screen for fullscreen mode.")
64 #define SCREEN_LONGTEXT N_( \
65     "Screen to use in fullscreen mode. For instance " \
66     "set it to 0 for first screen, 1 for the second.")
67
68 vlc_module_begin();
69     set_shortname( "X11" );
70     set_category( CAT_VIDEO );
71     set_subcategory( SUBCAT_VIDEO_VOUT );
72     add_string( "x11-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, true );
73     add_bool( "x11-altfullscreen", 0, NULL, ALT_FS_TEXT, ALT_FS_LONGTEXT, true );
74 #ifdef HAVE_SYS_SHM_H
75     add_bool( "x11-shm", 1, NULL, SHM_TEXT, SHM_LONGTEXT, true );
76 #endif
77 #ifdef HAVE_XINERAMA
78     add_integer ( "x11-xineramascreen", 0, NULL, SCREEN_TEXT, SCREEN_LONGTEXT, true );
79 #endif
80     set_description( _("X11 video output") );
81     set_capability( "video output", 70 );
82     set_callbacks( E_(Activate), E_(Deactivate) );
83 vlc_module_end();
84