diff options
author | Timothy Pearson <[email protected]> | 2011-12-03 22:23:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-03 22:23:44 -0600 |
commit | 203ba231d0276943aae36111f9ec1e949f3c6a4c (patch) | |
tree | f039f7a5b5fc2da88a96876971bac580d87f6788 /sip/tdeui/krootpixmap.sip | |
parent | fd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff) | |
download | pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip |
Initial TQt conversion
Diffstat (limited to 'sip/tdeui/krootpixmap.sip')
-rw-r--r-- | sip/tdeui/krootpixmap.sip | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sip/tdeui/krootpixmap.sip b/sip/tdeui/krootpixmap.sip index a4ce0d3..59b9088 100644 --- a/sip/tdeui/krootpixmap.sip +++ b/sip/tdeui/krootpixmap.sip @@ -24,7 +24,7 @@ // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -class KRootPixmap : QObject +class KRootPixmap : TQObject { %TypeHeaderCode #include <krootpixmap.h> @@ -32,8 +32,8 @@ class KRootPixmap : QObject public: - KRootPixmap (QWidget*, const char* = 0); - KRootPixmap (QWidget*, QObject* /TransferThis/, const char* = 0); + KRootPixmap (TQWidget*, const char* = 0); + KRootPixmap (TQWidget*, TQObject* /TransferThis/, const char* = 0); bool isAvailable () const; bool isActive () const; int currentDesktop () const; @@ -41,7 +41,7 @@ public: bool checkAvailable (bool); %If ( KDE_3_2_0 - ) - const QColor& color () const; + const TQColor& color () const; double opacity () const; %End @@ -49,22 +49,22 @@ public: public slots: virtual void start (); virtual void stop (); - void setFadeEffect (double, const QColor&); + void setFadeEffect (double, const TQColor&); void repaint (bool); void repaint (); void setCustomPainting (bool); void enableExports (); %If ( KDE_3_2_0 - ) -//ig static QString pixmapName (int); +//ig static TQString pixmapName (int); %End signals: - void backgroundUpdated (const QPixmap&); + void backgroundUpdated (const TQPixmap&); protected: - virtual bool eventFilter (QObject*, QEvent*); + virtual bool eventFilter (TQObject*, TQEvent*); //ig virtual void updateBackground (KSharedPixmap*); }; // class KRootPixmap |