Files

21 lines
295 B
C++
Raw Permalink Normal View History

2026-05-24 23:21:33 +02:00
#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