summaryrefslogtreecommitdiffstats
path: root/examples/fonts/simple-qfont-demo/viewer.h
blob: 955ffe72f63cf46ae39e840bda2f97273829279b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

#ifndef VIEWER_H
#define VIEWER_H     


#include <tqwidget.h>
#include <ntqfont.h>

class TQTextView;
class TQPushButton;

class Viewer : public TQWidget
{
TQ_OBJECT

public:   
    Viewer();

private slots:
    void setDefault();
    void setSansSerif();
    void setItalics();

private:
    void setFontSubstitutions();
    void layout();
    void showFontInfo( TQFont & );

    TQTextView * greetings; 
    TQTextView * fontInfo;

    TQPushButton * defaultButton;
    TQPushButton * sansSerifButton;
    TQPushButton * italicsButton;
};

#endif