diff options
author | aneejit1 <aneejit1@gmail.com> | 2022-07-29 12:36:09 +0000 |
---|---|---|
committer | aneejit1 <aneejit1@gmail.com> | 2022-07-30 17:54:15 +0000 |
commit | 33a0297b35ab40e2d09cf37e351095b58725c8d5 (patch) | |
tree | 7eb6d8c710dcb638f2ac00776a3f523311e19c50 /sip/qt/qworkspace.sip | |
parent | e602246539fd7435aaeb440fcb7f852c92c8426b (diff) | |
download | pytqt-33a0297b35ab40e2d09cf37e351095b58725c8d5.tar.gz pytqt-33a0297b35ab40e2d09cf37e351095b58725c8d5.zip |
Remove support for earlier Qt/TQt versions
Conditional code in the .sip files linked to specific older versions has
been removed. Since the versions of TQt and python-tqt are running in
parallel, the support for older versions was clutter that would never
actually be used now.
Signed-off-by: aneejit1 <aneejit1@gmail.com>
Diffstat (limited to 'sip/qt/qworkspace.sip')
-rw-r--r-- | sip/qt/qworkspace.sip | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sip/qt/qworkspace.sip b/sip/qt/qworkspace.sip index e38dcd3..06b85be 100644 --- a/sip/qt/qworkspace.sip +++ b/sip/qt/qworkspace.sip @@ -29,7 +29,6 @@ %End -%If (TQt_2_1_0 -) %If (TQt_WORKSPACE) class TQWorkspace : TQWidget @@ -41,31 +40,22 @@ class TQWorkspace : TQWidget public: TQWorkspace(TQWidget * /TransferThis/ = 0,const char * = 0); -%If (TQt_3_2_0 -) enum WindowOrder { CreationOrder, StackingOrder }; -%End TQWidget *activeWindow() const; TQWidgetList windowList() const; -%If (TQt_3_2_0 -) TQWidgetList windowList(WindowOrder) const; -%End -%If (- TQt_3_0_0) - TQSizePolicy sizePolicy() const; -%End TQSize sizeHint() const; -%If (TQt_3_0_0 -) bool scrollBarsEnabled() const; void setScrollBarsEnabled(bool); void setPaletteBackgroundColor(const TQColor &); void setPaletteBackgroundPixmap(const TQPixmap &); -%End signals: void windowActivated(TQWidget *); @@ -73,29 +63,22 @@ signals: public slots: void cascade(); void tile(); -%If (TQt_3_2_0 -) void closeActiveWindow(); void closeAllWindows(); void activateNextWindow(); void activatePrevWindow(); -%End protected: -%If (TQt_3_0_0 -) void styleChange(TQStyle &); -%End void childEvent(TQChildEvent *); void resizeEvent(TQResizeEvent *); bool eventFilter(TQObject *,TQEvent *); void showEvent(TQShowEvent *); -%If (TQt_3_0_0 -) void hideEvent(TQHideEvent *); void wheelEvent(TQWheelEvent *); -%End private: TQWorkspace(const TQWorkspace &); }; %End -%End |