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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * qt4.hpp : QT4 interface
  3.  ****************************************************************************
  4.  * Copyright (C) 2006-2009 the VideoLAN team
  5.  * $Id: dbcd04f7aa47f8a311e575d1f298b0ad6a9c43e4 $
  6.  *
  7.  * Authors: Clément Stenac <zorglub@videolan.org>
  8.  *          Jean-Baptiste Kempf <jb@videolan.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef QVLC_H_
  25. #define QVLC_H_
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>    /* VLC_COMMON_MEMBERS for vlc_interface.h */
  30. #include <vlc_interface.h> /* intf_thread_t */
  31. #include <vlc_playlist.h>  /* playlist_t */
  32. #include <QEvent>
  33. #include <QString>
  34. #if ( QT_VERSION < 0x040300 )
  35. # error Update your Qt version
  36. #endif
  37. #if QT_VERSION == 0x040500
  38. # warning Please update Qt version to 4.5.1. This warning will become an error.
  39. #endif
  40. enum {
  41.     QT_NORMAL_MODE = 0,
  42.     QT_ALWAYS_VIDEO_MODE,
  43.     QT_MINIMAL_MODE
  44. };
  45. enum {
  46.     DialogEventType = 0,
  47.     IMEventType     = 100,
  48.     PLEventType     = 200,
  49.     MsgEventType    = 300,
  50. };
  51. class QVLCApp;
  52. class QMenu;
  53. class MainInterface;
  54. class QSettings;
  55. struct intf_sys_t
  56. {
  57.     vlc_thread_t thread;
  58.     QVLCApp *p_app;          /* Main Qt Application */
  59.     MainInterface *p_mi;     /* Main Interface, NULL if DialogProvider Mode */
  60.     QSettings *mainSettings; /* Qt State settings not messing main VLC ones */
  61.     bool b_isDialogProvider; /* Qt mode or Skins mode */
  62.     int  i_screenHeight;     /* Detection of Small screens */
  63.     playlist_t *p_playlist;  /* Core Playlist discussion */
  64.     QString filepath;        /* Last path used in dialogs */
  65.     QMenu * p_popup_menu;    /* The right click menu */
  66. };
  67. #define THEPL p_intf->p_sys->p_playlist
  68. #define QPL_LOCK playlist_Lock( THEPL );
  69. #define QPL_UNLOCK playlist_Unlock( THEPL );
  70. #define THEDP DialogsProvider::getInstance()
  71. #define THEMIM MainInputManager::getInstance( p_intf )
  72. #define qfu( i ) QString::fromUtf8( i )
  73. #define qtr( i ) QString::fromUtf8( vlc_gettext(i) )
  74. #define qtu( i ) ((i).toUtf8().constData())
  75. #define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) )
  76. #define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) )
  77. #define BUTTON_SET( button, text, tooltip )  
  78.     button->setText( text );                 
  79.     button->setToolTip( tooltip );
  80. #define BUTTON_SET_ACT( button, text, tooltip, thisslot ) 
  81.     BUTTON_SET( button, text, tooltip );                  
  82.     BUTTONACT( button, thisslot );
  83. #define BUTTON_SET_IMG( button, text, image, tooltip )    
  84.     BUTTON_SET( button, text, tooltip );                  
  85.     button->setIcon( QIcon( ":/"#image ) );
  86. #define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) 
  87.     BUTTON_SET_IMG( button, text, image, tooltip );                
  88.     BUTTONACT( button, thisslot );
  89. #define VISIBLE(i) (i && i->isVisible())
  90. #define TOGGLEV( x ) { if( x->isVisible() ) x->hide();          
  91.             else  x->show(); }
  92. #define setLayoutMargins( a, b, c, d, e) setContentsMargins( a, b, c, d )
  93. #define getSettings() p_intf->p_sys->mainSettings
  94. #endif