21 lines
295 B
C++
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
|