instAdmin/Cpp/GisDes/SaRibbon/SARibbonBar/SARibbonApplicationButton.h

21 lines
637 B
C
Raw Normal View History

2024-10-29 22:24:50 +08:00
#ifndef SARIBBONAPPLICATIONBUTTON_H
#define SARIBBONAPPLICATIONBUTTON_H
#include <QToolButton>
#include "SARibbonGlobal.h"
/**
* @brief The SARibbonApplicationButton class
*
* plicationButton,ApplicationButton
*/
class SA_RIBBON_EXPORT SARibbonApplicationButton : public QToolButton
{
Q_OBJECT
public:
SARibbonApplicationButton(QWidget* parent = nullptr);
SARibbonApplicationButton(const QString& text, QWidget* parent = nullptr);
SARibbonApplicationButton(const QIcon& icon, const QString& text, QWidget* parent = nullptr);
};
#endif // SARIBBONAPPLICATIONBUTTON_H