]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/qvlcframe.hpp
* Some Qt interaction stuff
[vlc] / modules / gui / qt4 / util / qvlcframe.hpp
1 /*****************************************************************************
2  * qvlcframe.hpp : A few helpers
3  ****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.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 #ifndef _QVLCFRAME_H_
24 #define _QVLCFRAME_H_
25
26 #include <QWidget>
27 #include <QSpacerItem>
28 #include <QHBoxLayout>
29 #include <QApplication>
30 #include <QSettings>
31 #include <QMainWindow>
32 #include <QPlastiqueStyle>
33 #include <QPushButton>
34 #include "qt4.hpp"
35 #include <vlc/vlc.h>
36
37 class QVLCFrame : public QWidget
38 {
39 public:
40     static void fixStyle( QWidget *w)
41     {
42          QStyle *style = qApp->style();
43 #if 0
44         // Plastique is too dark.
45         /// theming ? getting KDE data ? ?
46         if( qobject_cast<QPlastiqueStyle *>(style) )
47         {
48             QPalette plt( w->palette() );
49             plt.setColor( QPalette::Active, QPalette::Highlight, Qt::gray );
50             QColor vlg = (Qt::lightGray);
51             vlg = vlg.toHsv();
52             vlg.setHsv( vlg.hue(), vlg.saturation(), 235  );
53             plt.setColor( QPalette::Active, QPalette::Window, vlg );
54             plt.setColor( QPalette::Inactive, QPalette::Window, vlg );
55             w->setPalette( plt );
56         }
57 #endif
58     }
59     static void doButtons( QWidget *w, QBoxLayout *l,
60                            QPushButton **defaul, char *psz_default,
61                            QPushButton **alt, char *psz_alt,
62                            QPushButton **other, char *psz_other )
63     {
64 #ifdef QT42
65 #else
66         QHBoxLayout *buttons_layout = new QHBoxLayout;
67         QSpacerItem *spacerItem = new QSpacerItem( 40, 20,
68                                QSizePolicy::Expanding, QSizePolicy::Minimum);
69         buttons_layout->addItem( spacerItem );
70
71         if( psz_default )
72         {
73             *defaul = new QPushButton(0);
74             buttons_layout->addWidget( *defaul );
75             (*defaul)->setText( qfu( psz_default ) );
76         }
77         if( psz_alt )
78         {
79             *alt = new QPushButton(0);
80             buttons_layout->addWidget( *alt );
81             (*alt)->setText( qfu( psz_alt ) );
82         }
83         if( psz_other )
84         {
85             *other = new QPushButton( 0 );
86             buttons_layout->addWidget( *other );
87             (*other)->setText( qfu( psz_other ) );
88         }
89         l->addLayout( buttons_layout );
90 #endif
91     };
92
93     QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf )
94     {
95         fixStyle( this );
96     };
97     virtual ~QVLCFrame()   {};
98
99     void toggleVisible()
100     {
101         if( isVisible() ) hide();
102         else show();
103     }
104 protected:
105     intf_thread_t *p_intf;
106
107     void readSettings( QString name, QSize defSize )
108     {
109         QSettings settings( "VideoLAN", "VLC" );
110         settings.beginGroup( name );
111         resize( settings.value( "size", defSize ).toSize() );
112         move( settings.value( "pos", QPoint( 0,0 ) ).toPoint() );
113         settings.endGroup();
114     }
115     void writeSettings( QString name )
116     {
117         QSettings settings( "VideoLAN", "VLC" );
118         settings.beginGroup( name );
119         settings.setValue ("size", size() );
120         settings.setValue( "pos", pos() );
121         settings.endGroup();
122     }
123 };
124
125 class QVLCMW : public QMainWindow
126 {
127 public:
128     QVLCMW( intf_thread_t *_p_intf ) : QMainWindow( NULL ), p_intf( _p_intf )
129     {
130         QVLCFrame::fixStyle( this );
131     }
132     virtual ~QVLCMW() {};
133 protected:
134     intf_thread_t *p_intf;
135     QSize mainSize;
136
137     void readSettings( QString name, QSize defSize )
138     {
139         QSettings settings( "VideoLAN", "VLC" );
140         settings.beginGroup( name );
141         mainSize = settings.value( "size", defSize ).toSize();
142         QPoint npos = settings.value( "pos", QPoint( 0,0 ) ).toPoint();
143         if( npos.x() > 0 )
144             move( npos );
145         settings.endGroup();
146     }
147     void readSettings( QString name )
148     {
149         QSettings settings( "VideoLAN", "VLC" );
150         settings.beginGroup( name );
151         mainSize = settings.value( "size", QSize( 0,0 ) ).toSize();
152         settings.endGroup();
153     }
154     void writeSettings( QString name )
155     {
156         QSettings settings( "VideoLAN", "VLC" );
157         settings.beginGroup( name );
158         settings.setValue ("size", size() );
159         settings.setValue( "pos", pos() );
160         settings.endGroup();
161     }
162 };
163
164 #endif