summaryrefslogtreecommitdiffstats
path: root/kexi/kexiutils/styleproxy.h
blob: 779298ee98bf176cf6ef340ca9a04776e921e17c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* This file is part of the KDE project
   Copyright (C) 2006 Jaroslaw Staniek <js@iidea.pl>

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this program; see the file COPYING.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KEXIUTILS_STYLEPROXY_H
#define KEXIUTILS_STYLEPROXY_H

#include <tqstyle.h>
#include <tqstylefactory.h>
#include <tqpixmap.h>

#include "kexiutils_export.h"

namespace KexiUtils {

//! @short a TQStyle proxy allowing to customizing the currently used style
/*! All you need is to reimplement one or more of the methods.
 For example, you can reimpelmente drawPrimitive() and temporary 
 change the color in color group.

 You can change even the smallest part of the style for a selected widget 
 using the following code:
 \code
  class MyStyle : public KexiUtils::StyleProxy {
   //reimplement method(s) here...
  };
  TQWidget *w = .....
  w->setStyle( new MyStyle(&w->style(), w) ); //this will alter w's style a bit
 \endcode

 More info at http://doc.trolltech.com/qq/qq09-q-and-a.html#style
*/
class KEXIUTILS_EXPORT StyleProxy : public TQStyle
{
	public:
		/*! Creates a new style proxy object. \a tqparentStyle pointer will not be kept
		 (because it's most likely owned by the application: a new TQStyle instance 
		 for this name will be created internally. */
		StyleProxy(TQStyle* tqparentStyle);
		virtual ~StyleProxy();

		TQStyle* tqparentStyle() const;
		void setParentStyle(TQStyle* style);

		virtual void polish( TQWidget *w ) { m_style->polish(w); }
		virtual void unPolish( TQWidget *w ) { m_style->unPolish(w); }

		virtual void polish( TQApplication *a ) { m_style->polish(a); }
		virtual void unPolish( TQApplication *a ) { m_style->unPolish(a); }

		virtual void polish( TQPalette &p ) { m_style->polish(p); };

		virtual void polishPopupMenu( TQPopupMenu* p ) { m_style->polishPopupMenu(p); }

		virtual TQRect tqitemRect( TQPainter *p, const TQRect &r,
			int flags, bool enabled, const TQPixmap *pixmap, const TQString &text, int len = -1 ) const
		{
			return m_style->tqitemRect( p, r, flags, enabled, pixmap, text, len );
		}

		virtual void drawItem( TQPainter *p, const TQRect &r,
			int flags, const TQColorGroup &g, bool enabled, const TQPixmap *pixmap, const TQString &text,
			int len = -1, const TQColor *penColor = 0 ) const
		{
			m_style->drawItem( p, r, flags, g, enabled, pixmap, text, len, penColor );
		}

		virtual void tqdrawPrimitive( TQ_PrimitiveElement pe,
			TQPainter *p, const TQRect &r, const TQColorGroup &cg, SFlags flags = Style_Default,
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			m_style->tqdrawPrimitive( pe, p, r, cg, flags, option );
		}

		virtual void tqdrawControl( TQ_ControlElement element,
			TQPainter *p, const TQWidget *widget, const TQRect &r, const TQColorGroup &cg,
			SFlags how = Style_Default, const TQStyleOption& option = TQStyleOption::Default ) const
		{
			m_style->tqdrawControl( element, p, widget, r, cg, how, option );
		}

		virtual void tqdrawControlMask( TQ_ControlElement element,
			TQPainter *p, const TQWidget *widget, const TQRect &r, 
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			m_style->tqdrawControlMask( element, p, widget, r, option );
		}

		virtual TQRect subRect( SubRect r, const TQWidget *widget ) const
		{
			return m_style->subRect( r, widget );
		}

		virtual void tqdrawComplexControl( TQ_ComplexControl control,
			TQPainter *p, const TQWidget *widget, const TQRect &r,
			const TQColorGroup &cg, SFlags how = Style_Default,
#ifdef TQ_TQDOC
			SCFlags sub = SC_All,
#else
			SCFlags sub = (uint)SC_All,
#endif
			SCFlags subActive = SC_None, const TQStyleOption& option = TQStyleOption::Default ) const
		{
			tqdrawComplexControl( control, p, widget, r, cg, how, sub, subActive, option );
		}

		virtual void tqdrawComplexControlMask( TQ_ComplexControl control,
			TQPainter *p, const TQWidget *widget, const TQRect &r,
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			m_style->tqdrawComplexControlMask( control, p, widget, r, option );
		}

		virtual TQRect querySubControlMetrics( TQ_ComplexControl control,
			const TQWidget *widget, SubControl sc, 
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			return m_style->querySubControlMetrics( control, widget, sc, option );
		}

		virtual SubControl querySubControl( TQ_ComplexControl control,
			const TQWidget *widget, const TQPoint &pos, 
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			return m_style->querySubControl( control, widget, pos, option );
		}

		virtual int tqpixelMetric( PixelMetric metric,
			const TQWidget *widget = 0 ) const
		{
			return m_style->tqpixelMetric( metric, widget );
		}

		virtual TQSize tqsizeFromContents( ContentsType contents,
			const TQWidget *widget, const TQSize &contentsSize,
			const TQStyleOption& option = TQStyleOption::Default ) const
		{
			return m_style->tqsizeFromContents( contents, widget, contentsSize, option );
		}

		virtual int tqstyleHint( TQ_StyleHint stylehint,
			const TQWidget *widget = 0, const TQStyleOption& option = TQStyleOption::Default,
			TQStyleHintReturn* returnData = 0 ) const
		{
			return m_style->tqstyleHint( stylehint, widget, option, returnData );
		}

		virtual TQPixmap stylePixmap( StylePixmap stylepixmap,
				const TQWidget *widget = 0,
				const TQStyleOption& option = TQStyleOption::Default ) const
		{
			return m_style->stylePixmap( stylepixmap, widget, option );
		}

	protected:
		TQStyle *m_style;
};
}

#endif