X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.cpp;h=b74b6c19995d25d1cf2b552aa6f7d117fc61b09d;hb=3a12d3e1275f0d3e9101922af2b80cb8d8d82671;hp=136e61ece619d59b8bb244a5c1d10d0ecc6f0c98;hpb=727438e4c233585f94c8f03e3bfd0851eb956499;p=kdenlive diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 136e61ec..b74b6c19 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -57,6 +57,7 @@ #include "mainwindow.h" +#include "mainwindowadaptor.h" #include "kdenlivesettings.h" #include "kdenlivesettingsdialog.h" #include "initeffects.h" @@ -113,6 +114,12 @@ MainWindow::MainWindow(const QString &MltPath, const KUrl & Url, QWidget *parent m_jogProcess(NULL), #endif /* NO_JOGSHUTTLE */ m_findActivated(false), m_initialized(false) { + + // Create DBus interface + new MainWindowAdaptor(this); + QDBusConnection dbus = QDBusConnection::sessionBus(); + dbus.registerObject("/MainWindow", this); + setlocale(LC_NUMERIC, "POSIX"); setFont(KGlobalSettings::toolBarFont()); parseProfiles(MltPath); @@ -802,6 +809,10 @@ void MainWindow::setupActions() { collection->addAction("monitor_loop_zone", m_loopZone); connect(m_loopZone, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotLoopZone())); + KAction *dvdWizard = new KAction(KIcon("media-optical"), i18n("Dvd Wizard"), this); + collection->addAction("dvd_wizard", dvdWizard); + connect(dvdWizard, SIGNAL(triggered(bool)), this, SLOT(slotDvdWizard())); + KAction *markIn = collection->addAction("mark_in"); markIn->setText(i18n("Set In Point")); markIn->setShortcut(Qt::Key_I); @@ -1135,7 +1146,15 @@ void MainWindow::closeCurrentDocument() { } bool MainWindow::saveFileAs(const QString &outputFileName) { - QDomDocument currentSceneList = m_projectMonitor->sceneList(); + QDomDocument currentSceneList; + if (KdenliveSettings::dropbframes()) { + KdenliveSettings::setDropbframes(false); + m_activeDocument->clipManager()->updatePreviewSettings(); + currentSceneList = m_projectMonitor->sceneList(); + KdenliveSettings::setDropbframes(true); + m_activeDocument->clipManager()->updatePreviewSettings(); + } else currentSceneList = m_projectMonitor->sceneList(); + if (m_activeDocument->saveSceneList(outputFileName, currentSceneList) == false) return false; @@ -1238,8 +1257,7 @@ void MainWindow::openFile(const KUrl &url) { } void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale) { - KdenliveDoc *doc; - doc = new KdenliveDoc(url, KUrl(), m_commandStack, QString(), QPoint(3, 2), m_projectMonitor->render, this); + KdenliveDoc *doc = new KdenliveDoc(url, KUrl(), m_commandStack, QString(), QPoint(3, 2), m_projectMonitor->render, this); if (stale == NULL) { stale = new KAutoSaveFile(url, doc); doc->m_autosave = stale; @@ -1367,6 +1385,7 @@ void MainWindow::slotEditProjectSettings() { m_monitorManager->resetProfiles(m_activeDocument->timecode()); if (m_renderWidget) m_renderWidget->setProfile(m_activeDocument->mltProfile()); m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description()); + m_activeDocument->clipManager()->resetProducersList(m_projectMonitor->render->producersList()); // We need to desactivate & reactivate monitors to get a refresh m_monitorManager->switchMonitors(); @@ -1379,6 +1398,8 @@ void MainWindow::slotRenderProject() { if (!m_renderWidget) { m_renderWidget = new RenderWidget(this); connect(m_renderWidget, SIGNAL(doRender(const QString&, const QString&, const QStringList &, const QStringList &, bool, bool, double, double, bool)), this, SLOT(slotDoRender(const QString&, const QString&, const QStringList &, const QStringList &, bool, bool, double, double, bool))); + connect(m_renderWidget, SIGNAL(abortProcess(const QString &)), this, SIGNAL(abortRenderJob(const QString &))); + connect(m_renderWidget, SIGNAL(openDvdWizard(const QString &, const QString &)), this, SLOT(slotDvdWizard(const QString &, const QString &))); if (m_activeDocument) { m_renderWidget->setProfile(m_activeDocument->mltProfile()); m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration()); @@ -1403,7 +1424,15 @@ void MainWindow::slotDoRender(const QString &dest, const QString &render, const temp.setAutoRemove(false); temp.setSuffix(".westley"); if (temp.open()) { - m_projectMonitor->saveSceneList(temp.fileName()); + + if (KdenliveSettings::dropbframes()) { + KdenliveSettings::setDropbframes(false); + m_activeDocument->clipManager()->updatePreviewSettings(); + m_projectMonitor->saveSceneList(temp.fileName()); + KdenliveSettings::setDropbframes(true); + m_activeDocument->clipManager()->updatePreviewSettings(); + } else m_projectMonitor->saveSceneList(temp.fileName()); + QStringList args; args << "-erase"; if (zoneOnly) args << "in=" + QString::number(in) << "out=" + QString::number(out); @@ -1418,6 +1447,7 @@ void MainWindow::slotDoRender(const QString &dest, const QString &render, const } if (!QFile::exists(KdenliveSettings::rendererpath())) { KMessageBox::sorry(this, i18n("Cannot find the inigo program required for rendering (part of Mlt)")); + setRenderingProgress(dest, -3); return; } args << KdenliveSettings::rendererpath() << m_activeDocument->profilePath() << render << videoPlayer; @@ -1442,6 +1472,14 @@ void MainWindow::slotDoRender(const QString &dest, const QString &render, const } } +void MainWindow::setRenderingProgress(const QString &url, int progress) { + if (m_renderWidget) m_renderWidget->setRenderJob(url, progress); +} + +void MainWindow::setRenderingFinished(const QString &url, int status, const QString &error) { + if (m_renderWidget) m_renderWidget->setRenderStatus(url, status, error); +} + void MainWindow::slotUpdateMousePosition(int pos) { if (m_activeDocument) switch (m_timecodeFormat->currentIndex()) { @@ -1454,6 +1492,7 @@ void MainWindow::slotUpdateMousePosition(int pos) { } void MainWindow::slotUpdateDocumentState(bool modified) { + if (!m_activeDocument) return; setCaption(m_activeDocument->description(), modified); m_saveAction->setEnabled(modified); if (modified) { @@ -1489,7 +1528,6 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //cha disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated())); disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool))); - disconnect(m_activeDocument, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool))); disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &))); disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &))); disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &))); @@ -1532,6 +1570,9 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //cha effectStack->updateProjectFormat(doc->mltProfile(), doc->timecode()); connect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *))); connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified())); + connect(m_projectList, SIGNAL(clipNameChanged(const QString, const QString)), trackView->projectView(), SLOT(clipNameChanged(const QString, const QString))); + + connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor())); connect(trackView, SIGNAL(insertTrack(int)), this, SLOT(slotInsertTrack(int))); connect(trackView, SIGNAL(deleteTrack(int)), this, SLOT(slotDeleteTrack(int))); @@ -1541,7 +1582,6 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //cha connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint))); connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int))); connect(doc, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool))); - connect(doc, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool))); connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &))); connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &))); connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &))); @@ -1594,6 +1634,7 @@ void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //cha setCaption(doc->description(), doc->isModified()); m_saveAction->setEnabled(doc->isModified()); m_activeDocument = doc; + if (KdenliveSettings::dropbframes()) slotUpdatePreviewSettings(); // set tool to select tool m_buttonSelectTool->setChecked(true); @@ -1624,11 +1665,19 @@ void MainWindow::slotPreferences(int page, int option) { KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this); connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration())); connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles())); + connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings())); //connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings())); dialog->show(); if (page != -1) dialog->showPage(page, option); } +void MainWindow::slotUpdatePreviewSettings() { + if (m_activeDocument) { + m_clipMonitor->slotSetXml(NULL, 0); + m_activeDocument->updatePreviewSettings(); + } +} + void MainWindow::updateConfiguration() { //TODO: we should apply settings to all projects, not only the current one if (m_activeTimeline) { @@ -1645,11 +1694,6 @@ void MainWindow::updateConfiguration() { } -/*void MainWindow::slotUpdatePreviewSettings() { - //TODO: perform operation on all open documents - m_activeDocument->clipManager()->updatePreviewSettings(); -}*/ - void MainWindow::slotSwitchVideoThumbs() { KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails()); @@ -1941,7 +1985,7 @@ void MainWindow::slotShowClipProperties(DocClipBase *clip) { doc.setContent(clip->getProperty("xmldata")); dia_ui->setXml(doc); if (dia_ui->exec() == QDialog::Accepted) { - QPixmap pix = dia_ui->renderedPixmap(); + QImage pix = dia_ui->renderedPixmap(); pix.save(path); //slotAddClipFile(KUrl("/tmp/kdenlivetitle.png"), QString(), -1); //m_clipManager->slotEditTextClipFile(id, dia_ui->xml().toString()); @@ -2195,4 +2239,10 @@ void MainWindow::slotAutoTransition() { m_activeTimeline->projectView()->autoTransition(); } +void MainWindow::slotDvdWizard(const QString &url, const QString &profile) { + DvdWizard *w = new DvdWizard(url, profile, this); + w->exec(); +} + + #include "mainwindow.moc"