From 560378aaca1784ba19806a0414a32b20c744de39 Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 3 Jan 2011 04:12:51 +0000 Subject: Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1 NOTE: This will not compile with Qt4 (yet), however it does compile with Qt3 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1211081 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kstyles/keramik/keramik.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'kstyles/keramik/keramik.h') diff --git a/kstyles/keramik/keramik.h b/kstyles/keramik/keramik.h index 03d97ee3a..135a92751 100644 --- a/kstyles/keramik/keramik.h +++ b/kstyles/keramik/keramik.h @@ -70,7 +70,7 @@ public: SFlags flags = Style_Default, const TQStyleOption& = TQStyleOption::Default ) const; - void drawControl( ControlElement element, + void tqdrawControl( ControlElement element, TQPainter* p, const TQWidget* widget, const TQRect& r, @@ -78,13 +78,13 @@ public: SFlags flags = Style_Default, const TQStyleOption& opt = TQStyleOption::Default ) const; - void drawControlMask( ControlElement element, + void tqdrawControlMask( ControlElement element, TQPainter* p, const TQWidget* widget, const TQRect& r, const TQStyleOption& opt = TQStyleOption::Default ) const; - void drawComplexControl( ComplexControl control, + void tqdrawComplexControl( ComplexControl control, TQPainter* p, const TQWidget* widget, const TQRect& r, @@ -94,13 +94,13 @@ public: SCFlags active = SC_None, const TQStyleOption& = TQStyleOption::Default ) const; - void drawComplexControlMask( ComplexControl control, + void tqdrawComplexControlMask( ComplexControl control, TQPainter* p, const TQWidget* widget, const TQRect& r, const TQStyleOption& = TQStyleOption::Default ) const; - int pixelMetric( PixelMetric m, const TQWidget* widget = 0 ) const; + int tqpixelMetric( PixelMetric m, const TQWidget* widget = 0 ) const; TQSize sizeFromContents( ContentsType contents, const TQWidget* widget, @@ -133,7 +133,7 @@ private: //Rendering flags mutable bool forceSmallMode; - mutable bool maskMode; //Ugly round trip flag to permit masking with little code; + mutable bool tqmaskMode; //Ugly round trip flag to permit tqmasking with little code; mutable bool formMode; //Set when rendering form widgets mutable const TQWidget* toolbarBlendWidget; //Ditto for blending with toolbars @@ -166,15 +166,15 @@ private: if (formMode) { //If we're a form widget, we blend on painting, and consider ourselves - //not to have a mask (so we don't get clipped to it) - if (maskMode) + //not to have a tqmask (so we don't get clipped to it) + if (tqmaskMode) return Keramik::TilePainter::PaintTrivialMask; else return Keramik::TilePainter::PaintFullBlend; } else { - if (maskMode) + if (tqmaskMode) return Keramik::TilePainter::PaintMask; else return Keramik::TilePainter::PaintNormal; @@ -183,7 +183,7 @@ private: Keramik::TilePainter::PaintMode pmodeFullBlend() const { - return maskMode?Keramik::TilePainter::PaintMask : Keramik::TilePainter::PaintFullBlend; + return tqmaskMode?Keramik::TilePainter::PaintMask : Keramik::TilePainter::PaintFullBlend; } TQWidget* hoverWidget; @@ -204,4 +204,4 @@ private: #endif // vim: ts=4 sw=4 noet -// kate: indent-width 4; replace-tabs off; tab-width 4; +// kate: indent-width 4; tqreplace-tabs off; tab-width 4; -- cgit v1.2.1