]> git.sesse.net Git - kdenlive/blobdiff - renderer/renderjob.h
Const'ref
[kdenlive] / renderer / renderjob.h
index 346ab94e2e34f5e276e08ecef2b2d4b5c2aa2059..a8e093604ebff493a7ac15c9614d7e78e4657338 100644 (file)
@@ -34,8 +34,9 @@ class RenderJob : public QObject
     Q_OBJECT
 
 public:
-    RenderJob(bool erase, bool usekuiserver, const QString& renderer, const QString& profile, const QString& rendermodule, const QString& player, const QString& scenelist, const QString& dest, const QStringList& preargs, const QStringList& args, int in = -1, int out = -1);
+    RenderJob(bool erase, bool usekuiserver, int pid, const QString& renderer, const QString& profile, const QString& rendermodule, const QString& player, const QString& scenelist, const QString& dest, const QStringList& preargs, const QStringList& args, int in = -1, int out = -1);
     ~RenderJob();
+    void setLocale(const QString &locale);
 
 public slots:
     void start();
@@ -69,6 +70,8 @@ private:
     QTemporaryFile m_logfile;
     /** @brief Used to write to the log file. */
     QTextStream m_logstream;
+    /** @brief The process id of the Kdenlive instance, used to get the dbus service. */
+    int m_pid;
 
 signals:
     void renderingFinished();