diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kghostview/kgvpagedecorator.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kghostview/kgvpagedecorator.h')
-rw-r--r-- | kghostview/kgvpagedecorator.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kghostview/kgvpagedecorator.h b/kghostview/kgvpagedecorator.h index 72ceb956..40839fdc 100644 --- a/kghostview/kgvpagedecorator.h +++ b/kghostview/kgvpagedecorator.h @@ -19,43 +19,43 @@ #ifndef KGVPAGEDECORATOR_H #define KGVPAGEDECORATOR_H -#include <qhbox.h> +#include <tqhbox.h> class KGVPageDecorator : public QHBox { public: - KGVPageDecorator( QWidget* parent = 0, const char* name = 0 ); + KGVPageDecorator( TQWidget* parent = 0, const char* name = 0 ); ~KGVPageDecorator() { ; } unsigned int margin() const; unsigned int borderWidth() const; /** - * Reimplemented from QObject to let mouse events from child widgets + * Reimplemented from TQObject to let mouse events from child widgets * appear to come from this widget. */ - bool eventFilter( QObject*, QEvent* ); + bool eventFilter( TQObject*, TQEvent* ); protected: /** - * Reimplemented from QObject to automatically insert an event filter + * Reimplemented from TQObject to automatically insert an event filter * on child widgets. */ - virtual void childEvent( QChildEvent* ); + virtual void childEvent( TQChildEvent* ); /** - * Reimplemented from QFrame to draw a pageshadow like frame. + * Reimplemented from TQFrame to draw a pageshadow like frame. */ - virtual void drawFrame( QPainter* ); + virtual void drawFrame( TQPainter* ); /** * Draw the mask of both the frame and the contents in order to create a * partially transparent frame. */ - virtual void drawMask( QPainter* ); + virtual void drawMask( TQPainter* ); /** - * Reimplemented from QWidget. It uses @ref drawMask() to draw the mask + * Reimplemented from TQWidget. It uses @ref drawMask() to draw the mask * of the frame when transparency is required. */ virtual void updateMask(); @@ -63,7 +63,7 @@ protected: private: unsigned int _margin; unsigned int _borderWidth; - QPoint _shadowOffset; + TQPoint _shadowOffset; }; inline unsigned int KGVPageDecorator::margin() const |