1234567891011121314151617181920212223 |
- #ifndef CUSTOMICONSTYLE_H
- #define CUSTOMICONSTYLE_H
- #include <QProxyStyle>
- class CustomIconStyle : public QProxyStyle
- {
- Q_OBJECT
- public:
- CustomIconStyle();
- ~CustomIconStyle();
- void SetCustomSize(int);
- protected:
- virtual int pixelMetric(PixelMetric metric, const QStyleOption * option, const QWidget * widget) const;
- private:
- int mSize;
- };
- #endif // CUSTOMICONSTYLE_H
|