aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-theme-engine/src/lthemeengine-style/lthemeengineproxystyle.h
blob: 0d168897ed5cb66841b38b383b3de041d33ba873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef LTHEMEENGINEPROXYSTYLE_H
#define LTHEMEENGINEPROXYSTYLE_H

#include <QProxyStyle>

class lthemeengineProxyStyle : public QProxyStyle{
    Q_OBJECT
public:
    explicit lthemeengineProxyStyle(const QString &key);

    virtual ~lthemeengineProxyStyle();

    int styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) const;

private:
    int m_dialogButtonsHaveIcons;
    int m_activateItemOnSingleClick;

};

#endif // LTHEMEENGINEPROXYSTYLE_H
bgstack15