]> git.sesse.net Git - vlc/blobdiff - modules/gui/kde/kde.cpp
* modules/gui/wxwindows/*: move a few things out of wxwindows.h
[vlc] / modules / gui / kde / kde.cpp
index 1dcc82073cf9a2c508a5a9bc957f06807e88819e..7cfd2bdd60b3c695955ec668610fb45ce9ef1779 100644 (file)
@@ -2,7 +2,7 @@
  * kde.cpp : KDE plugin for vlc
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: kde.cpp,v 1.1 2002/08/04 17:23:43 sam Exp $
+ * $Id: kde.cpp,v 1.15 2004/01/25 18:53:07 gbazin Exp $
  *
  * Authors: Andres Krapf <dae@chez.com> Sun Mar 25 2001
  *
@@ -10,7 +10,7 @@
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 #include <qwidget.h>
 
 /*****************************************************************************
- * The local class.
+ * The local class and prototypes
  *****************************************************************************/
 class KInterface;
 class KAboutData;
 
-class KThread
-{
-    private:
-        KThread ( KThread &thread ) { };
-        KThread &operator= ( KThread &thread ) { return ( *this ); };
-
-        intf_thread_t *p_intf;
-        
-    public:
-        KThread(intf_thread_t *p_intf);
-        ~KThread();
-
-        // These methods get exported to the core
-        static int     open    ( vlc_object_t * );
-        static void    close   ( vlc_object_t * );
-        static void    run     ( intf_thread_t * );
-};
+static int open( vlc_object_t * p_this );
+static void close( vlc_object_t * p_this );
+static void run(intf_thread_t *p_intf);
 
 /*****************************************************************************
  * Module descriptor
  *****************************************************************************/
 vlc_module_begin();
-#ifdef WIN32
-    int i = 90;
-#else
-    int i = getenv( "DISPLAY" ) == NULL ? 8 : 85;
-#endif
-    set_description( _("KDE interface module") );
-    set_capability( "interface", i );
+    /* int i = getenv( "DISPLAY" ) == NULL ? 8 : 85; */
+    set_description( _("KDE interface") );
+    add_file( "kde-uirc", DATA_PATH "/ui.rc", NULL, N_( "path to ui.rc file" ), NULL, VLC_TRUE );
+    set_capability( "interface", 0 ); /* 0 used to be i, disabled because kvlc not maintained */
     set_program( "kvlc" );
-    //set_callbacks( E_(Open), E_(Close) );
-    set_callbacks( KThread::open, KThread::close );
+    set_callbacks( open, close );
 vlc_module_end();
 
-/*****************************************************************************
- * KThread::KThread: KDE interface constructor
- *****************************************************************************/
-KThread::KThread(intf_thread_t *p_intf)
-{
-    this->p_intf = p_intf;
-
-    p_intf->p_sys->p_about =
-      new KAboutData( "VideoLAN Client", I18N_NOOP("Kvlc"), VERSION,
-         _("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,
-         _("(C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 - the VideoLAN Team"),
-         0, 0, "");
-
-    char *authors[][2] = {
-        { "the VideoLAN Team", "<videolan@videolan.org>" },
-        { NULL, NULL },
-    };
-
-    for ( int i = 0; NULL != authors[i][0]; i++ ) {
-        p_intf->p_sys->p_about->addAuthor( authors[i][0], 0, authors[i][1] );
-    }
-
-    int argc = 1;
-    char *argv[] = { p_intf->p_vlc->psz_object_name, NULL };
-    KCmdLineArgs::init( argc, argv, p_intf->p_sys->p_about );
-
-    p_intf->p_sys->p_app = new KApplication();
-    p_intf->p_sys->p_window = new KInterface(p_intf);
-    p_intf->p_sys->p_window->setCaption( VOUT_TITLE " (KDE interface)" );
-
-    p_intf->p_sys->p_input = NULL;
-}
-
-/*****************************************************************************
- * KThread::~KThread: KDE interface destructor
- *****************************************************************************/
-KThread::~KThread()
-{
-    if( p_intf->p_sys->p_input )
-    {
-        vlc_object_release( p_intf->p_sys->p_input );
-    }
-
-    /* XXX: can be deleted if the user closed the window ! */
-    //delete p_intf->p_sys->p_window;
-
-    delete p_intf->p_sys->p_app;
-    delete p_intf->p_sys->p_about;
-}
-
 /*****************************************************************************
  * KThread::open: initialize and create window
  *****************************************************************************/
-int KThread::open(vlc_object_t *p_this)
+static int open(vlc_object_t *p_this)
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
 
@@ -143,20 +73,24 @@ int KThread::open(vlc_object_t *p_this)
         return( 1 );
     }
 
-    p_intf->pf_run = KThread::run;
-
-    p_intf->p_sys->p_thread = new KThread(p_intf);
+    p_intf->pf_run = run;
     return ( 0 );
 }
 
 /*****************************************************************************
  * KThread::close: destroy interface window
  *****************************************************************************/
-void KThread::close(vlc_object_t *p_this)
+static void close(vlc_object_t *p_this)
 {
     intf_thread_t *p_intf = (intf_thread_t *)p_this;
+    if( p_intf->p_sys->p_input )
+    {
+        vlc_object_release( p_intf->p_sys->p_input );
+    }
 
-    delete p_intf->p_sys->p_thread;
+    delete p_intf->p_sys->p_app;
+    delete p_intf->p_sys->p_about;
+    msg_Unsubscribe(p_intf, p_intf->p_sys->p_msg);
     free( p_intf->p_sys );
 }
 
@@ -166,8 +100,32 @@ void KThread::close(vlc_object_t *p_this)
  * This part of the interface is in a separate thread so that we can call
  * exec() from within it without annoying the rest of the program.
  *****************************************************************************/
-void KThread::run(intf_thread_t *p_intf)
+void run(intf_thread_t *p_intf)
 {
+    p_intf->p_sys->p_about =
+      new KAboutData( "kvlc", I18N_NOOP("Kvlc"), VERSION,
+         _("This is the VLC media player, a DVD, MPEG and DivX player. It can "
+           "play MPEG and MPEG2 files from a file or from a network source."),
+         KAboutData::License_GPL,
+         _("(c) 1996-2004 the VideoLAN team"),
+         0, 0, "");
+
+    p_intf->p_sys->p_about->addAuthor( "the VideoLAN team", 0,
+                                       "<videolan@videolan.org>" );
+
+    int argc = 5;
+    char *argv[] = { "vlc", "--icon", DATA_PATH "/kvlc32x32.png", "--miniicon", DATA_PATH "/kvlc16x16.png" };
+    KCmdLineArgs::init( argc, argv, p_intf->p_sys->p_about );
+
+    /* Subscribe to message queue */
+    p_intf->p_sys->p_msg = msg_Subscribe( p_intf );
+
+    p_intf->p_sys->p_app = new KApplication();
+    p_intf->p_sys->p_window = new KInterface(p_intf);
+    p_intf->p_sys->p_window->setCaption( VOUT_TITLE " (KDE interface)" );
+
+    p_intf->p_sys->p_input = NULL;
+
     p_intf->p_sys->p_window->show();
     p_intf->p_sys->p_app->exec();
 }