⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qstylesheetstyle_p.h

📁 奇趣公司比较新的qt/emd版本
💻 H
字号:
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QSTYLESHEETSTYLE_P_H#define QSTYLESHEETSTYLE_P_H#include "QtGui/qwindowsstyle.h"#ifndef QT_NO_STYLE_STYLESHEET#include "QtGui/qstyleoption.h"#include "QtCore/qhash.h"#include "QtGui/qevent.h"#include "QtCore/qvector.h"#include "QtGui/qapplication.h"#include "private/qcssparser_p.h"#include "QtGui/qbrush.h"////  W A R N I N G//  -------------//// This file is not part of the Qt API.  It exists purely as an// implementation detail.  This header file may change from version to// version without notice, or even be removed.//// We mean it.//class QRenderRule;class QAbstractScrollArea;class QStyleSheetStylePrivate;class Q_AUTOTEST_EXPORT QStyleSheetStyle : public QWindowsStyle{    typedef QWindowsStyle ParentStyle;    Q_OBJECTpublic:    QStyleSheetStyle(QStyle *baseStyle);    ~QStyleSheetStyle();    void drawComplexControl(ComplexControl cc, const QStyleOptionComplex *opt, QPainter *p,                            const QWidget *w = 0) const;    void drawControl(ControlElement element, const QStyleOption *opt, QPainter *p,                     const QWidget *w = 0) const;    void drawItemPixmap(QPainter *painter, const QRect &rect, int alignment, const QPixmap &pixmap) const;    void drawItemText(QPainter *painter, const QRect& rect, int alignment, const QPalette &pal,              bool enabled, const QString& text, QPalette::ColorRole textRole  = QPalette::NoRole) const;    void drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, QPainter *p,                       const QWidget *w = 0) const;    QPixmap generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap,                                const QStyleOption *option) const;    SubControl hitTestComplexControl(ComplexControl cc, const QStyleOptionComplex *opt,                                     const QPoint &pt, const QWidget *w = 0) const;    QRect itemPixmapRect(const QRect &rect, int alignment, const QPixmap &pixmap) const;    QRect itemTextRect(const QFontMetrics &metrics, const QRect &rect, int alignment, bool enabled,                       const QString &text) const;    int pixelMetric(PixelMetric metric, const QStyleOption *option = 0, const QWidget *widget = 0) const;    void polish(QWidget *widget);    void polish(QApplication *app);    void polish(QPalette &pal);    QSize sizeFromContents(ContentsType ct, const QStyleOption *opt,                           const QSize &contentsSize, const QWidget *widget = 0) const;    QIcon standardIcon(StandardPixmap standardIcon, const QStyleOption *option, const QWidget *w = 0) const;    QPalette standardPalette() const;    QPixmap standardPixmap(StandardPixmap standardPixmap, const QStyleOption *option = 0,                           const QWidget *w = 0 ) const;    int layoutSpacing(QSizePolicy::ControlType control1, QSizePolicy::ControlType control2,                          Qt::Orientation orientation, const QStyleOption *option = 0,                          const QWidget *widget = 0) const;    int styleHint(StyleHint sh, const QStyleOption *opt = 0, const QWidget *w = 0,                  QStyleHintReturn *shret = 0) const;    QRect subElementRect(SubElement r, const QStyleOption *opt, const QWidget *widget = 0) const;    QRect subControlRect(ComplexControl cc, const QStyleOptionComplex *opt, SubControl sc,                         const QWidget *w = 0) const;    // These functions are called from QApplication/QWidget. Be careful.    void setBaseStyle(QStyle *style) { base = style; }    QStyle *baseStyle() const;    void repolish(QWidget *widget);    void repolish(QApplication *app);    void unpolish(QWidget *widget);    void unpolish(QApplication *app);    QStyle *base;    void ref() { ++refcount; }    void deref() { Q_ASSERT(refcount > 0); if (!--refcount) delete this; }protected Q_SLOTS:    QIcon standardIconImplementation(StandardPixmap standardIcon, const QStyleOption *opt = 0,                                     const QWidget *widget = 0) const;    int layoutSpacingImplementation(QSizePolicy::ControlType control1,                                    QSizePolicy::ControlType control2,                                    Qt::Orientation orientation,                                    const QStyleOption *option = 0,                                    const QWidget *widget = 0) const;private Q_SLOTS:    void widgetDestroyed(QObject *);private:    int refcount;    friend class QRenderRule;    int nativeFrameWidth(const QWidget *);    QRenderRule renderRule(const QWidget *, int, int = 0) const;    QRenderRule renderRule(const QWidget *, const QStyleOption *, int = 0) const;    QSize defaultSize(const QWidget *, QSize, const QRect&, int) const;    QRect positionRect(const QWidget *, const QRenderRule&, const QRenderRule&, int,                       const QRect&, Qt::LayoutDirection) const;    QRect positionRect(const QWidget *w, const QRenderRule &rule2, int pe,                       const QRect &originRect, Qt::LayoutDirection dir) const;    void setPalette(QWidget *);    void unsetPalette(QWidget *);    void setProperties(QWidget *);    void setGeometry(QWidget *);    QVector<QCss::StyleRule> styleRules(const QWidget *w) const;    bool hasStyleRule(const QWidget *w, int part) const;public:    static int numinstances;private:    Q_DISABLE_COPY(QStyleSheetStyle)    Q_DECLARE_PRIVATE(QStyleSheetStyle)};#endif // QT_NO_STYLE_STYLESHEET#endif // QSTYLESHEETSTYLE_P_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -