diff options
Diffstat (limited to 'kommander/editor/layout.h')
-rw-r--r-- | kommander/editor/layout.h | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/kommander/editor/layout.h b/kommander/editor/layout.h index c8b85a3a..107a4083 100644 --- a/kommander/editor/layout.h +++ b/kommander/editor/layout.h @@ -1,7 +1,7 @@ /********************************************************************** ** Copyright (C) 2000 Trolltech AS. All rights reserved. ** -** This file is part of Qt Designer. +** This file is part of TQt Designer. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software @@ -31,9 +31,10 @@ class FormWindow; class TQPaintEvent; -class Layout : public QObject +class Layout : public TQObject { Q_OBJECT + TQ_OBJECT public: Layout( const TQWidgetList &wl, TQWidget *p, FormWindow *fw, TQWidget *lb, bool doSetup = TRUE, bool splitter = FALSE ); @@ -42,15 +43,15 @@ public: virtual void doLayout() = 0; virtual void undoLayout(); virtual void breakLayout(); - virtual bool prepareLayout( bool &needMove, bool &needReparent ); - virtual void finishLayout( bool needMove, TQLayout *layout ); + virtual bool prepareLayout( bool &needMove, bool &needRetqparent ); + virtual void finishLayout( bool needMove, TQLayout *tqlayout ); protected: TQWidgetList widgets; - TQWidget *parent; + TQWidget *tqparent; TQPoint startPoint; TQMap<TQGuardedPtr<TQWidget>, TQRect> geometries; - TQWidget *layoutBase; + TQWidget *tqlayoutBase; FormWindow *formWindow; TQRect oldGeometry; bool isBreak; @@ -108,16 +109,17 @@ protected: }; -class Spacer : public QWidget +class Spacer : public TQWidget { Q_OBJECT + TQ_OBJECT - Q_OVERRIDE( TQCString name ) - Q_PROPERTY( Orientation orientation READ orientation WRITE setOrientation ) + TQ_OVERRIDE( TQCString name ) + TQ_PROPERTY( Qt::Orientation orientation READ orientation WRITE setOrientation ) Q_ENUMS( SizeType ) - Q_PROPERTY( SizeType sizeType READ sizeType WRITE setSizeType ) - Q_PROPERTY( TQSize sizeHint READ sizeHint WRITE setSizeHint DESIGNABLE true STORED true ) - Q_OVERRIDE( TQRect geometry DESIGNABLE false ) + TQ_PROPERTY( SizeType sizeType READ sizeType WRITE setSizeType ) + TQ_PROPERTY( TQSize tqsizeHint READ tqsizeHint WRITE setSizeHint DESIGNABLE true STORED true ) + TQ_OVERRIDE( TQRect tqgeometry DESIGNABLE false ) private: enum { HSize = 6, HMask = 0x3f, VMask = HMask << HSize, @@ -131,15 +133,15 @@ public: MinimumExpanding = Minimum|ExpMask, Expanding = MinimumExpanding|MayShrink }; - Spacer( TQWidget *parent, const char *name ); + Spacer( TQWidget *tqparent, const char *name ); - TQSize minimumSize() const; - TQSize sizeHint() const; + TQSize tqminimumSize() const; + TQSize tqsizeHint() const; void setSizeType( SizeType t ); SizeType sizeType() const; - int alignment() const; - Orientation orientation() const; - void setOrientation( Orientation o ); + int tqalignment() const; + Qt::Orientation orientation() const; + void setOrientation( Qt::Orientation o ); void setInteraciveMode( bool b ) { interactive = b; }; void setSizeHint( const TQSize &s ); @@ -152,12 +154,13 @@ protected: TQSize sh; }; -class QDesignerGridLayout : public QGridLayout +class TQDesignerGridLayout : public TQGridLayout { Q_OBJECT + TQ_OBJECT public: - QDesignerGridLayout( TQWidget *parent ) : TQGridLayout( parent ){}; - QDesignerGridLayout( TQLayout *parentLayout ) : TQGridLayout( parentLayout ){}; + TQDesignerGridLayout( TQWidget *tqparent ) : TQGridLayout( tqparent ){}; + TQDesignerGridLayout( TQLayout *tqparentLayout ) : TQGridLayout( tqparentLayout ){}; void addWidget( TQWidget *, int row, int col, int align = 0 ); void addMultiCellWidget( TQWidget *, int fromRow, int toRow, |