]> git.sesse.net Git - vlc/blob - plugins/kde/kde.cpp
92b8c65976fcef6ba3bba5cfeb0fd7588bfdcc6d
[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.14 2002/07/01 17:39:27 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_PROGRAM( "kvlc" )
66 MODULE_INIT_STOP
67
68 MODULE_ACTIVATE_START
69     intf_getfunctions( &p_module->p_functions->intf );
70 MODULE_ACTIVATE_STOP
71
72 MODULE_DEACTIVATE_START
73 MODULE_DEACTIVATE_STOP
74
75 } // extern "C"
76
77 /*****************************************************************************
78  * The local class.
79  *****************************************************************************/
80 class KInterface;
81 class KAboutData;
82
83 class KThread
84 {
85     private:
86         KThread ( KThread &thread ) { };
87         KThread &operator= ( KThread &thread ) { return ( *this ); };
88
89         intf_thread_t *p_intf;
90         
91     public:
92         KThread(intf_thread_t *p_intf);
93         ~KThread();
94
95         // These methods get exported to the core
96         static int     open    ( intf_thread_t *p_intf );
97         static void    close   ( intf_thread_t *p_intf );
98         static void    run     ( intf_thread_t *p_intf );
99 };
100
101 /*****************************************************************************
102  * Functions exported as capabilities.
103  *****************************************************************************/
104 static void intf_getfunctions( function_list_t * p_function_list )
105 {
106     p_function_list->functions.intf.pf_open  = KThread::open;
107     p_function_list->functions.intf.pf_close = KThread::close;
108     p_function_list->functions.intf.pf_run   = KThread::run;
109 }
110
111 /*****************************************************************************
112  * KThread::KThread: KDE interface constructor
113  *****************************************************************************/
114 KThread::KThread(intf_thread_t *p_intf)
115 {
116     this->p_intf = p_intf;
117
118     p_intf->p_sys->p_about =
119       new KAboutData( "VideoLAN Client", I18N_NOOP("Kvlc"), VERSION,
120          _("This is the VideoLAN client, a DVD and MPEG player. It can play "
121            "MPEG and MPEG 2 files from a file or from a network source."),
122          KAboutData::License_GPL,
123          _("(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - the VideoLAN Team"),
124          0, 0, "");
125
126     char *authors[][2] = {
127         { "the VideoLAN Team", "<videolan@videolan.org>" },
128         { NULL, NULL },
129     };
130
131     for ( int i = 0; NULL != authors[i][0]; i++ ) {
132         p_intf->p_sys->p_about->addAuthor( authors[i][0], 0, authors[i][1] );
133     }
134
135     int argc = 1;
136     char *argv[] = { p_intf->p_vlc->psz_object_name, NULL };
137     KCmdLineArgs::init( argc, argv, p_intf->p_sys->p_about );
138
139     p_intf->p_sys->p_app = new KApplication();
140     p_intf->p_sys->p_window = new KInterface(p_intf);
141     p_intf->p_sys->p_window->setCaption( VOUT_TITLE " (KDE interface)" );
142
143     p_intf->p_sys->p_input = NULL;
144 }
145
146 /*****************************************************************************
147  * KThread::~KThread: KDE interface destructor
148  *****************************************************************************/
149 KThread::~KThread()
150 {
151     if( p_intf->p_sys->p_input )
152     {
153         vlc_object_release( p_intf->p_sys->p_input );
154     }
155
156     /* XXX: can be deleted if the user closed the window ! */
157     //delete p_intf->p_sys->p_window;
158
159     delete p_intf->p_sys->p_app;
160     delete p_intf->p_sys->p_about;
161 }
162
163 /*****************************************************************************
164  * KThread::open: initialize and create window
165  *****************************************************************************/
166 int KThread::open(intf_thread_t *p_intf)
167 {
168     /* Allocate instance and initialize some members */
169     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
170     if( p_intf->p_sys == NULL )
171     {
172         msg_Err( p_intf, "out of memory" );
173         return( 1 );
174     }
175
176     p_intf->p_sys->p_thread = new KThread(p_intf);
177     return ( 0 );
178 }
179
180 /*****************************************************************************
181  * KThread::close: destroy interface window
182  *****************************************************************************/
183 void KThread::close(intf_thread_t *p_intf)
184 {
185     delete p_intf->p_sys->p_thread;
186     free( p_intf->p_sys );
187 }
188
189 /*****************************************************************************
190  * KThread::run: KDE thread
191  *****************************************************************************
192  * This part of the interface is in a separate thread so that we can call
193  * exec() from within it without annoying the rest of the program.
194  *****************************************************************************/
195 void KThread::run(intf_thread_t *p_intf)
196 {
197     p_intf->p_sys->p_window->show();
198     p_intf->p_sys->p_app->exec();
199 }
200