]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.h
[PATCH 1/2] Kill a bunch of unused member variables
[kdenlive] / src / kdenlivesettingsdialog.h
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef KDENLIVESETTINGSDIALOG_H
22 #define KDENLIVESETTINGSDIALOG_H
23
24 #include <QDialog>
25
26 #include <KConfigDialog>
27 #include <KProcess>
28
29 #include "ui_configmisc_ui.h"
30 #include "ui_configenv_ui.h"
31 #include "ui_configdisplay_ui.h"
32 #include "ui_configcapture_ui.h"
33 #include "ui_configjogshuttle_ui.h"
34 #include "ui_configsdl_ui.h"
35
36 class KdenliveSettingsDialog : public KConfigDialog
37 {
38     Q_OBJECT
39
40 public:
41     KdenliveSettingsDialog(QWidget * parent = 0);
42     ~KdenliveSettingsDialog();
43     void showPage(int page, int option);
44     void checkProfile();
45
46 protected slots:
47     void updateSettings();
48
49
50 private slots:
51     void slotUpdateDisplay();
52     void rebuildVideo4Commands();
53 #ifndef NO_JOGSHUTTLE
54     void slotCheckShuttle(int state = 0);
55     void slotUpdateShuttleDevice(int ix = 0);
56 #endif /* NO_JOGSHUTTLE */
57     void slotEditImageApplication();
58     void slotEditAudioApplication();
59     void slotEditVideoApplication();
60     void slotReadAudioDevices();
61     void slotUpdateRmdRegionStatus();
62     void slotCheckAlsaDriver();
63
64 private:
65     KPageWidgetItem *page1;
66     KPageWidgetItem *page2;
67     KPageWidgetItem *page3;
68     KPageWidgetItem *page4;
69     KPageWidgetItem *page5;
70     KPageWidgetItem *page6;
71     Ui::ConfigEnv_UI m_configEnv;
72     Ui::ConfigMisc_UI m_configMisc;
73     Ui::ConfigDisplay_UI m_configDisplay;
74     Ui::ConfigCapture_UI m_configCapture;
75     Ui::ConfigJogShuttle_UI m_configShuttle;
76     Ui::ConfigSdl_UI m_configSdl;
77     QString m_defaultProfile;
78     QString m_defaultPath;
79     KProcess m_readProcess;
80     void initDevices();
81
82 signals:
83     void customChanged();
84     void doResetProfile();
85     void updatePreviewSettings();
86     void updateCaptureFolder();
87 };
88
89
90 #endif
91