]> git.sesse.net Git - vlc/blob - plugins/kde/kde.cpp
* ./plugins/chroma/i420_rgb8.c: fixed a warning.
[vlc] / plugins / kde / kde.cpp
1 /*****************************************************************************
2  * kde.cpp : KDE plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: kde.cpp,v 1.10 2002/03/19 00:30:44 sam Exp $
6  *
7  * Authors: Andres Krapf <dae@chez.com> Sun Mar 25 2001
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #include "kde_common.h"
25
26 #include "kde_interface.h"
27
28 #include <iostream>
29
30 #include <kaction.h>
31 #include <kapp.h>
32 #include <kaboutdata.h>
33 #include <kcmdlineargs.h>
34 #include <klocale.h>
35 #include <kmainwindow.h>
36 #include <kstdaction.h>
37 #include <qwidget.h>
38
39 /*****************************************************************************
40  * Capabilities defined in the other files.
41  *****************************************************************************/
42 static void intf_getfunctions( function_list_t * p_function_list );
43
44 /*****************************************************************************
45  * Build configuration tree.
46  *****************************************************************************/
47 extern "C"
48 {
49
50 MODULE_CONFIG_START
51 MODULE_CONFIG_STOP
52
53 MODULE_INIT_START
54     SET_DESCRIPTION( "KDE interface module" )
55 #ifndef WIN32
56     if( getenv( "DISPLAY" ) == NULL )
57     {
58         ADD_CAPABILITY( INTF, 8 )
59     }
60     else
61 #endif
62     {
63         ADD_CAPABILITY( INTF, 85 )
64     }
65     ADD_SHORTCUT( "kde" )
66     ADD_PROGRAM( "kvlc" )
67 MODULE_INIT_STOP
68
69 MODULE_ACTIVATE_START
70     intf_getfunctions( &p_module->p_functions->intf );
71 MODULE_ACTIVATE_STOP
72
73 MODULE_DEACTIVATE_START
74 MODULE_DEACTIVATE_STOP
75
76 } // extern "C"
77
78 /*****************************************************************************
79  * The local class.
80  *****************************************************************************/
81 class KInterface;
82 class KAboutData;
83
84 class KThread
85 {
86     private:
87         KThread ( KThread &thread ) { };
88         KThread &operator= ( KThread &thread ) { return ( *this ); };
89
90         intf_thread_t *p_intf;
91         
92     public:
93         KThread(intf_thread_t *p_intf);
94         ~KThread();
95
96         // These methods get exported to the core
97         static int     open    ( intf_thread_t *p_intf );
98         static void    close   ( intf_thread_t *p_intf );
99         static void    run     ( intf_thread_t *p_intf );
100 };
101
102 /*****************************************************************************
103  * Functions exported as capabilities.
104  *****************************************************************************/
105 static void intf_getfunctions( function_list_t * p_function_list )
106 {
107     p_function_list->functions.intf.pf_open  = KThread::open;
108     p_function_list->functions.intf.pf_close = KThread::close;
109     p_function_list->functions.intf.pf_run   = KThread::run;
110 }
111
112 /*****************************************************************************
113  * KThread::KThread: KDE interface constructor
114  *****************************************************************************/
115 KThread::KThread(intf_thread_t *p_intf)
116 {
117     this->p_intf = p_intf;
118
119     p_intf->p_sys->p_about =
120         new KAboutData( "VideoLAN Client", I18N_NOOP("Kvlc"), VERSION,
121             "This is the VideoLAN client, a DVD and MPEG player. It can play MPEG and MPEG 2 files from a file or from a network source.", KAboutData::License_GPL,
122             "(C) 1996, 1997, 1998, 1999, 2000, 2001 - the VideoLAN Team", 0, 0, "dae@chez.com");
123
124     char *authors[][2] = {
125         { "Régis Duchesne", "<regis@via.ecp.fr>" },
126         { "Michel Lespinasse", "<walken@zoy.org>" },
127         { "Olivier Pomel", "<pomel@via.ecp.fr>" },
128         { "Pierre Baillet", "<oct@zoy.org>" },
129         { "Jean-Philippe Grimaldi", "<jeanphi@via.ecp.fr>" },
130         { "Andres Krapf", "<dae@via.ecp.fr>" },
131         { "Christophe Massiot", "<massiot@via.ecp.fr>" },
132         { "Vincent Seguin", "<seguin@via.ecp.fr>" },
133         { "Benoit Steiner", "<benny@via.ecp.fr>" },
134         { "Arnaud de Bossoreille de Ribou", "<bozo@via.ecp.fr>" },
135         { "Jean-Marc Dressler", "<polux@via.ecp.fr>" },
136         { "Gaël Hendryckx", "<jimmy@via.ecp.fr>" },
137         { "Samuel Hocevar","<sam@zoy.org>" },
138         { "Brieuc Jeunhomme", "<bbp@via.ecp.fr>" },
139         { "Michel Kaempf", "<maxx@via.ecp.fr>" },
140         { "Stéphane Borel", "<stef@via.ecp.fr>" },
141         { "Renaud Dartus", "<reno@via.ecp.fr>" },
142         { "Henri Fallon", "<henri@via.ecp.fr>" },
143         { NULL, NULL },
144     };
145
146     for ( int i = 0; NULL != authors[i][0]; i++ ) {
147         p_intf->p_sys->p_about->addAuthor( authors[i][0], 0, authors[i][1] );
148     }
149
150     int argc = 1;
151     char *argv[] = { p_main->psz_arg0, NULL };
152     KCmdLineArgs::init( argc, argv, p_intf->p_sys->p_about );
153
154     p_intf->p_sys->p_app = new KApplication();
155     p_intf->p_sys->p_window = new KInterface(p_intf);
156     p_intf->p_sys->p_window->setCaption( VOUT_TITLE " (KDE interface)" );
157 }
158
159 /*****************************************************************************
160  * KThread::~KThread: KDE interface destructor
161  *****************************************************************************/
162 KThread::~KThread()
163 {
164     /* XXX: can be deleted if the user closed the window ! */
165     //delete p_intf->p_sys->p_window;
166
167     delete p_intf->p_sys->p_app;
168     delete p_intf->p_sys->p_about;
169 }
170
171 /*****************************************************************************
172  * KThread::open: initialize and create window
173  *****************************************************************************/
174 int KThread::open(intf_thread_t *p_intf)
175 {
176     /* Allocate instance and initialize some members */
177     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
178     if( p_intf->p_sys == NULL )
179     {
180         intf_ErrMsg( "intf error: %s", strerror(ENOMEM) );
181         return( 1 );
182     }
183
184     p_intf->p_sys->p_thread = new KThread(p_intf);
185     return ( 0 );
186 }
187
188 /*****************************************************************************
189  * KThread::close: destroy interface window
190  *****************************************************************************/
191 void KThread::close(intf_thread_t *p_intf)
192 {
193     delete p_intf->p_sys->p_thread;
194     free( p_intf->p_sys );
195 }
196
197 /*****************************************************************************
198  * KThread::run: KDE thread
199  *****************************************************************************
200  * This part of the interface is in a separate thread so that we can call
201  * exec() from within it without annoying the rest of the program.
202  *****************************************************************************/
203 void KThread::run(intf_thread_t *p_intf)
204 {
205     p_intf->p_sys->p_window->show();
206     p_intf->p_sys->p_app->exec();
207 }
208