diff options
Diffstat (limited to 'k9author/k9avifile.h')
-rw-r--r-- | k9author/k9avifile.h | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/k9author/k9avifile.h b/k9author/k9avifile.h index 83a6f17..21f1e6a 100644 --- a/k9author/k9avifile.h +++ b/k9author/k9avifile.h @@ -12,33 +12,34 @@ #ifndef K9AVIFILE_H #define K9AVIFILE_H -#include <qobject.h> -#include <qdatetime.h> -#include <qimage.h> +#include <tqobject.h> +#include <tqdatetime.h> +#include <tqimage.h> /** @author Jean-Michel PETIT <k9copy@free.fr> */ class k9Title; -class k9AviFile : public QObject +class k9AviFile : public TQObject { Q_OBJECT + TQ_OBJECT public: - k9AviFile(k9Title *parent = 0, const char *name = 0); + k9AviFile(k9Title *tqparent = 0, const char *name = 0); ~k9AviFile(); - void setFileName ( const QString& _value ); - QString getFileName() const; + void setFileName ( const TQString& _value ); + TQString getFileName() const; - void setStart ( const QTime& _value ); - QTime getStart() const; + void setStart ( const TQTime& _value ); + TQTime getStart() const; - void setEnd ( const QTime& _value ); - QTime getEnd() const; + void setEnd ( const TQTime& _value ); + TQTime getEnd() const; - void setLabel ( const QString& _value ); - QString getLabel() const; + void setLabel ( const TQString& _value ); + TQString getLabel() const; k9Title* getTitle() const; @@ -56,17 +57,17 @@ public: void setBreakNext(bool _state); bool getBreakNext(); - void setImage(const QImage& _value); - QImage getImage() const; + void setImage(const TQImage& _value); + TQImage getImage() const; private: - QString m_fileName; - QTime m_start; - QString m_label; - QTime m_end; + TQString m_fileName; + TQTime m_start; + TQString m_label; + TQTime m_end; k9Title *m_title; - QImage m_image; + TQImage m_image; int m_num; bool m_breakNext,m_breakPrevious; k9AviFile *m_previous; @@ -74,7 +75,7 @@ private: void setTitle ( k9Title* _value ); signals: void aviFileUpdated(k9AviFile *_aviFile); - void imageChanged(const QImage &); + void imageChanged(const TQImage &); }; #endif |