]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.h
Fix profiles dialog button:
[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     bool hasChanged();
45     bool isDefault();
46     void updateSettings();
47
48 private slots:
49     void slotUpdateDisplay();
50     void rebuildVideo4Commands();
51 #ifndef NO_JOGSHUTTLE
52     void slotCheckShuttle(int state = 0);
53     void slotUpdateShuttleDevice(int ix = 0);
54 #endif /* NO_JOGSHUTTLE */
55     void slotEditImageApplication();
56     void slotEditAudioApplication();
57     void slotEditVideoApplication();
58     void slotReadAudioDevices();
59
60 private:
61     KPageWidgetItem *page1;
62     KPageWidgetItem *page2;
63     KPageWidgetItem *page3;
64     KPageWidgetItem *page4;
65     KPageWidgetItem *page5;
66     KPageWidgetItem *page6;
67     Ui::ConfigEnv_UI m_configEnv;
68     Ui::ConfigMisc_UI m_configMisc;
69     Ui::ConfigDisplay_UI m_configDisplay;
70     Ui::ConfigCapture_UI m_configCapture;
71     Ui::ConfigJogShuttle_UI m_configShuttle;
72     Ui::ConfigSdl_UI m_configSdl;
73     QStringList m_mltProfilesList;
74     QStringList m_customProfilesList;
75     bool m_isCustomProfile;
76     QString m_defaultProfile;
77     QString m_defaultPath;
78     KProcess m_readProcess;
79     void initDevices();
80     uint m_audioDevice;
81
82 signals:
83     void customChanged();
84     void doResetProfile();
85 };
86
87
88 #endif
89