]> git.sesse.net Git - kdenlive/blob - src/mainwindow.h
Add effect files
[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
28 #include <KXmlGuiWindow>
29 #include <KTextEdit>
30 #include <KListWidget>
31 #include <KTabWidget>
32 #include <KUndoStack>
33 #include <KRecentFilesAction>
34 #include <KComboBox>
35
36 #include "projectlist.h"
37 #include "monitor.h"
38 #include "monitormanager.h"
39 #include "kdenlivedoc.h"
40 #include "trackview.h"
41 #include "customtrackview.h"
42 #include "effectslist.h"
43
44 class MainWindow : public KXmlGuiWindow
45 {
46   Q_OBJECT
47   
48   public:
49     MainWindow(QWidget *parent=0);
50
51   protected:
52     virtual bool queryClose();
53   
54   private:
55     KTabWidget* m_timelineArea;
56     void setupActions();
57     void fillEffectsList();
58     QString fileName;
59     KdenliveDoc *m_activeDocument;
60     MonitorManager *m_monitorManager;
61
62     QDockWidget *projectListDock;
63     ProjectList *m_projectList;
64
65     QDockWidget *effectListDock;
66     KListWidget *m_effectList;
67
68     QDockWidget *effectStackDock;
69     KListWidget *effectStack;
70
71     QDockWidget *transitionConfigDock;
72     KListWidget *transitionConfig;
73
74     QDockWidget *clipMonitorDock;
75     Monitor *m_clipMonitor;
76
77     QDockWidget *projectMonitorDock;
78     Monitor *m_projectMonitor;
79
80     QDockWidget *undoViewDock;
81     QUndoView *m_undoView;
82     KUndoStack *m_commandStack;
83     QAction *m_undo;
84     QAction *m_redo;
85
86     KComboBox *m_timecodeFormat;
87
88     QDockWidget *overviewDock;
89     CustomTrackView *m_overView;
90
91     EffectsList m_videoEffects;
92     EffectsList m_audioEffects;
93     EffectsList m_customEffects;
94
95     KRecentFilesAction *m_fileOpenRecent;
96     void readOptions();
97     void saveOptions();
98
99   public slots:
100     void openFile(const KUrl &url);
101
102
103   private slots:
104     void newFile();
105     void activateDocument();
106     void connectDocument(TrackView*, KdenliveDoc*);
107     void openFile();
108     void saveFile();
109     void saveFileAs();
110     void saveFileAs(const QString &outputFileName);
111     void slotPreferences();
112     void slotConnectMonitors();
113     void slotRaiseMonitor(bool clipMonitor);
114     void slotSetClipDuration(int id, int duration);
115     void slotUpdateMousePosition(int pos);
116 };
117  
118 #endif