Go to
the documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef QWINDOWSMOBILESTYLE_H
00043 #define QWINDOWSMOBILESTYLE_H
00044
00045 #include <QtGui/qwindowsstyle.h>
00046
00047 QT_BEGIN_HEADER
00048
00049 QT_BEGIN_NAMESPACE
00050
00051 QT_MODULE(Gui)
00052
00053 #if !defined(QT_NO_STYLE_WINDOWSMOBILE)
00054
00055 class QWindowsMobileStylePrivate;
00056
00057 class Q_GUI_EXPORT QWindowsMobileStyle : public QWindowsStyle
00058 {
00059 Q_OBJECT
00060 public:
00061 QWindowsMobileStyle();
00062
00063 void drawPrimitive(PrimitiveElement element, const QStyleOption *option,
00064 QPainter *painter, const QWidget *widget = 0) const;
00065
00066 void drawControl(ControlElement element, const QStyleOption *option,
00067 QPainter *painter, const QWidget *widget) const;
00068
00069 void drawComplexControl(ComplexControl control, const QStyleOptionComplex *option,
00070 QPainter *painter, const QWidget *widget) const;
00071
00072 QSize sizeFromContents(ContentsType type, const QStyleOption *option,
00073 const QSize &size, const QWidget *widget) const;
00074
00075 QRect subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget) const;
00076
00077 QRect subControlRect(ComplexControl cc, const QStyleOptionComplex *opt,
00078 SubControl sc, const QWidget *widget) const;
00079
00080 QPixmap generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap,
00081 const QStyleOption *option) const;
00082
00083 QPixmap standardPixmap(StandardPixmap sp, const QStyleOption *option,
00084 const QWidget *widget) const;
00085
00086 int pixelMetric(PixelMetric metric, const QStyleOption *option = 0, const QWidget *widget = 0) const;
00087
00088 int styleHint(StyleHint hint, const QStyleOption *opt = 0, const QWidget *widget = 0,
00089 QStyleHintReturn *returnData = 0) const;
00090
00091 void polish(QApplication*);
00092 void unpolish(QApplication*);
00093 void polish(QWidget *widget);
00094 void unpolish(QWidget *widget);
00095 void polish(QPalette &);
00096
00097 QPalette standardPalette() const;
00098
00099 bool doubleControls() const;
00100
00101 void setDoubleControls(bool);
00102
00103 protected:
00104 QWindowsMobileStyle(QWindowsMobileStylePrivate &dd);
00105
00106 private:
00107 Q_DECLARE_PRIVATE(QWindowsMobileStyle)
00108 };
00109
00110 #endif // QT_NO_STYLE_WINDOWSMOBILE
00111
00112 QT_END_NAMESPACE
00113
00114 QT_END_HEADER
00115
00116 #endif //QWINDOWSMOBILESTYLE_H