Files
BudgetPro/widget/textfontlabel.h
T
2026-05-24 23:21:33 +02:00

21 lines
295 B
C++

#ifndef TEXTFONTLABEL_H
#define TEXTFONTLABEL_H
#include <QLabel>
#include <QLineEdit>
#include "toolbutton.h"
class TextFontLabel : public QLabel
{
Q_OBJECT
public:
TextFontLabel(QWidget* parent = 0);
~TextFontLabel();
private:
int m_fontsize;
};
#endif // TEXTFONTLABEL_H