]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/qvlcframe.hpp
36a368fb0185ac2b77fb73704b95a06844a2a9df
[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             plt.setColor( QPalette::Inactive, QPalette::Button, vlg );
56             plt.setColor( QPalette::Active, QPalette::Button, vlg );
57             plt.setColor( QPalette::Active, QPalette::Text, Qt::yellow );
58             w->setPalette( plt );
59         }
60 #endif
61     }
62     static QHBoxLayout* doButtons( QWidget *w, QBoxLayout *l,
63                                QPushButton **defaul, char *psz_default,
64                                QPushButton **alt, char *psz_alt,
65                                QPushButton **other, char *psz_other )
66     {
67 #ifdef QT42
68 #else
69         QHBoxLayout *buttons_layout = new QHBoxLayout;
70         QSpacerItem *spacerItem = new QSpacerItem( 40, 20,
71                                QSizePolicy::Expanding, QSizePolicy::Minimum);
72         buttons_layout->addItem( spacerItem );
73
74         if( psz_default )
75         {
76             fprintf( stderr, "Creating default button %s\n", psz_default );
77             *defaul = new QPushButton(0);
78             buttons_layout->addWidget( *defaul );
79             (*defaul)->setText( qfu( psz_default ) );
80         }
81         if( psz_alt )
82         {
83             *alt = new QPushButton(0);
84             buttons_layout->addWidget( *alt );
85             (*alt)->setText( qfu( psz_alt ) );
86         }
87         if( psz_other )
88         {
89             *other = new QPushButton( 0 );
90             buttons_layout->addWidget( *other );
91             (*other)->setText( qfu( psz_other ) );
92         }
93         if( l )
94             l->addLayout( buttons_layout );
95 #endif
96         return buttons_layout;
97     };
98
99     QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf )
100     {
101         fixStyle( this );
102     };
103     virtual ~QVLCFrame()   {};
104
105     void toggleVisible()
106     {
107         if( isVisible() ) hide();
108         else show();
109     }
110 protected:
111     intf_thread_t *p_intf;
112
113     void readSettings( QString name, QSize defSize )
114     {
115         QSettings settings( "VideoLAN", "VLC" );
116         settings.beginGroup( name );
117         resize( settings.value( "size", defSize ).toSize() );
118         move( settings.value( "pos", QPoint( 0,0 ) ).toPoint() );
119         settings.endGroup();
120     }
121     void writeSettings( QString name )
122     {
123         QSettings settings( "VideoLAN", "VLC" );
124         settings.beginGroup( name );
125         settings.setValue ("size", size() );
126         settings.setValue( "pos", pos() );
127         settings.endGroup();
128     }
129 };
130
131 class QVLCMW : public QMainWindow
132 {
133 public:
134     QVLCMW( intf_thread_t *_p_intf ) : QMainWindow( NULL ), p_intf( _p_intf )
135     {
136         QVLCFrame::fixStyle( this );
137     }
138     virtual ~QVLCMW() {};
139     void toggleVisible()
140     {
141         if( isVisible() ) hide();
142         else show();
143     }
144 protected:
145     intf_thread_t *p_intf;
146     QSize mainSize;
147
148     void readSettings( QString name, QSize defSize )
149     {
150         QSettings settings( "VideoLAN", "VLC" );
151         settings.beginGroup( name );
152       QSize s =  settings.value( "size", defSize ).toSize() ;
153       fprintf( stderr, "%i %i ", s.width(), s.height() );
154         move( settings.value( "pos", QPoint( 0,0 ) ).toPoint() );
155         settings.endGroup();
156     }
157     void readSettings( QString name )
158     {
159         QSettings settings( "VideoLAN", "VLC" );
160         settings.beginGroup( name );
161         mainSize = settings.value( "size", QSize( 0,0 ) ).toSize();
162         settings.endGroup();
163     }
164     void writeSettings( QString name )
165     {
166         QSettings settings( "VideoLAN", "VLC" );
167         settings.beginGroup( name );
168         settings.setValue ("size", size() );
169         settings.setValue( "pos", pos() );
170         settings.endGroup();
171     }
172 };
173
174 #endif