]> git.sesse.net Git - kdenlive/blob - src/mainwindow.h
better handling of document switching (still some crashes)
[kdenlive] / src / mainwindow.h
1 /***************************************************************************
2  *   Copyright (C) 2007 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 MAINWINDOW_H
22 #define MAINWINDOW_H
23
24 #include <QDockWidget>
25 #include <QUndoView>
26 #include <QLabel>
27 #include <QProgressBar>
28
29 #include <KXmlGuiWindow>
30 #include <KTextEdit>
31 #include <KListWidget>
32 #include <KTabWidget>
33 #include <KUndoStack>
34 #include <KRecentFilesAction>
35 #include <KComboBox>
36
37 #include "projectlist.h"
38 #include "monitor.h"
39 #include "monitormanager.h"
40 #include "kdenlivedoc.h"
41 #include "trackview.h"
42 #include "customtrackview.h"
43 #include "effectslist.h"
44 #include "effectslistview.h"
45 #include "effectstackview.h"
46
47
48 class MainWindow : public KXmlGuiWindow {
49     Q_OBJECT
50
51 public:
52     MainWindow(QWidget *parent = 0);
53
54     void parseProfiles();
55
56 protected:
57     virtual bool queryClose();
58
59 private:
60     KTabWidget* m_timelineArea;
61     QProgressBar *statusProgressBar;
62     QLabel* statusLabel;
63     void setupActions();
64     QString fileName;
65     KdenliveDoc *m_activeDocument;
66     TrackView *m_activeTimeline;
67     MonitorManager *m_monitorManager;
68
69     QDockWidget *projectListDock;
70     ProjectList *m_projectList;
71
72     QDockWidget *effectListDock;
73     EffectsListView *m_effectList;
74     //KListWidget *m_effectList;
75
76     QDockWidget *effectStackDock;
77     EffectStackView *effectStack;
78
79     QDockWidget *transitionConfigDock;
80     KListWidget *transitionConfig;
81
82     QDockWidget *clipMonitorDock;
83     Monitor *m_clipMonitor;
84
85     QDockWidget *projectMonitorDock;
86     Monitor *m_projectMonitor;
87
88     QDockWidget *undoViewDock;
89     QUndoView *m_undoView;
90     KUndoStack *m_commandStack;
91     QAction *m_undo;
92     QAction *m_redo;
93
94     KComboBox *m_timecodeFormat;
95
96     QDockWidget *overviewDock;
97     CustomTrackView *m_overView;
98
99     EffectsList m_videoEffects;
100     EffectsList m_audioEffects;
101     EffectsList m_customEffects;
102
103     KRecentFilesAction *m_fileOpenRecent;
104     void readOptions();
105     void saveOptions();
106
107 public slots:
108     void openFile(const KUrl &url);
109
110 private slots:
111     void newFile();
112     void activateDocument();
113     void connectDocument(TrackView*, KdenliveDoc*);
114     void openFile();
115     void saveFile();
116     void saveFileAs();
117     void saveFileAs(const QString &outputFileName);
118     void slotPreferences();
119     void updateConfiguration();
120     void slotConnectMonitors();
121     void slotRaiseMonitor(bool clipMonitor);
122     void slotSetClipDuration(int id, int duration);
123     void slotUpdateMousePosition(int pos);
124     void slotAddEffect(QDomElement effect, GenTime pos = GenTime(), int track = -1);
125     void slotEditProfiles();
126     void slotEditProjectSettings();
127     void slotDisplayActionMessage(QAction *a);
128     void slotGotProgressInfo(KUrl url, int progress);
129 };
130
131 #endif