summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9mp4dlg.h
blob: 266ed47ce89798f0516161ddea8c18b51bac08a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// C++ Interface: 
//
// Description: 
//
//
// Author: Jean-Michel PETIT <[email protected]>, (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