diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 15:22:12 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 15:22:12 +0900 |
| commit | 7be076f07a1669968ae1b37526f959129f37f196 (patch) | |
| tree | a8f05ee8caef540d96534b691415c011af0e122a /src/flowlayout.h | |
| parent | efda7b84b278d73a2af32e4ceb0c7e470997e571 (diff) | |
| download | kima-7be076f07a1669968ae1b37526f959129f37f196.tar.gz kima-7be076f07a1669968ae1b37526f959129f37f196.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/flowlayout.h')
| -rw-r--r-- | src/flowlayout.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/flowlayout.h b/src/flowlayout.h index df68e66..47d8dbd 100644 --- a/src/flowlayout.h +++ b/src/flowlayout.h @@ -37,9 +37,9 @@ public: ABOVE = 0, BELOW = 1 }; - FlowLayout( TQWidget* parent, Qt::Orientation orientation=Qt::Horizontal, int border=0, int space=-1, const char* name=0 ); - FlowLayout( TQLayout* parent, Qt::Orientation orientation=Qt::Horizontal, int space=-1, const char* name=0 ); - FlowLayout( Qt::Orientation=Qt::Horizontal, int space=-1, const char* name=0 ); + FlowLayout( TQWidget* parent, TQt::Orientation orientation=TQt::Horizontal, int border=0, int space=-1, const char* name=0 ); + FlowLayout( TQLayout* parent, TQt::Orientation orientation=TQt::Horizontal, int space=-1, const char* name=0 ); + FlowLayout( TQt::Orientation=TQt::Horizontal, int space=-1, const char* name=0 ); virtual ~FlowLayout(); /** * tells all sources their positions @@ -66,10 +66,10 @@ public: TQSize minimumSize() const; TQLayoutIterator iterator(); TQSizePolicy::ExpandData expanding() const; - Qt::Orientation getOrientation() const; + TQt::Orientation getOrientation() const; public slots: - void setOrientation(Qt::Orientation orientation); + void setOrientation(TQt::Orientation orientation); protected: void setGeometry(const TQRect&); @@ -78,7 +78,7 @@ private: int doLayout( const TQRect&, bool testOnly = FALSE ); int doLayoutHorizontal( const TQRect&, bool testOnly ); int doLayoutVertical( const TQRect&, bool testOnly ); - Qt::Orientation mOrientation; + TQt::Orientation mOrientation; TQPtrList<TQLayoutItem> mLayoutItems; // this is the connection between a layout item and its source. TQMap<TQLayoutItem*, Source*> mSources; |
