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/qtooltip.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/qtooltip.sip')
-rw-r--r-- | sip/qt/qtooltip.sip | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/sip/qt/qtooltip.sip b/sip/qt/qtooltip.sip index 47694d4..1a24264 100644 --- a/sip/qt/qtooltip.sip +++ b/sip/qt/qtooltip.sip @@ -44,28 +44,15 @@ class TQToolTipGroup : TQObject public: TQToolTipGroup(TQObject * /TransferThis/,const char * = 0); -%If (TQt_2_00 -) bool delay() const; -%End -%If (TQt_2_1_0 -) bool enabled() const; -%End public slots: -%If (TQt_2_00 -) void setDelay(bool); -%End -%If (TQt_2_1_0 -) void setEnabled(bool); -%End signals: -%If (- TQt_2_00) - void showTip(const char *); -%End -%If (TQt_2_00 -) void showTip(const TQString &); -%End void removeTip(); private: @@ -73,41 +60,6 @@ private: }; -%If (- TQt_2_00) - -class TQToolTip -{ -%TypeHeaderCode -#include <tqtooltip.h> -%End - -public: - TQToolTip(TQWidget *,TQToolTipGroup * = 0); - - static void add(TQWidget *,const char *); - static void add(TQWidget *,const char *,TQToolTipGroup *,const char *); - static void remove(TQWidget *); - static void add(TQWidget *,const TQRect &,const char *); - static void add(TQWidget *,const TQRect &,const char *,TQToolTipGroup *,const char *); - static void remove(TQWidget *,const TQRect &); - static TQFont font(); - static void setFont(const TQFont &); - static TQPalette palette(); - static void setPalette(const TQPalette &); - TQWidget *parentWidget() const; - TQToolTipGroup *group() const; - -protected: - virtual void maybeTip(const TQPoint &) = 0; - void tip(const TQRect &,const char *); - void tip(const TQRect &,const char *,const char *); - void clear(); -}; - -%End - -%If (TQt_2_00 -) - class TQToolTip : TQt { %TypeHeaderCode @@ -127,30 +79,18 @@ public: TQToolTipGroup *,const TQString &); static void remove(TQWidget *,const TQRect &); -%If (TQt_3_0_0 -) static TQString textFor(TQWidget *,const TQPoint & = TQPoint()); -%End -%If (TQt_2_1_0 -) static void hide(); -%End static TQFont font(); static void setFont(const TQFont &); static TQPalette palette(); static void setPalette(const TQPalette &); -%If (TQt_3_0_0 -) static void setGloballyEnabled(bool); static bool isGloballyEnabled(); -%End -%If (TQt_2_1_0 - TQt_3_0_0) - static void setEnabled(bool); - static bool enabled(); -%End -%If (TQt_3_1_0 -) static void setWakeUpDelay(int); -%End TQWidget *parentWidget() const; TQToolTipGroup *group() const; @@ -159,11 +99,7 @@ protected: virtual void maybeTip(const TQPoint &) = 0; void tip(const TQRect &,const TQString &); void tip(const TQRect &,const TQString &,const TQString &); -%If (TQt_3_1_0 -) void tip(const TQRect &,const TQString &,const TQRect &); void tip(const TQRect &,const TQString &,const TQString &,const TQRect &); -%End void clear(); }; - -%End |