source: trunk/include/qmotifstyle.h@ 138

Last change on this file since 138 was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1/****************************************************************************
2** $Id: qmotifstyle.h 2 2005-11-16 15:49:26Z dmik $
3**
4** Definition of Motif-like style class
5**
6** Created : 981231
7**
8** Copyright (C) 1998-2000 Trolltech AS. All rights reserved.
9**
10** This file is part of the widgets module of the Qt GUI Toolkit.
11**
12** This file may be distributed under the terms of the Q Public License
13** as defined by Trolltech AS of Norway and appearing in the file
14** LICENSE.QPL included in the packaging of this file.
15**
16** This file may be distributed and/or modified under the terms of the
17** GNU General Public License version 2 as published by the Free Software
18** Foundation and appearing in the file LICENSE.GPL included in the
19** packaging of this file.
20**
21** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
22** licenses may use this file in accordance with the Qt Commercial License
23** Agreement provided with the Software.
24**
25** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
26** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
27**
28** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
29** information about Qt Commercial License Agreements.
30** See http://www.trolltech.com/qpl/ for QPL licensing information.
31** See http://www.trolltech.com/gpl/ for GPL licensing information.
32**
33** Contact info@trolltech.com if any conditions of this licensing are
34** not clear to you.
35**
36**********************************************************************/
37
38#ifndef QMOTIFSTYLE_H
39#define QMOTIFSTYLE_H
40
41#ifndef QT_H
42#include "qcommonstyle.h"
43#endif // QT_H
44
45#if !defined(QT_NO_STYLE_MOTIF) || defined(QT_PLUGIN)
46
47class QPalette;
48
49#if defined(QT_PLUGIN)
50#define Q_EXPORT_STYLE_MOTIF
51#else
52#define Q_EXPORT_STYLE_MOTIF Q_EXPORT
53#endif
54
55
56class Q_EXPORT_STYLE_MOTIF QMotifStyle : public QCommonStyle
57{
58 Q_OBJECT
59public:
60 QMotifStyle( bool useHighlightCols=FALSE );
61 virtual ~QMotifStyle();
62
63 void setUseHighlightColors( bool );
64 bool useHighlightColors() const;
65
66 void polish( QPalette& );
67 void polish( QWidget* );
68 void polish( QApplication* );
69
70 void polishPopupMenu( QPopupMenu* );
71
72 // new style API
73 void drawPrimitive( PrimitiveElement pe,
74 QPainter *p,
75 const QRect &r,
76 const QColorGroup &cg,
77 SFlags flags = Style_Default,
78 const QStyleOption& = QStyleOption::Default ) const;
79
80 void drawControl( ControlElement element,
81 QPainter *p,
82 const QWidget *widget,
83 const QRect &r,
84 const QColorGroup &cg,
85 SFlags how = Style_Default,
86 const QStyleOption& = QStyleOption::Default ) const;
87
88 void drawComplexControl( ComplexControl control,
89 QPainter *p,
90 const QWidget* widget,
91 const QRect& r,
92 const QColorGroup& cg,
93 SFlags how = Style_Default,
94 SCFlags sub = (uint)SC_All,
95 SCFlags subActive = SC_None,
96 const QStyleOption& = QStyleOption::Default ) const;
97
98 QRect querySubControlMetrics( ComplexControl control,
99 const QWidget *widget,
100 SubControl sc,
101 const QStyleOption& = QStyleOption::Default ) const;
102
103 int pixelMetric( PixelMetric metric, const QWidget *widget = 0 ) const;
104
105 QSize sizeFromContents( ContentsType contents,
106 const QWidget *widget,
107 const QSize &contentsSize,
108 const QStyleOption& = QStyleOption::Default ) const;
109
110 QRect subRect( SubRect r, const QWidget *widget ) const;
111
112 QPixmap stylePixmap(StylePixmap, const QWidget * = 0, const QStyleOption& = QStyleOption::Default) const;
113
114 int styleHint(StyleHint sh, const QWidget *, const QStyleOption & = QStyleOption::Default,
115 QStyleHintReturn* = 0) const;
116
117private:
118 bool highlightCols;
119
120 // Disabled copy constructor and operator=
121#if defined(Q_DISABLE_COPY)
122 QMotifStyle( const QMotifStyle & );
123 QMotifStyle& operator=( const QMotifStyle & );
124#endif
125};
126
127#endif // QT_NO_STYLE_MOTIF
128
129#endif // QMOTIFSTYLE_H
Note: See TracBrowser for help on using the repository browser.