qte_main.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * qte_main.c : QT Embedded wrapper for gte_main
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 05ab4b4290418d013b99e5a5591d4525582c4e74 $
  6.  *
  7.  * Authors: Jean-Paul Saman <jpsaman _at_ videolan _dot_ org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. extern "C"
  27. {
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <vlc_plugin.h>
  33. }
  34. #include <qapplication.h>
  35. #include <qpainter.h>
  36. extern "C"
  37. {
  38. typedef struct qte_thread_t
  39. {
  40.     VLC_COMMON_MEMBERS
  41.     QApplication*       p_qte_application;
  42.     QWidget*            p_qte_widget;
  43.     bool                b_gui_server;
  44. } qte_thread_t;
  45. /*****************************************************************************
  46.  * Local prototypes.
  47.  *****************************************************************************/
  48. static int  Open    ( vlc_object_t * );
  49. static void Close   ( vlc_object_t * );
  50. static void* QteMain( vlc_object_t * );
  51. /*****************************************************************************
  52.  * Local variables (mutex-protected).
  53.  *****************************************************************************/
  54. static int            i_refcount = 0;
  55. static qte_thread_t * p_qte_main = NULL;
  56. /*****************************************************************************
  57.  * Module descriptor
  58.  *****************************************************************************/
  59. #define STANDALONE_TEXT N_("Run as standalone Qt/Embedded GUI Server")
  60. #define STANDALONE_LONGTEXT N_("Use this option to run as standalone " 
  61.     "Qt/Embedded GUI Server. This option is equivalent to the -qws option " 
  62.     "from normal Qt.")
  63. vlc_module_begin ()
  64.     set_description( N_("Qt Embedded GUI helper") )
  65.     set_capability( "gui-helper", 90 )
  66.     add_bool( "qte-guiserver", 0, NULL, STANDALONE_TEXT, STANDALONE_LONGTEXT, false )
  67.     add_shortcut( "qte" )
  68.     set_callbacks( Open, Close )
  69. vlc_module_end ()
  70. } /* extern "C" */
  71. static vlc_mutex_t qte_lock = VLC_STATIC_MUTEX;
  72. /*****************************************************************************
  73.  * Open: initialize and create window
  74.  *****************************************************************************/
  75. static int Open( vlc_object_t *p_this )
  76. {
  77.     vlc_mutex_lock( &qte_lock );
  78.     if( i_refcount > 0 )
  79.     {
  80.         i_refcount++;
  81.         vlc_mutex_unlock( &qte_lock );
  82.         return VLC_SUCCESS;
  83.     }
  84.     p_qte_main = (qte_thread_t *) vlc_object_create( p_this, sizeof(qte_thread_t) );
  85.     /* Launch the QApplication::exec() thread. It will not return until the
  86.      * application is properly initialized, which ensures us thread safety. */
  87.     if( vlc_thread_create( p_qte_main, "qte_main", QteMain,
  88.                            VLC_THREAD_PRIORITY_LOW, true ) )
  89.     {
  90.         vlc_object_release( p_qte_main );
  91.         i_refcount--;
  92.         vlc_mutex_unlock( lock );
  93.         return VLC_ETHREAD;
  94.     }
  95.     i_refcount++;
  96.     vlc_mutex_unlock( &qte_lock );
  97.     vlc_object_attach( p_qte_main, p_this );
  98.     msg_Dbg( p_this, "qte_main running" );
  99.     return VLC_SUCCESS;
  100. }
  101. /*****************************************************************************
  102.  * Close: destroy interface window
  103.  *****************************************************************************/
  104. static void Close( vlc_object_t *p_this )
  105. {
  106.     vlc_mutex_lock( &qte_lock );
  107.     i_refcount--;
  108.     if( i_refcount > 0 )
  109.     {
  110.         vlc_mutex_unlock( lock );
  111.         return;
  112.     }
  113.     p_qte_main->p_qte_application->quit();
  114.     /* Cleanup allocated classes. */
  115.     delete p_qte_main->p_qte_widget;
  116.     delete p_qte_main->p_qte_application;
  117.     msg_Dbg( p_this, "Detaching qte_main" );
  118.     vlc_object_detach( p_qte_main );
  119.     vlc_object_release( p_qte_main );
  120.     p_qte_main = NULL;
  121.     vlc_mutex_unlock( &qte_lock );
  122. }
  123. /*****************************************************************************
  124.  * QteMain: Qt Embedded thread
  125.  *****************************************************************************
  126.  * this part of the interface is in a separate thread so that we can call
  127.  * qte_main() from within it without annoying the rest of the program.
  128.  *****************************************************************************/
  129. static void* QteMain( vlc_object_t* p_vlc_obj )
  130. {
  131.     qte_thread_t *p_this = (qte_thread_t*)p_vlc_obj;
  132.     int i_argc = 1;
  133.     int canc = vlc_savecancel ();
  134.     p_this->b_gui_server = false;
  135.     if( config_GetInt( p_this, "qte-guiserver" ) )
  136.     {
  137.         msg_Dbg( p_this, "Running as Qt Embedded standalone GuiServer" );
  138.         p_this->b_gui_server = true;
  139.     }
  140.     /* Run as standalone GuiServer or as GuiClient. */
  141.     QApplication* pApp = new QApplication(i_argc, NULL,
  142.         (p_this->b_gui_server ? (QApplication::GuiServer):(QApplication::GuiClient)) );
  143.     if( pApp )
  144.     {
  145.         p_this->p_qte_application = pApp;
  146.     }
  147.     QWidget* pWidget = new QWidget(0, _("video") );
  148.     if( pWidget )
  149.     {
  150.         p_this->p_qte_widget = pWidget;
  151.     }
  152.     /* signal the creation of the window */
  153.     p_this->p_qte_application->setMainWidget(p_this->p_qte_widget);
  154.     p_this->p_qte_widget->show();
  155.     vlc_thread_ready( p_this );
  156.     p_this->p_qte_application->exec();
  157.     vlc_restorecancel (canc);
  158.     return NULL;
  159. }