X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmainwindow.h;h=42894c826234abcdac22776bfbe5ade8423d61f3;hb=0a381233be965974d175f34899ed5422e71e6d00;hp=694c03370755519eb93bcc85cc82df3e71551d1f;hpb=2aef03a295cdaf5bfd59c241dd349bf9f02c8d26;p=kdenlive diff --git a/src/mainwindow.h b/src/mainwindow.h index 694c0337..42894c82 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -37,12 +37,14 @@ #include #include #include +#include #include "effectslist.h" #include "gentime.h" #include "definitions.h" #include "statusbarmessagelabel.h" #include "dvdwizard.h" +#include "stopmotion/stopmotion.h" class KdenliveDoc; class TrackView; @@ -66,6 +68,7 @@ class Vectorscope; class Waveform; class RGBParade; class KActionCollection; +class AudioSignal; class MainWindow : public KXmlGuiWindow { @@ -77,12 +80,13 @@ 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. @@ -140,6 +144,9 @@ private: EffectsListView *m_effectList; //KListWidget *m_effectList; + QDockWidget *m_notesDock; + KTextEdit *m_notesWidget; + QDockWidget *m_effectStackDock; EffectStackView *m_effectStack; @@ -167,12 +174,18 @@ private: QDockWidget *m_histogramDock; Histogram *m_histogram; + QDockWidget *m_audiosignalDock; + AudioSignal *m_audiosignal; + 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; @@ -182,6 +195,9 @@ private: QMenu *m_timelineContextTransitionMenu; KUrl m_startUrl; + /** Actions used in the stopmotion widget */ + KActionCategory *m_stopmotion_actions; + /** @brief Shortcut to remove the focus from any element. * * It allows to get out of e.g. text input fields and to press another @@ -222,6 +238,7 @@ private: KAction *m_zoomOut; KAction *m_loopZone; KAction *m_playZone; + KAction *m_loopClip; StatusBarMessageLabel *m_messageLabel; QActionGroup *m_clipTypeGroup; KActionCollection *m_effectsActionCollection; @@ -266,15 +283,22 @@ private: * @return The mimetype */ QString getMimeType(); + /** @brief Populates the "load layout" menu. */ + void loadLayouts(); + + StopmotionWidget *m_stopmotion; + 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(); @@ -308,10 +332,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. */ @@ -342,14 +368,21 @@ 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(); void slotDeleteClipMarker(); void slotDeleteAllClipMarkers(); void slotEditClipMarker(); + + /** @brief Adds marker or auide at the current position without showing the marker dialog. + * + * Adds a marker if clip monitor is active, otherwise a guide. + * The comment is set to the current position (therefore not dialog). + * This can be useful to mark something during playback. */ + void slotAddMarkerGuideQuickly(); void slotCutTimelineClip(); void slotInsertClipOverwrite(); void slotSelectTimelineClip(); @@ -396,7 +429,6 @@ private slots: void slotCopy(); void slotPaste(); void slotPasteEffects(); - void slotReloadEffects(); void slotAdjustClipMonitor(); void slotAdjustProjectMonitor(); @@ -420,7 +452,6 @@ private slots: /** @brief Lets the sampleplugin create a generator. */ void generateClip(); void slotZoneMoved(int start, int end); - void slotUpdatePreviewSettings(); void slotDvdWizard(const QString &url = QString(), const QString &profile = "dv_pal"); void slotGroupClips(); void slotUnGroupClips(); @@ -461,6 +492,31 @@ 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 Apply new properties to a clip */ + void slotApplyNewClipProperties(const QString id, QMap props, QMap newprops, bool refresh, bool reload); + + /** @brief Delete a clip from current project */ + void slotDeleteClip(const QString &id); + + /** @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(); + /** @brief Switch current monitor to fullscreen. */ + void slotSwitchFullscreen(); + /** @brief Open the stopmotion dialog. */ + void slotOpenStopmotion(); signals: Q_SCRIPTABLE void abortRenderJob(const QString &url);