diff options
Diffstat (limited to 'kdgantt/KDGanttSemiSizingControl.h')
| -rw-r--r-- | kdgantt/KDGanttSemiSizingControl.h | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/kdgantt/KDGanttSemiSizingControl.h b/kdgantt/KDGanttSemiSizingControl.h index 6fb56e32c..6e7fec6ac 100644 --- a/kdgantt/KDGanttSemiSizingControl.h +++ b/kdgantt/KDGanttSemiSizingControl.h @@ -26,8 +26,8 @@ ** licensing are not clear to you. ** ** As a special exception, permission is given to link this program - ** with any edition of Qt, and distribute the resulting executable, - ** without including the source code for Qt in the source distribution. + ** with any edition of TQt, and distribute the resulting executable, + ** without including the source code for TQt in the source distribution. ** **********************************************************************/ @@ -36,30 +36,31 @@ #define KDGANTTSEMISIZINGCONTROL_H #include "KDGanttSizingControl.h" -#include <qlayout.h> -class QPushButton; -class QBoxLayout; +#include <tqlayout.h> +class TQPushButton; +class TQBoxLayout; class KDGanttSemiSizingControl : public KDGanttSizingControl { - Q_PROPERTY( ArrowPosition arrowPosition READ arrowPosition WRITE setArrowPosition ) + TQ_PROPERTY( ArrowPosition arrowPosition READ arrowPosition WRITE setArrowPosition ) Q_ENUMS( ArrowPosition ) Q_OBJECT + TQ_OBJECT public: enum ArrowPosition { Before, After }; - KDGanttSemiSizingControl( QWidget* parent = 0, const char* name = 0 ); - KDGanttSemiSizingControl( Orientation orientation, QWidget* parent = 0, + KDGanttSemiSizingControl( TQWidget* tqparent = 0, const char* name = 0 ); + KDGanttSemiSizingControl( Qt::Orientation orientation, TQWidget* tqparent = 0, const char* name = 0 ); KDGanttSemiSizingControl( ArrowPosition arrowPosition, - Orientation orientation, QWidget* parent = 0, + Qt::Orientation orientation, TQWidget* tqparent = 0, const char* name = 0 ); - void setMinimizedWidget( QWidget* widget ); - void setMaximizedWidget( QWidget* widget ); - QWidget* minimizedWidget() const; - QWidget* maximizedWidget() const; + void setMinimizedWidget( TQWidget* widget ); + void setMaximizedWidget( TQWidget* widget ); + TQWidget* minimizedWidget() const; + TQWidget* maximizedWidget() const; void setOrientation( Qt::Orientation orientation ); Qt::Orientation orientation() const; @@ -75,15 +76,15 @@ protected: void setup(); void init(); enum Direction {Left, Right, Up, Down }; - QPixmap pixmap( Direction ); + TQPixmap pixmap( Direction ); private: - Orientation _orient; + Qt::Orientation _orient; ArrowPosition _arrowPos; - QWidget* _minimizedWidget; - QWidget* _maximizedWidget; - QBoxLayout* _layout; - QPushButton* _but; + TQWidget* _minimizedWidget; + TQWidget* _maximizedWidget; + TQBoxLayout* _layout; + TQPushButton* _but; }; |
