summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9mp4dlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 00:32:19 +0000
commit0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch)
tree8578dcddfce4191f3f7a142a37769df7add48475 /libk9copy/k9mp4dlg.h
downloadk9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz
k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9mp4dlg.h')
-rw-r--r--libk9copy/k9mp4dlg.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/libk9copy/k9mp4dlg.h b/libk9copy/k9mp4dlg.h
new file mode 100644
index 0000000..266ed47
--- /dev/null
+++ b/libk9copy/k9mp4dlg.h
@@ -0,0 +1,49 @@
+//
+// C++ Interface:
+//
+// Description:
+//
+//
+// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef K9MP4DLG_H
+#define K9MP4DLG_H
+#include "mp4dlg.h"
+#include <qimage.h>
+#include <qdatetime.h>
+
+class k9DrawImage;
+
+class k9MP4Dlg : public MP4Dlg
+{
+ Q_OBJECT
+
+public:
+ k9MP4Dlg(QWidget* parent = 0, const char* name = 0);
+ ~k9MP4Dlg();
+ /*$PUBLIC_FUNCTIONS$*/
+ void setfps(QString _fps);
+ void setsize(QString _size);
+ void setbitrate(QString _bitrate);
+ void setremain(QString _remain);
+ void setProgress(int _progress);
+ void setTitleLabel(QString _titleLabel);
+ void Cancel();
+ void setImage(QString _fileName) ;
+
+signals:
+ /*$PUBLIC_SLOTS$*/
+ void sigCancel();
+private:
+ k9DrawImage *m_wimage;
+ QTime m_timer;
+protected:
+ /*$PROTECTED_FUNCTIONS$*/
+};
+
+#endif
+