]> git.sesse.net Git - vlc/blob - modules/gui/qt4/util/qvlcframe.hpp
Improved screen for qt-always-video
[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 void 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             *defaul = new QPushButton(0);
77             buttons_layout->addWidget( *defaul );
78             (*defaul)->setText( qfu( psz_default ) );
79         }
80         if( psz_alt )
81         {
82             *alt = new QPushButton(0);
83             buttons_layout->addWidget( *alt );
84             (*alt)->setText( qfu( psz_alt ) );
85         }
86         if( psz_other )
87         {
88             *other = new QPushButton( 0 );
89             buttons_layout->addWidget( *other );
90             (*other)->setText( qfu( psz_other ) );
91         }
92         l->addLayout( buttons_layout );
93 #endif
94     };
95
96     QVLCFrame( intf_thread_t *_p_intf ) : QWidget( NULL ), p_intf( _p_intf )
97     {
98         fixStyle( this );
99     };
100     virtual ~QVLCFrame()   {};
101
102     void toggleVisible()
103     {
104         if( isVisible() ) hide();
105         else show();
106     }
107 protected:
108     intf_thread_t *p_intf;
109
110     void readSettings( QString name, QSize defSize )
111     {
112         QSettings settings( "VideoLAN", "VLC" );
113         settings.beginGroup( name );
114         resize( settings.value( "size", defSize ).toSize() );
115         move( settings.value( "pos", QPoint( 0,0 ) ).toPoint() );
116         settings.endGroup();
117     }
118     void writeSettings( QString name )
119     {
120         QSettings settings( "VideoLAN", "VLC" );
121         settings.beginGroup( name );
122         settings.setValue ("size", size() );
123         settings.setValue( "pos", pos() );
124         settings.endGroup();
125     }
126 };
127
128 class QVLCMW : public QMainWindow
129 {
130 public:
131     QVLCMW( intf_thread_t *_p_intf ) : QMainWindow( NULL ), p_intf( _p_intf )
132     {
133         QVLCFrame::fixStyle( this );
134     }
135     virtual ~QVLCMW() {};
136     void toggleVisible()
137     {
138         if( isVisible() ) hide();
139         else show();
140     }
141 protected:
142     intf_thread_t *p_intf;
143     QSize mainSize;
144
145     void readSettings( QString name, QSize defSize )
146     {
147         QSettings settings( "VideoLAN", "VLC" );
148         settings.beginGroup( name );
149       QSize s =  settings.value( "size", defSize ).toSize() ;
150       fprintf( stderr, "%i %i ", s.width(), s.height() );
151         move( settings.value( "pos", QPoint( 0,0 ) ).toPoint() );
152         settings.endGroup();
153     }
154     void readSettings( QString name )
155     {
156         QSettings settings( "VideoLAN", "VLC" );
157         settings.beginGroup( name );
158         mainSize = settings.value( "size", QSize( 0,0 ) ).toSize();
159         settings.endGroup();
160     }
161     void writeSettings( QString name )
162     {
163         QSettings settings( "VideoLAN", "VLC" );
164         settings.beginGroup( name );
165         settings.setValue ("size", size() );
166         settings.setValue( "pos", pos() );
167         settings.endGroup();
168     }
169 };
170
171 #endif