mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
31 lines
586 B
C
31 lines
586 B
C
|
/**
|
||
|
* \file qfontexample.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author John Levon
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS
|
||
|
*/
|
||
|
|
||
|
#include <qwidget.h>
|
||
|
#include <qfont.h>
|
||
|
|
||
|
class QFontExample : public QWidget {
|
||
|
|
||
|
public:
|
||
|
QFontExample(QWidget * parent, const char * name)
|
||
|
: QWidget(parent, name) {}
|
||
|
|
||
|
void set(QFont const & font, QString const & text);
|
||
|
|
||
|
virtual QSize sizeHint() const;
|
||
|
|
||
|
protected:
|
||
|
virtual void paintEvent(QPaintEvent * p);
|
||
|
|
||
|
private:
|
||
|
QFont font_;
|
||
|
QString text_;
|
||
|
};
|