summaryrefslogtreecommitdiffstats
path: root/examples/themes/metal.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
committerTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
commitd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch)
tree6e3dcca4f77e20ec8966c666aac7c35bd4704053 /examples/themes/metal.h
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'examples/themes/metal.h')
-rw-r--r--examples/themes/metal.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/examples/themes/metal.h b/examples/themes/metal.h
new file mode 100644
index 000000000..95ff6111f
--- /dev/null
+++ b/examples/themes/metal.h
@@ -0,0 +1,72 @@
+/****************************************************************************
+**
+** Definition of the Metal Style for the themes example
+**
+** Created : 979899
+**
+** Copyright (C) 1997-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#ifndef METAL_H
+#define METAL_H
+
+
+#include <qpalette.h>
+
+#ifndef QT_NO_STYLE_WINDOWS
+
+#include <qwindowsstyle.h>
+
+
+class MetalStyle : public TQWindowsStyle
+{
+public:
+ MetalStyle();
+ void polish( TQApplication*);
+ void unPolish( TQApplication*);
+ void polish( TQWidget* );
+ void unPolish( TQWidget* );
+
+ void drawPrimitive( PrimitiveElement pe,
+ TQPainter *p,
+ const TQRect &r,
+ const TQColorGroup &cg,
+ SFlags flags = Style_Default,
+ const TQStyleOption& = TQStyleOption::Default) const;
+
+ void drawControl( ControlElement element,
+ TQPainter *p,
+ const TQWidget *widget,
+ const TQRect &r,
+ const TQColorGroup &cg,
+ SFlags how = Style_Default,
+ const TQStyleOption& = TQStyleOption::Default ) const;
+
+ void drawComplexControl( ComplexControl cc,
+ TQPainter *p,
+ const TQWidget *widget,
+ const TQRect &r,
+ const TQColorGroup &cg,
+ SFlags how = Style_Default,
+ SCFlags sub = SC_All,
+ SCFlags subActive = SC_None,
+ const TQStyleOption& = TQStyleOption::Default ) const;
+ int pixelMetric( PixelMetric, const TQWidget * ) const;
+
+
+private:
+ void drawMetalFrame( TQPainter *p, int x, int y, int w, int h ) const;
+ void drawMetalGradient( TQPainter *p, int x, int y, int w, int h,
+ bool sunken, bool horz, bool flat=FALSE ) const;
+ void drawMetalButton( TQPainter *p, int x, int y, int w, int h,
+ bool sunken, bool horz, bool flat=FALSE ) const;
+ TQPalette oldPalette;
+};
+
+#endif
+
+#endif