]> git.sesse.net Git - kdenlive/blobdiff - src/mainwindow.cpp
fix seeking issue
[kdenlive] / src / mainwindow.cpp
index f251a596d7c1cdb400b4d83ce3f1bd8361a834f7..be6354d9227ecd78612cf11bc98ebc9eb14fb6b9 100644 (file)
@@ -1,3 +1,22 @@
+/***************************************************************************
+ *   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          *
+ ***************************************************************************/
+
 
 
 #include <QTextStream>
 #include <KRuler>
 #include <KConfigDialog>
 #include <KXMLGUIFactory>
+#include <KStatusBar>
 
 #include <mlt++/Mlt.h>
 
 #include "mainwindow.h"
 #include "kdenlivesettings.h"
 #include "ui_configmisc_ui.h"
+
+#define ID_STATUS_MSG 1
+#define ID_EDITMODE_MSG 2
+#define ID_TIMELINE_MSG 3
+#define ID_TIMELINE_POS 4
+#define ID_TIMELINE_FORMAT 5
  
 MainWindow::MainWindow(QWidget *parent)
     : KXmlGuiWindow(parent),
-      fileName(QString()), m_activeDocument(NULL)
+      fileName(QString()), m_activeDocument(NULL), m_commandStack(NULL)
 {
   m_timelineArea = new KTabWidget(this);
   m_timelineArea->setHoverCloseButton(true);
   m_timelineArea->setTabReorderingEnabled(true);
   connect(m_timelineArea, SIGNAL(currentChanged (int)), this, SLOT(activateDocument()));
-  setCentralWidget(m_timelineArea);
 
+  Mlt::Factory::init(NULL);
   m_monitorManager = new MonitorManager();
-  m_commandStack = new KUndoStack(this);
 
   projectListDock = new QDockWidget(i18n("Project Tree"), this);
   projectListDock->setObjectName("project_tree");
@@ -61,27 +86,50 @@ MainWindow::MainWindow(QWidget *parent)
   transitionConfigDock->setWidget(transitionConfig);
   addDockWidget(Qt::TopDockWidgetArea, transitionConfigDock);
 
-  Mlt::Factory::init(NULL);
 
   clipMonitorDock = new QDockWidget(i18n("Clip Monitor"), this);
   clipMonitorDock->setObjectName("clip_monitor");
   m_clipMonitor = new Monitor("clip", m_monitorManager, this);
   clipMonitorDock->setWidget(m_clipMonitor);
   addDockWidget(Qt::TopDockWidgetArea, clipMonitorDock);
-  
+  //m_clipMonitor->stop();
+
   projectMonitorDock = new QDockWidget(i18n("Project Monitor"), this);
   projectMonitorDock->setObjectName("project_monitor");
   m_projectMonitor = new Monitor("project", m_monitorManager, this);
   projectMonitorDock->setWidget(m_projectMonitor);
   addDockWidget(Qt::TopDockWidgetArea, projectMonitorDock);
 
+  undoViewDock = new QDockWidget(i18n("Undo History"), this);
+  undoViewDock->setObjectName("undo_history");
+  m_undoView = new QUndoView(this);
+  undoViewDock->setWidget(m_undoView);
+  m_undoView->setStack(m_commandStack);
+  addDockWidget(Qt::TopDockWidgetArea, undoViewDock);
+
+  overviewDock = new QDockWidget(i18n("Project Overview"), this);
+  overviewDock->setObjectName("project_overview");
+  m_overView = new CustomTrackView(NULL, NULL, this);
+  overviewDock->setWidget(m_overView);
+  addDockWidget(Qt::TopDockWidgetArea, overviewDock);
+
   setupActions();
   tabifyDockWidget (projectListDock, effectListDock);
   tabifyDockWidget (projectListDock, effectStackDock);
   tabifyDockWidget (projectListDock, transitionConfigDock);
+  tabifyDockWidget (projectListDock, undoViewDock);
   projectListDock->raise();
 
   tabifyDockWidget (clipMonitorDock, projectMonitorDock);
+  setCentralWidget(m_timelineArea);
+
+  m_timecodeFormat = new KComboBox(this);
+  m_timecodeFormat->addItem(i18n("hh:mm:ss::ff"));
+  m_timecodeFormat->addItem(i18n("Frames"));
+  statusBar()->insertPermanentFixedItem("00:00:00:00", ID_TIMELINE_POS);
+  statusBar()->insertPermanentWidget(ID_TIMELINE_FORMAT, m_timecodeFormat); 
+
+  setupGUI(Default, "kdenliveui.rc");
 
   connect(projectMonitorDock, SIGNAL(visibilityChanged (bool)), m_projectMonitor, SLOT(refreshMonitor(bool)));
   connect(clipMonitorDock, SIGNAL(visibilityChanged (bool)), m_clipMonitor, SLOT(refreshMonitor(bool)));
@@ -89,9 +137,24 @@ MainWindow::MainWindow(QWidget *parent)
   connect(m_monitorManager, SIGNAL(raiseClipMonitor (bool)), this, SLOT(slotRaiseMonitor(bool)));
   m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
 
+  setAutoSaveSettings();
   newFile();
 }
 
