summaryrefslogtreecommitdiffstats
path: root/examples/fonts/simple-qfont-demo/viewer.h
blob: 77b71e0c9b5528605db14f4e8457ad4bade925fe (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 <ntqwidget.h>
#include <ntqfont.h>

class TQTextView;
class TQPushButton;

class Viewer : public TQWidget
{
Q_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