diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 |
commit | 479f5f799523bffbcc83dff581a2299c047c6fff (patch) | |
tree | 186aae707ed02aac6c7cab2fb14e97f72aca5e36 /kjsembed/bindings/movie_imp.h | |
parent | f1dbff6145c98324ff82e34448b7483727e8ace4 (diff) | |
download | tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kjsembed/bindings/movie_imp.h')
-rw-r--r-- | kjsembed/bindings/movie_imp.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kjsembed/bindings/movie_imp.h b/kjsembed/bindings/movie_imp.h index 2b3024e4..74508e99 100644 --- a/kjsembed/bindings/movie_imp.h +++ b/kjsembed/bindings/movie_imp.h @@ -23,14 +23,14 @@ #define KJSEMBED_MOVIE_IMP_H #include "bindingobject.h" -#include <qmovie.h> -#include <qimage.h> +#include <tqmovie.h> +#include <tqimage.h> namespace KJSEmbed { namespace Bindings { /** - * QObject Binding for QMovie. + * TQObject Binding for TQMovie. * * @author Ian Reinhart Geiser, geiseri@kde.org * @version $Id$ @@ -39,22 +39,22 @@ class Movie : public BindingObject { Q_OBJECT - Q_PROPERTY( QColor setBackgroundColor READ backgroundColor ) + Q_PROPERTY( TQColor setBackgroundColor READ backgroundColor ) Q_PROPERTY( int setSpeed READ speed ) public: - Movie( QObject *parent=0, const char *name=0 ); + Movie( TQObject *parent=0, const char *name=0 ); virtual ~Movie(); - QColor backgroundColor() const; - void setBackgroundColor( const QColor &c ); + TQColor backgroundColor() const; + void setBackgroundColor( const TQColor &c ); int speed() const; void setSpeed ( int percent ); public slots: - bool load( const QString &filename, int bufsize = 1024); - QRect getValidRect(); - QPixmap framePixmap(); - QImage frameImage(); + bool load( const TQString &filename, int bufsize = 1024); + TQRect getValidRect(); + TQPixmap framePixmap(); + TQImage frameImage(); bool isNull(); int frameNumber(); int steps(); @@ -68,7 +68,7 @@ public slots: void restart(); private: - QMovie movie; + TQMovie movie; }; } // namespace |