Guitar
LightStyle.h
Go to the documentation of this file.
1 #ifndef LIGHTSTYLE_H
2 #define LIGHTSTYLE_H
3 
4 #include "MyCommonStyle.h"
6 #include <QProxyStyle>
7 
8 class LightStyle : public MyCommonStyle<QProxyStyle> {
9 private:
12 public:
13  void drawPrimitive(PrimitiveElement element, QStyleOption const *option, QPainter *painter, QWidget const *widget = nullptr) const override;
14  void drawControl(ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *widget) const override;
15  void drawComplexControl(ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) const override;
16 };
17 
18 #endif // LIGHTSTYLE_H
Definition: LightStyle.h:8
void drawControl(ControlElement element, const QStyleOption *opt, QPainter *p, const QWidget *widget) const override
Definition: LightStyle.cpp:231
void drawComplexControl(ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) const override
Definition: LightStyle.cpp:497
void drawPrimitive(PrimitiveElement element, QStyleOption const *option, QPainter *painter, QWidget const *widget=nullptr) const override
Definition: LightStyle.cpp:141
TraditionalWindowsStyleTreeControl legacy_windows_
Definition: LightStyle.h:11
Definition: MyCommonStyle.h:19
Windows95スタイルのツリーコントロールの見た目にする
Definition: TraditionalWindowsStyleTreeControl.h:14