spark-qt-research/Components/QProxyStyleTest/menubtnstyle.h

17 lines
483 B
C
Raw Permalink Normal View History

#ifndef MENUBTNSTYLE_H
#define MENUBTNSTYLE_H
#include <QProxyStyle>
#include <QIcon>
class MenuBtnStyle : public QProxyStyle
{
public:
void drawControl(ControlElement element, const QStyleOption *option,
QPainter *painter, const QWidget *widget = nullptr) const override;
2020-10-24 14:47:46 +08:00
void drawControl2(ControlElement element, const QStyleOption *option,
QPainter *painter, const QWidget *widget = nullptr) const;
};
#endif // MENUBTNSTYLE_H