]> git.sesse.net Git - kdenlive/blobdiff - src/mainwindow.h
better handling of document switching (still some crashes)
[kdenlive] / src / mainwindow.h
index 41086b54e6561caf7272f59d48ebc32e94d4423c..7a231529df46b885259c82d067fb2e4ea5151627 100644 (file)
@@ -1,42 +1,80 @@
+/***************************************************************************
+ *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
+
 #ifndef MAINWINDOW_H
 #define MAINWINDOW_H
+
 #include <QDockWidget>
+#include <QUndoView>
+#include <QLabel>
+#include <QProgressBar>
 
 #include <KXmlGuiWindow>
 #include <KTextEdit>
 #include <KListWidget>
 #include <KTabWidget>
+#include <KUndoStack>
+#include <KRecentFilesAction>
+#include <KComboBox>
 
 #include "projectlist.h"
 #include "monitor.h"
 #include "monitormanager.h"
 #include "kdenlivedoc.h"
 #include "trackview.h"
+#include "customtrackview.h"
+#include "effectslist.h"
+#include "effectslistview.h"
+#include "effectstackview.h"
+
+
+class MainWindow : public KXmlGuiWindow {
+    Q_OBJECT
+
+public:
+    MainWindow(QWidget *parent = 0);
+
+    void parseProfiles();
+
+protected:
+    virtual bool queryClose();
 
-class MainWindow : public KXmlGuiWindow
-{
-  Q_OBJECT
-  
-  public:
-    MainWindow(QWidget *parent=0);
-    void openFile(const QString &inputFileName);
-  
-  private:
+private:
     KTabWidget* m_timelineArea;
+    QProgressBar *statusProgressBar;
+    QLabel* statusLabel;
     void setupActions();
     QString fileName;
     KdenliveDoc *m_activeDocument;
+    TrackView *m_activeTimeline;
     MonitorManager *m_monitorManager;
 
     QDockWidget *projectListDock;
     ProjectList *m_projectList;
 
     QDockWidget *effectListDock;
-    KListWidget *effectList;
+    EffectsListView *m_effectList;
+    //KListWidget *m_effectList;
 
     QDockWidget *effectStackDock;
-    KListWidget *effectStack;
+    EffectStackView *effectStack;
 
     QDockWidget *transitionConfigDock;
     KListWidget *transitionConfig;
@@ -46,8 +84,30 @@ class MainWindow : public KXmlGuiWindow
 
     QDockWidget *projectMonitorDock;
     Monitor *m_projectMonitor;
-  private slots:
+
+    QDockWidget *undoViewDock;
+    QUndoView *m_undoView;
+    KUndoStack *m_commandStack;
+    QAction *m_undo;
+    QAction *m_redo;
+
+    KComboBox *m_timecodeFormat;
+
+    QDockWidget *overviewDock;
+    CustomTrackView *m_overView;
+
+    EffectsList m_videoEffects;
+    EffectsList m_audioEffects;
+    EffectsList m_customEffects;
+
+    KRecentFilesAction *m_fileOpenRecent;
+    void readOptions();
+    void saveOptions();
+
+public slots:
+    void openFile(const KUrl &url);
+
+private slots:
     void newFile();
     void activateDocument();
     void connectDocument(TrackView*, KdenliveDoc*);
@@ -56,8 +116,16 @@ class MainWindow : public KXmlGuiWindow
     void saveFileAs();
     void saveFileAs(const QString &outputFileName);
     void slotPreferences();
+    void updateConfiguration();
     void slotConnectMonitors();
     void slotRaiseMonitor(bool clipMonitor);
+    void slotSetClipDuration(int id, int duration);
+    void slotUpdateMousePosition(int pos);
+    void slotAddEffect(QDomElement effect, GenTime pos = GenTime(), int track = -1);
+    void slotEditProfiles();
+    void slotEditProjectSettings();
+    void slotDisplayActionMessage(QAction *a);
+    void slotGotProgressInfo(KUrl url, int progress);
 };
+
 #endif