You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
347 B
C++
21 lines
347 B
C++
#pragma once
|
|
|
|
#include <QWidget>
|
|
#include "iGuiRibbon_global.h"
|
|
|
|
// 具体的某个功能菜单项
|
|
class I_GUI_RIBBON_EXPORT iWxMenuItem :
|
|
public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
iWxMenuItem(QString sIcon, QString sText, QWidget *parent = 0);
|
|
~iWxMenuItem();
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent* e);
|
|
|
|
private:
|
|
};
|