+//virtual
+bool MainWindow::queryClose() 
+{
+  saveOptions();
+  switch ( KMessageBox::warningYesNoCancel( this, i18n("Save changes to document ?")) ) {
+       case KMessageBox::Yes :
+         // save document here. If saving fails, return false;
+         return true;
+       case KMessageBox::No :
+         return true;
+       default: // cancel
+         return false;
+  }
+}
 
 void MainWindow::slotRaiseMonitor(bool clipMonitor)
 {
@@ -99,6 +162,12 @@ void MainWindow::slotRaiseMonitor(bool clipMonitor)
   else projectMonitorDock->raise();
 }
 
+void MainWindow::slotSetClipDuration(int id, int duration)
+{
+  if (!m_activeDocument) return;
+  m_activeDocument->setProducerDuration(id, duration);
+}
+
 void MainWindow::slotConnectMonitors()
 {
 
@@ -106,6 +175,8 @@ void MainWindow::slotConnectMonitors()
 
   connect(m_projectList, SIGNAL(clipSelected(const QDomElement &)), m_clipMonitor, SLOT(slotSetXml(const QDomElement &)));
 
+  connect(m_projectList, SIGNAL(receivedClipDuration(int, int)), this, SLOT(slotSetClipDuration(int, int)));
+
   connect(m_projectList, SIGNAL(getFileProperties(const QDomElement &, int)), m_clipMonitor->render, SLOT(getFileProperties(const QDomElement &, int)));
 
   connect(m_clipMonitor->render, SIGNAL(replyGetImage(int, int, const QPixmap &, int, int)), m_projectList, SLOT(slotReplyGetImage(int, int, const QPixmap &, int, int)));
@@ -129,7 +200,10 @@ void MainWindow::setupActions()
  
   KStandardAction::open(this, SLOT(openFile()),
                         actionCollection());
+
+  m_fileOpenRecent = KStandardAction::openRecent(this, SLOT(openFile(const KUrl &)),
+                        actionCollection());
+
   KStandardAction::save(this, SLOT(saveFile()),
                         actionCollection());
  
@@ -139,21 +213,32 @@ void MainWindow::setupActions()
   KStandardAction::openNew(this, SLOT(newFile()),
                         actionCollection());
 
+  KStandardAction::preferences(this, SLOT(slotPreferences()),
+                        actionCollection());
+
   /*KStandardAction::undo(this, SLOT(undo()),
                         actionCollection());
 
   KStandardAction::redo(this, SLOT(redo()),
                         actionCollection());*/
 
-  KStandardAction::preferences(this, SLOT(slotPreferences()),
-           actionCollection());
+  readOptions();  
 
   /*m_redo = m_commandStack->createRedoAction(actionCollection());
   m_undo = m_commandStack->createUndoAction(actionCollection());*/
+}
 
-  setupGUI();
-
+void MainWindow::saveOptions()
+{
+  KSharedConfigPtr config = KGlobal::config ();
+  m_fileOpenRecent->saveEntries(KConfigGroup (config, "Recent Files"));
+  config->sync(); 
+}
 
+void MainWindow::readOptions()
+{
+  KSharedConfigPtr config = KGlobal::config ();
+  m_fileOpenRecent->loadEntries(KConfigGroup (config, "Recent Files"));
 }
  
 void MainWindow::newFile()
@@ -205,30 +290,53 @@ void MainWindow::saveFile()
  
 void MainWindow::openFile() //changed
 {
-  openFile(KFileDialog::getOpenFileName(KUrl(), "application/vnd.kde.kdenlive"));
+    KUrl url = KFileDialog::getOpenUrl(KUrl(), "application/vnd.kde.kdenlive;*.kdenlive");
+    if (url.isEmpty()) return;
+    m_fileOpenRecent->addUrl (url);
+    openFile(url);
 }
  
-void MainWindow::openFile(const QString &inputFileName) //new
+void MainWindow::openFile(const KUrl &url) //new
 {
-  KdenliveDoc *doc = new KdenliveDoc(KUrl(inputFileName), 25, 720, 576);
+  KdenliveDoc *doc = new KdenliveDoc(url, 25, 720, 576);
   TrackView *trackView = new TrackView(doc);
   m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, QIcon(), doc->documentName()));
-  connectDocument(trackView, doc);
-  
+  m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
+  //connectDocument(trackView, doc);
+}
+
+void MainWindow::slotUpdateMousePosition(int pos)
+{
+  if (m_activeDocument)
+    switch(m_timecodeFormat->currentIndex()) {
+      case 0:
+       statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
+       break;
+    default:
+      statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
+    }
 }
 
 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) //changed
 {
   //m_projectMonitor->stop();
   if (m_activeDocument) {
+    if (m_activeDocument == doc) return;
     m_activeDocument->setProducers(m_projectList->producersList());
     m_activeDocument->setRenderer(NULL);
   }
+  connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
+  connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
+  connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
   m_projectList->setDocument(doc);
   m_monitorManager->setTimecode(doc->timecode());
   doc->setRenderer(m_projectMonitor->render);
+  //m_undoView->setStack(0);
   m_commandStack = doc->commandStack();
 
+  m_overView->setScene(trackView->projectScene());
+  m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
+  //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
   QAction *redo = m_commandStack->createRedoAction(actionCollection());
   QAction *undo = m_commandStack->createUndoAction(actionCollection());
 
@@ -244,7 +352,7 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) //chang
     w->addAction(undo);
     w->addAction(redo);
   }
-  
+  m_undoView->setStack(doc->commandStack());
   m_activeDocument = doc;
 }