]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.h
Some config dialog cleanup
[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     Q_OBJECT
38
39 public:
40     KdenliveSettingsDialog(QWidget * parent = 0);
41     ~KdenliveSettingsDialog();
42     void showPage(int page, int option);
43     void checkProfile();
44
45 protected slots:
46     void updateSettings();
47
48
49 private slots:
50     void slotUpdateDisplay();
51     void rebuildVideo4Commands();
52 #ifndef NO_JOGSHUTTLE
53     void slotCheckShuttle(int state = 0);
54     void slotUpdateShuttleDevice(int ix = 0);
55 #endif /* NO_JOGSHUTTLE */
56     void slotEditImageApplication();
57     void slotEditAudioApplication();
58     void slotEditVideoApplication();
59     void slotReadAudioDevices();
60     void slotUpdateRmdRegionStatus();
61
62 private:
63     KPageWidgetItem *page1;
64     KPageWidgetItem *page2;
65     KPageWidgetItem *page3;
66     KPageWidgetItem *page4;
67     KPageWidgetItem *page5;
68     KPageWidgetItem *page6;
69     Ui::ConfigEnv_UI m_configEnv;
70     Ui::ConfigMisc_UI m_configMisc;
71     Ui::ConfigDisplay_UI m_configDisplay;
72     Ui::ConfigCapture_UI m_configCapture;
73     Ui::ConfigJogShuttle_UI m_configShuttle;
74     Ui::ConfigSdl_UI m_configSdl;
75     QStringList m_mltProfilesList;
76     QStringList m_customProfilesList;
77     bool m_isCustomProfile;
78     QString m_defaultProfile;
79     QString m_defaultPath;
80     KProcess m_readProcess;
81     void initDevices();
82
83 signals:
84     void customChanged();
85     void doResetProfile();
86     void updatePreviewSettings();
87 };
88
89
90 #endif
91