Files
GUI/src/components/VerticalTextToolButton.h

25 lines
525 B
C
Raw Normal View History

2022-01-12 11:24:37 +08:00
//
// Created by Krad on 2022/1/11.
//
#ifndef GUI_VERTICALTEXTTOOLBUTTON_H
#define GUI_VERTICALTEXTTOOLBUTTON_H
#include <QToolButton>
class VerticalTextToolButton: public QToolButton {
public:
explicit VerticalTextToolButton(QWidget* parent = nullptr);
virtual ~VerticalTextToolButton();
void setVerticalText(const QString text){
verticalText = text;
}
protected:
virtual void paintEvent(QPaintEvent* e) override;
private:
QString verticalText;
};
#endif //GUI_VERTICALTEXTTOOLBUTTON_H