summaryrefslogtreecommitdiffstats
path: root/examples/fonts/simple-qfont-demo/viewer.cpp
blob: 990449ad4cc1b1fef5bd862b1d4c781a0f5d37ed (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160

#include "viewer.h"
#include <ntqstring.h>
#include <ntqstringlist.h>
#include <ntqtextview.h>
#include <ntqpushbutton.h>
#include <ntqlayout.h>

Viewer::Viewer()
       :TQWidget()
{
    setFontSubstitutions();

    TQString greeting_heb = TQString::fromUtf8( "\327\251\327\234\327\225\327\235" );
    TQString greeting_ru = TQString::fromUtf8( "\320\227\320\264\321\200\320\260\320\262\321\201\321\202\320\262\321\203\320\271\321\202\320\265" );
    TQString greeting_en( "Hello" );

    greetings = new TQTextView( this, "textview" );

    greetings->setText( greeting_en + "\n" +
                       greeting_ru + "\n" +
                       greeting_heb );

    fontInfo = new TQTextView( this, "fontinfo" );

    setDefault();

    defaultButton = new TQPushButton( "Default", this,
                                                   "pushbutton1" );
    defaultButton->setFont( TQFont( "times" ) );
    connect( defaultButton, SIGNAL( clicked() ),
             this, SLOT( setDefault() ) );

    sansSerifButton = new TQPushButton( "Sans Serif", this,
                                                     "pushbutton2" );
    sansSerifButton->setFont( TQFont( "Helvetica", 12 ) );
    connect( sansSerifButton, SIGNAL( clicked() ),
             this, SLOT( setSansSerif() ) );

    italicsButton = new TQPushButton( "Italics", this,
                                                   "pushbutton3" );
    italicsButton->setFont( TQFont( "lucida", 12, TQFont::Bold, TRUE ) );
    connect( italicsButton, SIGNAL( clicked() ),
             this, SLOT( setItalics() ) );

    layout();
}

void Viewer::setDefault()
{
    TQFont font( "Bavaria" );
    font.setPointSize( 24 );

    font.setWeight( TQFont::Bold );
    font.setUnderline( TRUE );

    greetings->setFont( font );

    showFontInfo( font );
}

void Viewer::setSansSerif()
{
    TQFont font( "Newyork", 18 );
    font.setStyleHint( TQFont::SansSerif );
    greetings->setFont( font );

    showFontInfo( font );
}

void Viewer::setItalics()
{
    TQFont font( "Tokyo" );
    font.setPointSize( 32 );
    font.setWeight( TQFont::Bold );
    font.setItalic( TRUE );

    greetings->setFont( font );

    showFontInfo( font );
}

void Viewer::showFontInfo( TQFont & font )
{
    TQFontInfo info( font );

    TQString messageText;
    messageText = "Font requested: \"" +
                  font.family() + "\" " +
                  TQString::number( font.pointSize() ) + "pt<BR>" +
                  "Font used: \"" +
                  info.family() + "\" " +
                  TQString::number( info.pointSize() ) + "pt<P>";

    TQStringList substitutions = TQFont::substitutes( font.family() );

    if ( ! substitutions.isEmpty() ){
	messageText += "The following substitutions exist for " + \
		       font.family() + ":<UL>";

	TQStringList::Iterator i = substitutions.begin();
	while ( i != substitutions.end() ){
	    messageText += "<LI>\"" + (* i) + "\"";
	    i++;
	}
	 messageText += "</UL>";
    } else {
	messageText += "No substitutions exist for " + \
		       font.family() + ".";
    }

    fontInfo->setText( messageText );
}

void Viewer::setFontSubstitutions()
{
    TQStringList substitutes;
    substitutes.append( "Times" );
    substitutes +=  "Mincho",
    substitutes << "Arabic Newspaper" << "crox";

    TQFont::insertSubstitutions( "Bavaria", substitutes );

    TQFont::insertSubstitution( "Tokyo", "Lucida" );
}


// For those who prefer to use TQt Designer for creating GUIs
// the following function might not be of particular interest:
// all it does is creating the widget layout.

void Viewer::layout()
{
    TQHBoxLayout * textViewContainer = new TQHBoxLayout();
    textViewContainer->addWidget( greetings );
    textViewContainer->addWidget( fontInfo );

    TQHBoxLayout * buttonContainer = new TQHBoxLayout();

    buttonContainer->addWidget( defaultButton );
    buttonContainer->addWidget( sansSerifButton );
    buttonContainer->addWidget( italicsButton );

    int maxButtonHeight = defaultButton->height();

    if ( sansSerifButton->height() > maxButtonHeight )
	maxButtonHeight = sansSerifButton->height();
    if ( italicsButton->height() > maxButtonHeight )
        maxButtonHeight = italicsButton->height();

    defaultButton->setFixedHeight( maxButtonHeight );
    sansSerifButton->setFixedHeight( maxButtonHeight );
    italicsButton->setFixedHeight( maxButtonHeight );

    TQVBoxLayout * container = new TQVBoxLayout( this );
    container->addLayout( textViewContainer );
    container->addLayout( buttonContainer );

    resize( 700, 250 );
}