]> git.sesse.net Git - kdenlive/blobdiff - src/renderwidget.h
Allow to preserve aspect ratio in render dialog resize option:
[kdenlive] / src / renderwidget.h
index b2f5f01aaf8aec446e72aa34fd780f2434bdfe2c..5014cde4d0c4229c94b6f4561ee63f67d466554e 100644 (file)
@@ -108,10 +108,11 @@ public:
     void setRenderStatus(const QString &dest, int status, const QString &error);
     void setDocumentPath(const QString path);
     void reloadProfiles();
-    void setRenderProfile(const QString &dest, const QString &name, const QString &url);
+    void setRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &url);
     int waitingJobsCount() const;
     QString getFreeScriptName(const QString &prefix = QString());
     bool startWaitingRenderJobs();
+    void missingClips(bool hasMissing);
 
 public slots:
     void slotExport(bool scriptExport, int zoneIn, int zoneOut, const QString &playlistPath, const QString &scriptPath);
@@ -120,6 +121,7 @@ private slots:
     void slotUpdateButtons(KUrl url);
     void slotUpdateButtons();
     void refreshView();
+    void refreshCategory();
     void refreshParams();
     void slotSaveProfile();
     void slotEditProfile();
@@ -142,7 +144,10 @@ private slots:
     void slotPlayRendering(QTreeWidgetItem *item, int);
     void slotStartCurrentJob();
     void slotCopyToFavorites();
-    
+    void slotUpdateRescaleHeight(int);
+    void slotUpdateRescaleWidth(int);
+    void slotSwitchAspectRatio();
+
 private:
     Ui::RenderWidget_UI m_view;
     MltVideoProfile m_profile;
@@ -158,13 +163,15 @@ private:
     void checkRenderStatus();
     void startRendering(QTreeWidgetItem *item);
     void saveProfile(QDomElement newprofile);
+    QList <QListWidgetItem *> m_renderItems;
+    QList <QListWidgetItem *> m_renderCategory;
 
 signals:
     void abortProcess(const QString &url);
     void openDvdWizard(const QString &url, const QString &profile);
     /** Send the infos about rendering that will be saved in the document:
     (profile destination, profile name and url of rendered file */
-    void selectedRenderProfile(const QString &, const QString &, const QString &);
+    void selectedRenderProfile(const QString &, const QString &, const QString &, const QString &);
     void prepareRenderingData(bool scriptExport, bool zoneOnly, const QString &chapterFile);
     void shutdown();
 };