| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
#ifndef _QVLC_H_ |
|---|
| 26 |
#define _QVLC_H_ |
|---|
| 27 |
|
|---|
| 28 |
#ifdef HAVE_CONFIG_H |
|---|
| 29 |
# include "config.h" |
|---|
| 30 |
#endif |
|---|
| 31 |
|
|---|
| 32 |
#include <vlc_common.h> |
|---|
| 33 |
#include <vlc_interface.h> |
|---|
| 34 |
#include <vlc_playlist.h> |
|---|
| 35 |
|
|---|
| 36 |
#include <QEvent> |
|---|
| 37 |
|
|---|
| 38 |
#define HAS_QT43 ( QT_VERSION >= 0x040300 ) |
|---|
| 39 |
|
|---|
| 40 |
#define QT_NORMAL_MODE 0 |
|---|
| 41 |
#define QT_ALWAYS_VIDEO_MODE 1 |
|---|
| 42 |
#define QT_MINIMAL_MODE 2 |
|---|
| 43 |
|
|---|
| 44 |
class QApplication; |
|---|
| 45 |
class QMenu; |
|---|
| 46 |
class MainInterface; |
|---|
| 47 |
class DialogsProvider; |
|---|
| 48 |
class VideoWidget; |
|---|
| 49 |
class QSettings; |
|---|
| 50 |
|
|---|
| 51 |
struct intf_sys_t |
|---|
| 52 |
{ |
|---|
| 53 |
QApplication *p_app; |
|---|
| 54 |
MainInterface *p_mi; |
|---|
| 55 |
|
|---|
| 56 |
QSettings *mainSettings; |
|---|
| 57 |
|
|---|
| 58 |
bool b_isDialogProvider; |
|---|
| 59 |
|
|---|
| 60 |
playlist_t *p_playlist; |
|---|
| 61 |
msg_subscription_t *p_sub; |
|---|
| 62 |
|
|---|
| 63 |
VideoWidget *p_video; |
|---|
| 64 |
|
|---|
| 65 |
const char *psz_filepath; |
|---|
| 66 |
QMenu * p_popup_menu; |
|---|
| 67 |
}; |
|---|
| 68 |
|
|---|
| 69 |
#define THEPL p_intf->p_sys->p_playlist |
|---|
| 70 |
#define QPL_LOCK vlc_object_lock( THEPL ); |
|---|
| 71 |
#define QPL_UNLOCK vlc_object_unlock( THEPL ); |
|---|
| 72 |
|
|---|
| 73 |
#define THEDP DialogsProvider::getInstance() |
|---|
| 74 |
#define THEMIM MainInputManager::getInstance( p_intf ) |
|---|
| 75 |
|
|---|
| 76 |
#define qfu( i ) QString::fromUtf8( i ) |
|---|
| 77 |
#define qtr( i ) QString::fromUtf8( _(i) ) |
|---|
| 78 |
#define qtu( i ) (i).toUtf8().data() |
|---|
| 79 |
#define qta( i ) (i).toAscii().data() |
|---|
| 80 |
|
|---|
| 81 |
#define CONNECT( a, b, c, d ) connect( a, SIGNAL( b ), c, SLOT(d) ) |
|---|
| 82 |
#define BUTTONACT( b, a ) connect( b, SIGNAL( clicked() ), this, SLOT(a) ) |
|---|
| 83 |
#define ON_TIMEOUT( act ) CONNECT( THEDP->fixed_timer, timeout(), this, act ) |
|---|
| 84 |
|
|---|
| 85 |
#define BUTTON_SET( button, text, tooltip ) \ |
|---|
| 86 |
button->setText( text ); \ |
|---|
| 87 |
button->setToolTip( tooltip ); |
|---|
| 88 |
|
|---|
| 89 |
#define BUTTON_SET_ACT( button, text, tooltip, thisslot ) \ |
|---|
| 90 |
BUTTON_SET( button, text, tooltip ); \ |
|---|
| 91 |
BUTTONACT( button, thisslot ); |
|---|
| 92 |
|
|---|
| 93 |
#define BUTTON_SET_IMG( button, text, image, tooltip ) \ |
|---|
| 94 |
BUTTON_SET( button, text, tooltip ); \ |
|---|
| 95 |
button->setIcon( QIcon( ":/"#image ) ); |
|---|
| 96 |
|
|---|
| 97 |
#define BUTTON_SET_ACT_I( button, text, image, tooltip, thisslot ) \ |
|---|
| 98 |
BUTTON_SET_IMG( button, text, image, tooltip ); \ |
|---|
| 99 |
BUTTONACT( button, thisslot ); |
|---|
| 100 |
|
|---|
| 101 |
#define VISIBLE(i) (i && i->isVisible()) |
|---|
| 102 |
|
|---|
| 103 |
#define TOGGLEV( x ) { if( x->isVisible() ) x->hide(); \ |
|---|
| 104 |
else x->show(); } |
|---|
| 105 |
|
|---|
| 106 |
#if HAS_QT43 |
|---|
| 107 |
#define setLayoutMargins( a, b, c, d, e) setContentsMargins( a, b, c, d ) |
|---|
| 108 |
#else |
|---|
| 109 |
#define setLayoutMargins( a, b, c, d, e) setMargin( e ) |
|---|
| 110 |
#endif |
|---|
| 111 |
|
|---|
| 112 |
#define getSettings() p_intf->p_sys->mainSettings |
|---|
| 113 |
|
|---|
| 114 |
enum { |
|---|
| 115 |
DialogEventType = 0, |
|---|
| 116 |
IMEventType = 100, |
|---|
| 117 |
PLEventType = 200 |
|---|
| 118 |
}; |
|---|
| 119 |
|
|---|
| 120 |
|
|---|
| 121 |
#include <QString> |
|---|
| 122 |
|
|---|
| 123 |
static inline QString toNativeSeparators( QString s ) |
|---|
| 124 |
{ |
|---|
| 125 |
#ifdef WIN32 |
|---|
| 126 |
for (int i=0; i<(int)s.length(); i++) |
|---|
| 127 |
{ |
|---|
| 128 |
if (s[i] == QLatin1Char('/')) |
|---|
| 129 |
s[i] = QLatin1Char('\\'); |
|---|
| 130 |
} |
|---|
| 131 |
#endif |
|---|
| 132 |
return s; |
|---|
| 133 |
} |
|---|
| 134 |
|
|---|
| 135 |
static inline QString removeTrailingSlash( QString s ) |
|---|
| 136 |
{ |
|---|
| 137 |
if( ( s.length() > 1 ) && ( s[s.length()-1] == QLatin1Char( '/' ) ) ) |
|---|
| 138 |
s.remove( s.length() - 1, 1 ); |
|---|
| 139 |
return s; |
|---|
| 140 |
} |
|---|
| 141 |
|
|---|
| 142 |
#define toNativeSepNoSlash( a ) toNativeSeparators( removeTrailingSlash( a ) ) |
|---|
| 143 |
|
|---|
| 144 |
static const int DialogEvent_Type = QEvent::User + DialogEventType + 1; |
|---|
| 145 |
|
|---|
| 146 |
|
|---|
| 147 |
static const int SetVideoOnTopEvent_Type = QEvent::User + DialogEventType + 4; |
|---|
| 148 |
|
|---|
| 149 |
class DialogEvent : public QEvent |
|---|
| 150 |
{ |
|---|
| 151 |
public: |
|---|
| 152 |
DialogEvent( int _i_dialog, int _i_arg, intf_dialog_args_t *_p_arg ) : |
|---|
| 153 |
QEvent( (QEvent::Type)(DialogEvent_Type) ) |
|---|
| 154 |
{ |
|---|
| 155 |
i_dialog = _i_dialog; |
|---|
| 156 |
i_arg = _i_arg; |
|---|
| 157 |
p_arg = _p_arg; |
|---|
| 158 |
}; |
|---|
| 159 |
virtual ~DialogEvent() {}; |
|---|
| 160 |
|
|---|
| 161 |
int i_arg, i_dialog; |
|---|
| 162 |
intf_dialog_args_t *p_arg; |
|---|
| 163 |
}; |
|---|
| 164 |
|
|---|
| 165 |
#endif |
|---|