]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/firstrun.hpp
Qt4: use var_Inherit
[vlc] / modules / gui / qt4 / dialogs / firstrun.hpp
1 /*****************************************************************************
2  * firstrun : First Run dialogs
3  ****************************************************************************
4  * Copyright © 2009 VideoLAN
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) 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 Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "qt4.hpp"
25
26 #include <QWidget>
27 #include <QSettings>
28
29 class ConfigControl;
30 class FirstRun : public QWidget
31 {
32     Q_OBJECT
33     public:
34         static void CheckAndRun( QWidget *_p, intf_thread_t *p_intf )
35         {
36             if( getSettings()->value( "IsFirstRun", 1 ).toInt() )
37             {
38                 if( var_InheritBool( p_intf, "qt-privacy-ask") )
39                 {
40                     new FirstRun( _p, p_intf );
41                 }
42                 getSettings()->setValue( "IsFirstRun", 0 );
43             }
44         }
45         FirstRun( QWidget *, intf_thread_t * );
46     private:
47         QList<ConfigControl *> controlsList;
48         intf_thread_t *p_intf;
49         void buildPrivDialog();
50     private slots:
51         void save();
52 };
53