X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.h;h=c0c12d74910ef327d06ea09c8f6552f95aaf2eda;hb=23f110ad06d4524f47de721a8f35e46228d8682b;hp=897e0f43602fd8af1a4d9b633f87c88b935329bf;hpb=bb32a23e9e4ed5b55320c7074b3eca686ef8c0c5;p=kdenlive diff --git a/src/mainwindow.h b/src/mainwindow.h index 897e0f43..c0c12d74 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -61,9 +61,13 @@ class JogShuttle; class DocClipBase; class Render; class Transition; +class Histogram; class Vectorscope; +class Waveform; +class RGBParade; class KActionCollection; + class MainWindow : public KXmlGuiWindow { Q_OBJECT @@ -74,12 +78,14 @@ public: /** @brief Initialises the main window. * @param MltPath (optional) path to MLT environment * @param Url (optional) file to open + * @param clipsToLoad (optional) a comma separated list of clips to import in project * * If Url is present, it will be opened, otherwhise, if openlastproject is * set, latest project will be opened. If no file is open after trying this, * a default new file will be created. */ explicit MainWindow(const QString &MltPath = QString(), - const KUrl &Url = KUrl(), QWidget *parent = 0); + const KUrl &Url = KUrl(), const QString & clipsToLoad = QString(), QWidget *parent = 0); + virtual ~MainWindow(); /** @brief Locates the MLT environment. * @param mltPath (optional) path to MLT environment @@ -136,6 +142,9 @@ private: EffectsListView *m_effectList; //KListWidget *m_effectList; + QDockWidget *m_notesDock; + KTextEdit *m_notesWidget; + QDockWidget *m_effectStackDock; EffectStackView *m_effectStack; @@ -154,12 +163,24 @@ private: QDockWidget *m_vectorscopeDock; Vectorscope *m_vectorscope; + QDockWidget *m_waveformDock; + Waveform *m_waveform; + + QDockWidget *m_RGBParadeDock; + RGBParade *m_RGBParade; + + QDockWidget *m_histogramDock; + Histogram *m_histogram; + QDockWidget *m_undoViewDock; QUndoView *m_undoView; QUndoGroup *m_commandStack; KComboBox *m_timecodeFormat; + /** This list holds all the scopes used in Kdenlive, allowing to manage some global settings */ + QList m_scopesList; + QMenu *m_videoEffectsMenu; QMenu *m_audioEffectsMenu; QMenu *m_customEffectsMenu; @@ -209,6 +230,7 @@ private: KAction *m_zoomOut; KAction *m_loopZone; KAction *m_playZone; + KAction *m_loopClip; StatusBarMessageLabel *m_messageLabel; QActionGroup *m_clipTypeGroup; KActionCollection *m_effectsActionCollection; @@ -253,15 +275,20 @@ private: * @return The mimetype */ QString getMimeType(); + /** @brief Populates the "load layout" menu. */ + void loadLayouts(); + public slots: /** @brief Prepares opening @param url. * * Checks if already open and whether backup exists */ void openFile(const KUrl &url); void slotGotProgressInfo(const QString &message, int progress); + void slotReloadEffects(); Q_SCRIPTABLE void setRenderingProgress(const QString &url, int progress); Q_SCRIPTABLE void setRenderingFinished(const QString &url, int status, const QString &error); + private slots: void newFile(bool showProjectSettings = true, bool force = false); void queryQuit(); @@ -295,10 +322,12 @@ private slots: void slotRaiseMonitor(bool clipMonitor); void slotUpdateClip(const QString &id); void slotUpdateMousePosition(int pos); - void slotAddEffect(const QDomElement effect, GenTime pos = GenTime(), int track = -1); + void slotAddEffect(const QDomElement effect); void slotEditProfiles(); void slotDetectAudioDriver(); void slotEditProjectSettings(); + /** @brief Change current document MLT profile. */ + void slotUpdateProjectProfile(const QString &profile); void slotDisplayActionMessage(QAction *a); /** @brief Turns automatic splitting of audio and video on/off. */ @@ -329,8 +358,8 @@ private slots: * * Adopted from Dolphin (src/statusbar/dolphinstatusbar.cpp) */ void slotShowZoomSliderToolTip(int zoomlevel = -1); - - void closeCurrentDocument(bool saveChanges = true); + /** @brief Close currently opened document. Returns false if something went wrong (cannot save modifications, ...). */ + bool closeCurrentDocument(bool saveChanges = true); /** @brief Deletes item in timeline, project tree or effect stack depending on focus. */ void slotDeleteItem(); void slotAddClipMarker(); @@ -383,7 +412,6 @@ private slots: void slotCopy(); void slotPaste(); void slotPasteEffects(); - void slotReloadEffects(); void slotAdjustClipMonitor(); void slotAdjustProjectMonitor(); @@ -413,13 +441,14 @@ private slots: void slotUnGroupClips(); void slotEditItemDuration(); void slotClipInProjectTree(); + //void slotClipToProjectTree(); void slotSplitAudio(); void slotUpdateClipType(QAction *action); void slotShowTimeline(bool show); void slotMaximizeCurrent(bool show); void slotTranscode(KUrl::List urls = KUrl::List()); void slotTranscodeClip(); - void slotSetDocumentRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &file); + void slotSetDocumentRenderProfile(QMap props); void slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile); /** @brief Switches between displaying frames or timecode. @@ -447,6 +476,21 @@ private slots: void slotDeleteProjectClips(QStringList ids, QMap folderids); void slotShowTitleBars(bool show); void slotSwitchTitles(); + /** @brief Update the capture folder if user asked a change. */ + void slotUpdateCaptureFolder(); + + /** @brief Saves the widgets layout */ + void slotSaveLayout(QAction*); + void slotLoadLayout(QAction*); + + /** @brief The monitor informs that it needs (or not) to have frames sent by the renderer. */ + void slotMonitorRequestRenderFrame(bool request); + /** @brief Check if someone needs the render frame sent. */ + void slotUpdateScopeFrameRequest(); + /** @brief Check if someone needs the render frame sent. */ + void slotDoUpdateScopeFrameRequest(); + /** @brief When switching between monitors, update the visible scopes. */ + void slotUpdateColorScopes(); signals: Q_SCRIPTABLE void abortRenderJob(const QString &url);