You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tqt3/examples/qfd/fontdisplayer.h

48 lines
1011 B

/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for TQt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef FontDisplayer_H
#define FontDisplayer_H
#include <ntqframe.h>
#include <ntqmainwindow.h>
class TQSlider;
class FontRowTable : public TQFrame {
TQ_OBJECT
public:
FontRowTable( TQWidget* parent=0, const char* name=0 );
TQSize sizeHint() const;
signals:
void fontInformation(const TQString&);
public slots:
void setRow(int);
void chooseFont();
protected:
TQSize cellSize() const;
void paintEvent( TQPaintEvent* );
private:
TQFont tablefont;
int row;
};
class FontDisplayer : public TQMainWindow {
TQ_OBJECT
public:
FontDisplayer( TQWidget* parent=0, const char* name=0 );
};
#endif