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