diff options
Diffstat (limited to 'libk9copy/k9mp4dlg.h')
-rw-r--r-- | libk9copy/k9mp4dlg.h | 49 |
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 + |