]> git.saurik.com Git - wxWidgets.git/blame - samples/font/font.cpp
Wrappers for *ToText
[wxWidgets.git] / samples / font / font.cpp
CommitLineData
1ccd74da
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: font.cpp
3// Purpose: wxFont demo
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 30.09.99
7// RCS-ID: $Id$
36f210c8 8// Copyright: (c) 1999 Vadim Zeitlin
1ccd74da
VZ
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx/wx.h".
92a19c2e 13#include "wx/wxprec.h"
1ccd74da
VZ
14
15#ifdef __BORLANDC__
16 #pragma hdrstop
17#endif
18
19// for all others, include the necessary headers (this file is usually all you
be5a51fb 20// need because it includes almost all standard wxWidgets headers
1ccd74da 21#ifndef WX_PRECOMP
84e89e2a 22 #include "wx/wx.h"
1ccd74da 23
84e89e2a 24 #include "wx/log.h"
1ccd74da
VZ
25#endif
26
84e89e2a
GD
27#include "wx/choicdlg.h"
28#include "wx/fontdlg.h"
29#include "wx/fontenum.h"
30#include "wx/fontmap.h"
31#include "wx/encconv.h"
32#include "wx/splitter.h"
33#include "wx/textfile.h"
1ccd74da
VZ
34
35// ----------------------------------------------------------------------------
36// private classes
37// ----------------------------------------------------------------------------
38
39// Define a new application type, each program should derive a class from wxApp
40class MyApp : public wxApp
41{
42public:
43 // override base class virtuals
44 // ----------------------------
45
46 // this one is called on application startup and is a good place for the app
47 // initialization (doing it here and not in the ctor allows to have an error
48 // return: if OnInit() returns false, the application terminates)
49 virtual bool OnInit();
50};
51
52// MyCanvas is a canvas on which we show the font sample
53class MyCanvas: public wxWindow
54{
55public:
56 MyCanvas( wxWindow *parent );
818503a1 57 virtual ~MyCanvas();
1ccd74da
VZ
58
59 // accessors for the frame
60 const wxFont& GetTextFont() const { return m_font; }
61 const wxColour& GetColour() const { return m_colour; }
62 void SetTextFont(const wxFont& font) { m_font = font; }
63 void SetColour(const wxColour& colour) { m_colour = colour; }
64
65 // event handlers
66 void OnPaint( wxPaintEvent &event );
67
68private:
69 wxColour m_colour;
70 wxFont m_font;
71
72 DECLARE_EVENT_TABLE()
73};
74
75// Define a new frame type: this is going to be our main frame
76class MyFrame : public wxFrame
77{
78public:
79 // ctor(s)
80 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
81
82 // accessors
83 MyCanvas *GetCanvas() const { return m_canvas; }
84
85 // event handlers (these functions should _not_ be virtual)
86 void OnQuit(wxCommandEvent& event);
87 void OnAbout(wxCommandEvent& event);
409d5a58 88
d1f47235
DS
89 void OnIncFont(wxCommandEvent& WXUNUSED(event)) { DoResizeFont(+2); }
90 void OnDecFont(wxCommandEvent& WXUNUSED(event)) { DoResizeFont(-2); }
f6bcfd97 91
409d5a58
VZ
92 void OnBold(wxCommandEvent& event);
93 void OnItalic(wxCommandEvent& event);
94 void OnUnderline(wxCommandEvent& event);
95
818503a1
VZ
96 void OnwxPointerFont(wxCommandEvent& event);
97
3c1866e8 98 void OnViewMsg(wxCommandEvent& event);
1ccd74da 99 void OnSelectFont(wxCommandEvent& event);
36f210c8 100 void OnEnumerateFamiliesForEncoding(wxCommandEvent& event);
ddc8c2e3 101 void OnEnumerateFamilies(wxCommandEvent& WXUNUSED(event))
a7a5165c 102 { DoEnumerateFamilies(false); }
ddc8c2e3 103 void OnEnumerateFixedFamilies(wxCommandEvent& WXUNUSED(event))
a7a5165c 104 { DoEnumerateFamilies(true); }
d111a89a 105 void OnEnumerateEncodings(wxCommandEvent& event);
1ccd74da 106
30764ab5
VZ
107 void OnCheckNativeToFromString(wxCommandEvent& event);
108
1ccd74da 109protected:
7beba2fc
VZ
110 bool DoEnumerateFamilies(bool fixedWidthOnly,
111 wxFontEncoding encoding = wxFONTENCODING_SYSTEM,
a7a5165c 112 bool silent = false);
36f210c8 113
f6bcfd97 114 void DoResizeFont(int diff);
a1d58ddc
VZ
115 void DoChangeFont(const wxFont& font, const wxColour& col = wxNullColour);
116
f6bcfd97
BP
117 size_t m_fontSize; // in points
118
36f210c8
VZ
119 wxTextCtrl *m_textctrl;
120 MyCanvas *m_canvas;
1ccd74da
VZ
121
122private:
be5a51fb 123 // any class wishing to process wxWidgets events must use this macro
1ccd74da
VZ
124 DECLARE_EVENT_TABLE()
125};
126
1ccd74da
VZ
127// ----------------------------------------------------------------------------
128// constants
129// ----------------------------------------------------------------------------
130
131// IDs for the controls and the menu commands
132enum
133{
134 // menu items
135 Font_Quit = 1,
136 Font_About,
3c1866e8 137 Font_ViewMsg,
f6bcfd97
BP
138 Font_IncSize,
139 Font_DecSize,
409d5a58
VZ
140 Font_Bold,
141 Font_Italic,
142 Font_Underlined,
818503a1
VZ
143 Font_wxNORMAL_FONT,
144 Font_wxSMALL_FONT,
145 Font_wxITALIC_FONT,
146 Font_wxSWISS_FONT,
643dcb7a 147 Font_Standard,
818503a1 148
1ccd74da 149 Font_Choose = 100,
36f210c8 150 Font_EnumFamiliesForEncoding,
ddc8c2e3
VZ
151 Font_EnumFamilies,
152 Font_EnumFixedFamilies,
d111a89a 153 Font_EnumEncodings,
189e08b4
VZ
154 Font_CheckNativeToFromString,
155 Font_Max
1ccd74da
VZ
156};
157
158// ----------------------------------------------------------------------------
be5a51fb 159// event tables and other macros for wxWidgets
1ccd74da
VZ
160// ----------------------------------------------------------------------------
161
be5a51fb 162// the event tables connect the wxWidgets events with the functions (event
1ccd74da
VZ
163// handlers) which process them. It can be also done at run-time, but for the
164// simple menu events like this the static method is much simpler.
165BEGIN_EVENT_TABLE(MyFrame, wxFrame)
166 EVT_MENU(Font_Quit, MyFrame::OnQuit)
409d5a58 167 EVT_MENU(Font_ViewMsg, MyFrame::OnViewMsg)
1ccd74da 168 EVT_MENU(Font_About, MyFrame::OnAbout)
409d5a58 169
f6bcfd97
BP
170 EVT_MENU(Font_IncSize, MyFrame::OnIncFont)
171 EVT_MENU(Font_DecSize, MyFrame::OnDecFont)
409d5a58
VZ
172 EVT_MENU(Font_Bold, MyFrame::OnBold)
173 EVT_MENU(Font_Italic, MyFrame::OnItalic)
174 EVT_MENU(Font_Underlined, MyFrame::OnUnderline)
818503a1
VZ
175
176 EVT_MENU(Font_wxNORMAL_FONT, MyFrame::OnwxPointerFont)
177 EVT_MENU(Font_wxSMALL_FONT, MyFrame::OnwxPointerFont)
178 EVT_MENU(Font_wxITALIC_FONT, MyFrame::OnwxPointerFont)
179 EVT_MENU(Font_wxSWISS_FONT, MyFrame::OnwxPointerFont)
180
409d5a58
VZ
181 EVT_MENU(Font_CheckNativeToFromString, MyFrame::OnCheckNativeToFromString)
182
1ccd74da 183 EVT_MENU(Font_Choose, MyFrame::OnSelectFont)
36f210c8 184 EVT_MENU(Font_EnumFamiliesForEncoding, MyFrame::OnEnumerateFamiliesForEncoding)
ddc8c2e3
VZ
185 EVT_MENU(Font_EnumFamilies, MyFrame::OnEnumerateFamilies)
186 EVT_MENU(Font_EnumFixedFamilies, MyFrame::OnEnumerateFixedFamilies)
d111a89a 187 EVT_MENU(Font_EnumEncodings, MyFrame::OnEnumerateEncodings)
1ccd74da
VZ
188END_EVENT_TABLE()
189
be5a51fb 190// Create a new application object: this macro will allow wxWidgets to create
1ccd74da
VZ
191// the application object during program execution (it's better than using a
192// static object for many reasons) and also declares the accessor function
193// wxGetApp() which will return the reference of the right type (i.e. MyApp and
194// not wxApp)
195IMPLEMENT_APP(MyApp)
196
197// ============================================================================
198// implementation
199// ============================================================================
200
201// ----------------------------------------------------------------------------
202// the application class
203// ----------------------------------------------------------------------------
204
205// `Main program' equivalent: the program execution "starts" here
206bool MyApp::OnInit()
207{
208 // Create the main application window
be5a51fb 209 MyFrame *frame = new MyFrame(wxT("Font wxWidgets demo"),
53f6aab7 210 wxPoint(50, 50), wxSize(600, 400));
1ccd74da
VZ
211
212 // Show it and tell the application that it's our main window
a7a5165c 213 frame->Show(true);
1ccd74da
VZ
214 SetTopWindow(frame);
215
216 // success: wxApp::OnRun() will be called which will enter the main message
a7a5165c 217 // loop and the application will run. If we returned 'false' here, the
1ccd74da 218 // application would exit immediately.
a7a5165c 219 return true;
1ccd74da
VZ
220}
221
222// ----------------------------------------------------------------------------
223// main frame
224// ----------------------------------------------------------------------------
225
226// frame constructor
227MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
a7a5165c 228 : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size), m_textctrl(NULL)
1ccd74da 229{
f6bcfd97
BP
230 m_fontSize = 12;
231
1ccd74da
VZ
232 // create a menu bar
233 wxMenu *menuFile = new wxMenu;
234
2b5f62a0
VZ
235 menuFile->Append(Font_ViewMsg, wxT("&View...\tCtrl-V"),
236 wxT("View an email message file"));
3c1866e8 237 menuFile->AppendSeparator();
2b5f62a0 238 menuFile->Append(Font_About, wxT("&About...\tCtrl-A"), wxT("Show about dialog"));
1ccd74da 239 menuFile->AppendSeparator();
2b5f62a0 240 menuFile->Append(Font_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
1ccd74da
VZ
241
242 wxMenu *menuFont = new wxMenu;
2b5f62a0
VZ
243 menuFont->Append(Font_IncSize, wxT("&Increase font size by 2 points\tCtrl-I"));
244 menuFont->Append(Font_DecSize, wxT("&Decrease font size by 2 points\tCtrl-D"));
f6bcfd97 245 menuFont->AppendSeparator();
2153bf89
DS
246 menuFont->AppendCheckItem(Font_Bold, wxT("&Bold\tCtrl-B"), wxT("Toggle bold state"));
247 menuFont->AppendCheckItem(Font_Italic, wxT("&Oblique\tCtrl-O"), wxT("Toggle italic state"));
248 menuFont->AppendCheckItem(Font_Underlined, wxT("&Underlined\tCtrl-U"),
249 wxT("Toggle underlined state"));
818503a1 250
ddc8c2e3 251 menuFont->AppendSeparator();
409d5a58 252 menuFont->Append(Font_CheckNativeToFromString,
2b5f62a0 253 wxT("Check Native Font Info To/From String"));
409d5a58
VZ
254
255 wxMenu *menuSelect = new wxMenu;
2b5f62a0
VZ
256 menuSelect->Append(Font_Choose, wxT("&Select font...\tCtrl-S"),
257 wxT("Select a standard font"));
818503a1
VZ
258
259 wxMenu *menuStdFonts = new wxMenu;
be5a51fb
JS
260 menuStdFonts->Append(Font_wxNORMAL_FONT, wxT("wxNORMAL_FONT"), wxT("Normal font used by wxWidgets"));
261 menuStdFonts->Append(Font_wxSMALL_FONT, wxT("wxSMALL_FONT"), wxT("Small font used by wxWidgets"));
262 menuStdFonts->Append(Font_wxITALIC_FONT, wxT("wxITALIC_FONT"), wxT("Italic font used by wxWidgets"));
263 menuStdFonts->Append(Font_wxSWISS_FONT, wxT("wxSWISS_FONT"), wxT("Swiss font used by wxWidgets"));
643dcb7a 264 menuSelect->Append(Font_Standard, wxT("Standar&d fonts"), menuStdFonts);
818503a1 265
409d5a58 266 menuSelect->AppendSeparator();
2b5f62a0 267 menuSelect->Append(Font_EnumFamilies, wxT("Enumerate font &families\tCtrl-F"));
409d5a58 268 menuSelect->Append(Font_EnumFixedFamilies,
2b5f62a0 269 wxT("Enumerate fi&xed font families\tCtrl-X"));
409d5a58 270 menuSelect->Append(Font_EnumEncodings,
2b5f62a0 271 wxT("Enumerate &encodings\tCtrl-E"));
409d5a58 272 menuSelect->Append(Font_EnumFamiliesForEncoding,
2b5f62a0
VZ
273 wxT("Find font for en&coding...\tCtrl-C"),
274 wxT("Find font families for given encoding"));
1ccd74da
VZ
275
276 // now append the freshly created menu to the menu bar...
277 wxMenuBar *menuBar = new wxMenuBar;
2b5f62a0
VZ
278 menuBar->Append(menuFile, wxT("&File"));
279 menuBar->Append(menuFont, wxT("F&ont"));
280 menuBar->Append(menuSelect, wxT("&Select"));
1ccd74da
VZ
281
282 // ... and attach this menu bar to the frame
283 SetMenuBar(menuBar);
284
75421bf1
VZ
285 wxSplitterWindow *splitter = new wxSplitterWindow(this);
286
a7a5165c 287 m_textctrl = new wxTextCtrl(splitter, wxID_ANY,
2b5f62a0 288 wxT("Paste text here to see how it looks\nlike in the given font"),
36f210c8
VZ
289 wxDefaultPosition, wxDefaultSize,
290 wxTE_MULTILINE);
291
75421bf1
VZ
292 m_canvas = new MyCanvas(splitter);
293
294 splitter->SplitHorizontally(m_textctrl, m_canvas, 100);
1ccd74da
VZ
295
296 // create a status bar just for fun (by default with 1 pane only)
a1d58ddc 297 CreateStatusBar();
be5a51fb 298 SetStatusText(wxT("Welcome to wxWidgets font demo!"));
1ccd74da
VZ
299}
300
e680a378 301// --------------------------------------------------------
1ccd74da 302
e680a378 303class MyEncodingEnumerator : public wxFontEnumerator
d111a89a 304{
e680a378 305public:
bb84929e 306 MyEncodingEnumerator()
e680a378 307 { m_n = 0; }
d111a89a 308
bb84929e 309 const wxString& GetText() const
e680a378 310 { return m_text; }
d111a89a 311
e680a378
RR
312protected:
313 virtual bool OnFontEncoding(const wxString& facename,
314 const wxString& encoding)
315 {
316 wxString text;
4693b20c 317 text.Printf(wxT("Encoding %d: %s (available in facename '%s')\n"),
e680a378
RR
318 ++m_n, encoding.c_str(), facename.c_str());
319 m_text += text;
a7a5165c 320 return true;
e680a378 321 }
d111a89a 322
e680a378
RR
323private:
324 size_t m_n;
325 wxString m_text;
326};
d111a89a 327
e680a378
RR
328void MyFrame::OnEnumerateEncodings(wxCommandEvent& WXUNUSED(event))
329{
330 MyEncodingEnumerator fontEnumerator;
d111a89a
VZ
331
332 fontEnumerator.EnumerateEncodings();
333
4693b20c 334 wxLogMessage(wxT("Enumerating all available encodings:\n%s"),
d111a89a
VZ
335 fontEnumerator.GetText().c_str());
336}
1ccd74da 337
e680a378 338// -------------------------------------------------------------
36f210c8 339
e680a378
RR
340class MyFontEnumerator : public wxFontEnumerator
341{
342public:
bb84929e 343 bool GotAny() const
e680a378 344 { return !m_facenames.IsEmpty(); }
d111a89a 345
bb84929e 346 const wxArrayString& GetFacenames() const
e680a378 347 { return m_facenames; }
ddc8c2e3 348
e680a378
RR
349protected:
350 virtual bool OnFacename(const wxString& facename)
351 {
352 m_facenames.Add(facename);
a7a5165c 353 return true;
e680a378 354 }
ddc8c2e3
VZ
355
356 private:
a1d58ddc 357 wxArrayString m_facenames;
e680a378
RR
358} fontEnumerator;
359
360bool MyFrame::DoEnumerateFamilies(bool fixedWidthOnly,
361 wxFontEncoding encoding,
362 bool silent)
363{
364 MyFontEnumerator fontEnumerator;
ddc8c2e3 365
3c1866e8 366 fontEnumerator.EnumerateFacenames(encoding, fixedWidthOnly);
d111a89a 367
36f210c8
VZ
368 if ( fontEnumerator.GotAny() )
369 {
ea9144a3
VZ
370 int nFacenames = fontEnumerator.GetFacenames().GetCount();
371 if ( !silent )
372 {
4693b20c
MB
373 wxLogStatus(this, wxT("Found %d %sfonts"),
374 nFacenames, fixedWidthOnly ? wxT("fixed width ") : wxT(""));
ea9144a3 375 }
a1d58ddc 376
ea9144a3 377 wxString facename;
7beba2fc 378 if ( silent )
ea9144a3
VZ
379 {
380 // choose the first
381 facename = fontEnumerator.GetFacenames().Item(0);
382 }
7beba2fc 383 else
ea9144a3
VZ
384 {
385 // let the user choose
386 wxString *facenames = new wxString[nFacenames];
387 int n;
388 for ( n = 0; n < nFacenames; n++ )
389 facenames[n] = fontEnumerator.GetFacenames().Item(n);
390
2b5f62a0 391 n = wxGetSingleChoiceIndex(wxT("Choose a facename"), wxT("Font demo"),
7beba2fc 392 nFacenames, facenames, this);
ea9144a3
VZ
393
394 if ( n != -1 )
395 facename = facenames[n];
396
397 delete [] facenames;
398 }
399
400 if ( !facename.IsEmpty() )
a1d58ddc 401 {
ea9144a3 402 wxFont font(12, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
a7a5165c 403 wxFONTWEIGHT_NORMAL, false, facename, encoding);
a1d58ddc
VZ
404
405 DoChangeFont(font);
406 }
407
a7a5165c 408 return true;
36f210c8 409 }
7beba2fc 410 else if ( !silent )
36f210c8 411 {
4693b20c 412 wxLogWarning(wxT("No such fonts found."));
36f210c8 413 }
7beba2fc 414
a7a5165c 415 return false;
ddc8c2e3
VZ
416}
417
36f210c8 418void MyFrame::OnEnumerateFamiliesForEncoding(wxCommandEvent& WXUNUSED(event))
1ccd74da 419{
36f210c8
VZ
420 static wxFontEncoding encodings[] =
421 {
422 wxFONTENCODING_ISO8859_1,
423 wxFONTENCODING_ISO8859_2,
424 wxFONTENCODING_ISO8859_5,
425 wxFONTENCODING_ISO8859_7,
426 wxFONTENCODING_ISO8859_15,
427 wxFONTENCODING_KOI8,
15ad38c3 428 wxFONTENCODING_KOI8_U,
36f210c8
VZ
429 wxFONTENCODING_CP1250,
430 wxFONTENCODING_CP1251,
431 wxFONTENCODING_CP1252,
432 };
433
30764ab5 434 static const wxString encodingNames[] =
36f210c8 435 {
2b5f62a0
VZ
436 wxT("Western European (ISO-8859-1)"),
437 wxT("Central European (ISO-8859-2)"),
438 wxT("Cyrillic (ISO-8859-5)"),
439 wxT("Greek (ISO-8859-7)"),
440 wxT("Western European with Euro (ISO-8859-15)"),
441 wxT("KOI8-R"),
15ad38c3 442 wxT("KOI8-U"),
2b5f62a0
VZ
443 wxT("Windows Central European (CP 1250)"),
444 wxT("Windows Cyrillic (CP 1251)"),
445 wxT("Windows Western European (CP 1252)"),
36f210c8
VZ
446 };
447
2b5f62a0 448 int n = wxGetSingleChoiceIndex(wxT("Choose an encoding"), wxT("Font demo"),
a1d58ddc 449 WXSIZEOF(encodingNames),
30764ab5 450 encodingNames,
36f210c8
VZ
451 this);
452
453 if ( n != -1 )
454 {
a7a5165c 455 DoEnumerateFamilies(false, encodings[n]);
36f210c8 456 }
1ccd74da
VZ
457}
458
30764ab5
VZ
459void MyFrame::OnCheckNativeToFromString(wxCommandEvent& WXUNUSED(event))
460{
7826e2dd 461 wxString fontInfo = m_canvas->GetTextFont().GetNativeFontInfoDesc();
30764ab5 462
7826e2dd
VZ
463 if ( fontInfo.IsEmpty() )
464 {
4693b20c 465 wxLogError(wxT("Native font info string is empty!"));
7826e2dd 466 }
30764ab5
VZ
467 else
468 {
7826e2dd
VZ
469 wxFont *font = wxFont::New(fontInfo);
470 if ( fontInfo != font->GetNativeFontInfoDesc() )
4693b20c 471 wxLogError(wxT("wxNativeFontInfo ToString()/FromString() broken!"));
30764ab5 472 else
ab5fe833
VZ
473 wxLogMessage(wxT("wxNativeFontInfo works: %s"), fontInfo.c_str());
474
7826e2dd 475 delete font;
30764ab5
VZ
476 }
477}
478
f6bcfd97
BP
479void MyFrame::DoResizeFont(int diff)
480{
ab5fe833
VZ
481 wxFont font = m_canvas->GetTextFont();
482
483 font.SetPointSize(font.GetPointSize() + diff);
484 DoChangeFont(font);
f6bcfd97
BP
485}
486
409d5a58
VZ
487void MyFrame::OnBold(wxCommandEvent& event)
488{
489 wxFont font = m_canvas->GetTextFont();
490
491 font.SetWeight(event.IsChecked() ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL);
492 DoChangeFont(font);
493}
494
495void MyFrame::OnItalic(wxCommandEvent& event)
496{
497 wxFont font = m_canvas->GetTextFont();
498
499 font.SetStyle(event.IsChecked() ? wxFONTSTYLE_ITALIC : wxFONTSTYLE_NORMAL);
500 DoChangeFont(font);
501}
502
503void MyFrame::OnUnderline(wxCommandEvent& event)
504{
505 wxFont font = m_canvas->GetTextFont();
506
507 font.SetUnderlined(event.IsChecked());
508 DoChangeFont(font);
509}
510
818503a1
VZ
511void MyFrame::OnwxPointerFont(wxCommandEvent& event)
512{
513 wxFont font;
514
515 switch (event.GetId())
516 {
517 case Font_wxNORMAL_FONT : font = wxFont(*wxNORMAL_FONT); break;
518 case Font_wxSMALL_FONT : font = wxFont(*wxSMALL_FONT); break;
519 case Font_wxITALIC_FONT : font = wxFont(*wxITALIC_FONT); break;
520 case Font_wxSWISS_FONT : font = wxFont(*wxSWISS_FONT); break;
521 default : font = wxFont(*wxNORMAL_FONT); break;
522 }
523
a7a5165c
WS
524 GetMenuBar()->Check(Font_Bold, false);
525 GetMenuBar()->Check(Font_Italic, false);
526 GetMenuBar()->Check(Font_Underlined, false);
818503a1
VZ
527
528 DoChangeFont(font);
529}
530
a1d58ddc
VZ
531void MyFrame::DoChangeFont(const wxFont& font, const wxColour& col)
532{
a1d58ddc
VZ
533 m_canvas->SetTextFont(font);
534 if ( col.Ok() )
535 m_canvas->SetColour(col);
536 m_canvas->Refresh();
537
538 m_textctrl->SetFont(font);
539 if ( col.Ok() )
540 m_textctrl->SetForegroundColour(col);
541}
542
1ccd74da
VZ
543void MyFrame::OnSelectFont(wxCommandEvent& WXUNUSED(event))
544{
545 wxFontData data;
546 data.SetInitialFont(m_canvas->GetTextFont());
547 data.SetColour(m_canvas->GetColour());
548
8fb97d46 549 wxFontDialog dialog(this, data);
1ccd74da
VZ
550 if ( dialog.ShowModal() == wxID_OK )
551 {
552 wxFontData retData = dialog.GetFontData();
36f210c8
VZ
553 wxFont font = retData.GetChosenFont();
554 wxColour colour = retData.GetColour();
555
a1d58ddc 556 DoChangeFont(font, colour);
409d5a58
VZ
557
558 // update the state of the bold/italic/underlined menu items
559 wxMenuBar *mbar = GetMenuBar();
560 if ( mbar )
561 {
562 mbar->Check(Font_Bold, font.GetWeight() == wxFONTWEIGHT_BOLD);
563 mbar->Check(Font_Italic, font.GetStyle() == wxFONTSTYLE_ITALIC);
564 mbar->Check(Font_Underlined, font.GetUnderlined());
565 }
1ccd74da
VZ
566 }
567}
568
569void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
570{
a7a5165c
WS
571 // true is to force the frame to close
572 Close(true);
1ccd74da
VZ
573}
574
3c1866e8
VZ
575void MyFrame::OnViewMsg(wxCommandEvent& WXUNUSED(event))
576{
577 // first, choose the file
578 static wxString s_dir, s_file;
2b5f62a0 579 wxFileDialog dialog(this, wxT("Open an email message file"),
3c1866e8
VZ
580 s_dir, s_file);
581 if ( dialog.ShowModal() != wxID_OK )
582 return;
583
584 // save for the next time
585 s_dir = dialog.GetDirectory();
586 s_file = dialog.GetFilename();
587
588 wxString filename = dialog.GetPath();
589
590 // load it and search for Content-Type header
591 wxTextFile file(filename);
592 if ( !file.Open() )
593 return;
594
595 wxString charset;
596
2b5f62a0
VZ
597 static const wxChar *prefix = wxT("Content-Type: text/plain; charset=");
598 const size_t len = wxStrlen(prefix);
3c1866e8
VZ
599
600 size_t n, count = file.GetLineCount();
601 for ( n = 0; n < count; n++ )
602 {
603 wxString line = file[n];
604
605 if ( !line )
606 {
607 // if it is an email message, headers are over, no need to parse
608 // all the file
609 break;
610 }
611
612 if ( line.Left(len) == prefix )
613 {
614 // found!
4693b20c 615 const wxChar *pc = line.c_str() + len;
2b5f62a0 616 if ( *pc == wxT('"') )
3c1866e8
VZ
617 pc++;
618
2b5f62a0 619 while ( *pc && *pc != wxT('"') )
3c1866e8
VZ
620 {
621 charset += *pc++;
622 }
623
624 break;
625 }
626 }
627
628 if ( !charset )
629 {
4693b20c 630 wxLogError(wxT("The file '%s' doesn't contain charset information."),
3c1866e8
VZ
631 filename.c_str());
632
633 return;
634 }
635
636 // ok, now get the corresponding encoding
142b3bc2 637 wxFontEncoding fontenc = wxFontMapper::Get()->CharsetToEncoding(charset);
3c1866e8
VZ
638 if ( fontenc == wxFONTENCODING_SYSTEM )
639 {
4693b20c 640 wxLogError(wxT("Charset '%s' is unsupported."), charset.c_str());
3c1866e8
VZ
641 return;
642 }
643
7337790c
VS
644 m_textctrl->LoadFile(filename);
645
bb84929e 646 if ( fontenc == wxFONTENCODING_UTF8 ||
142b3bc2 647 !wxFontMapper::Get()->IsEncodingAvailable(fontenc) )
7337790c
VS
648 {
649 // try to find some similar encoding:
3e2dd3db 650 wxFontEncoding encAlt;
142b3bc2 651 if ( wxFontMapper::Get()->GetAltForEncoding(fontenc, &encAlt) )
7337790c
VS
652 {
653 wxEncodingConverter conv;
bb84929e 654
3e2dd3db 655 if (conv.Init(fontenc, encAlt))
7337790c 656 {
3e2dd3db 657 fontenc = encAlt;
7337790c
VS
658 m_textctrl -> SetValue(conv.Convert(m_textctrl -> GetValue()));
659 }
660 else
3e2dd3db 661 {
4693b20c 662 wxLogWarning(wxT("Cannot convert from '%s' to '%s'."),
7337790c 663 wxFontMapper::GetEncodingDescription(fontenc).c_str(),
3e2dd3db
VZ
664 wxFontMapper::GetEncodingDescription(encAlt).c_str());
665 }
7337790c
VS
666 }
667 else
4693b20c 668 wxLogWarning(wxT("No fonts for encoding '%s' on this system."),
7337790c
VS
669 wxFontMapper::GetEncodingDescription(fontenc).c_str());
670 }
671
3c1866e8 672 // and now create the correct font
a7a5165c 673 if ( !DoEnumerateFamilies(false, fontenc, true /* silent */) )
7beba2fc 674 {
ea9144a3 675 wxFont font(12, wxFONTFAMILY_DEFAULT, wxFONTSTYLE_NORMAL,
a7a5165c 676 wxFONTWEIGHT_NORMAL, false /* !underlined */,
7beba2fc
VZ
677 wxEmptyString /* facename */, fontenc);
678 if ( font.Ok() )
679 {
680 DoChangeFont(font);
681 }
682 else
683 {
4693b20c 684 wxLogWarning(wxT("No fonts for encoding '%s' on this system."),
7beba2fc
VZ
685 wxFontMapper::GetEncodingDescription(fontenc).c_str());
686 }
687 }
3c1866e8
VZ
688}
689
1ccd74da
VZ
690void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
691{
be5a51fb 692 wxMessageBox(wxT("wxWidgets font demo\n")
2b5f62a0
VZ
693 wxT("(c) 1999 Vadim Zeitlin"),
694 wxT("About Font"),
1ccd74da
VZ
695 wxOK | wxICON_INFORMATION, this);
696}
697
1ccd74da
VZ
698// ----------------------------------------------------------------------------
699// MyCanvas
700// ----------------------------------------------------------------------------
701
702BEGIN_EVENT_TABLE(MyCanvas, wxWindow)
703 EVT_PAINT(MyCanvas::OnPaint)
704END_EVENT_TABLE()
705
706MyCanvas::MyCanvas( wxWindow *parent )
a7a5165c 707 : wxWindow( parent, wxID_ANY ),
11c7d5b6 708 m_colour(*wxRED), m_font(*wxNORMAL_FONT)
1ccd74da 709{
1ccd74da
VZ
710}
711
712MyCanvas::~MyCanvas()
713{
714}
715
716void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) )
717{
718 wxPaintDC dc(this);
719 PrepareDC(dc);
720
721 // set background
a60b1f5d 722 dc.SetBackground(wxBrush(wxT("white"), wxSOLID));
1ccd74da
VZ
723 dc.Clear();
724
53f6aab7
VZ
725 // one text line height
726 wxCoord hLine = dc.GetCharHeight();
727
728 // the current text origin
729 wxCoord x = 5,
730 y = 5;
731
1ccd74da
VZ
732 // output the font name/info
733 wxString fontInfo;
53f6aab7 734 fontInfo.Printf(wxT("Font size is %d points, family: %s, encoding: %s"),
f6bcfd97 735 m_font.GetPointSize(),
1ccd74da 736 m_font.GetFamilyString().c_str(),
142b3bc2 737 wxFontMapper::Get()->
53f6aab7
VZ
738 GetEncodingDescription(m_font.GetEncoding()).c_str());
739
740 dc.DrawText(fontInfo, x, y);
741 y += hLine;
7ab2c081 742
53f6aab7 743 fontInfo.Printf(wxT("Style: %s, weight: %s, fixed width: %s"),
1ccd74da 744 m_font.GetStyleString().c_str(),
53f6aab7
VZ
745 m_font.GetWeightString().c_str(),
746 m_font.IsFixedWidth() ? _T("yes") : _T("no"));
1ccd74da 747
53f6aab7
VZ
748 dc.DrawText(fontInfo, x, y);
749 y += hLine;
1ccd74da 750
7826e2dd 751 if ( m_font.Ok() )
30764ab5 752 {
ca2bd5e3 753 const wxNativeFontInfo *info = m_font.GetNativeFontInfo();
409d5a58
VZ
754 if ( info )
755 {
409d5a58
VZ
756 wxString fontDesc = m_font.GetNativeFontInfoUserDesc();
757 fontInfo.Printf(wxT("Native font info: %s"), fontDesc.c_str());
758
759 dc.DrawText(fontInfo, x, y);
760 y += hLine;
761 }
30764ab5
VZ
762 }
763
53f6aab7 764 y += hLine;
25faedaa 765
1ccd74da
VZ
766 // prepare to draw the font
767 dc.SetFont(m_font);
768 dc.SetTextForeground(m_colour);
769
25faedaa
VZ
770 // the size of one cell (Normally biggest char + small margin)
771 long maxCharWidth, maxCharHeight;
772 dc.GetTextExtent(wxT("W"), &maxCharWidth, &maxCharHeight);
773 int w = maxCharWidth + 5,
774 h = maxCharHeight + 4;
1ccd74da 775
1ccd74da
VZ
776
777 // print all font symbols from 32 to 256 in 7 rows of 32 chars each
25faedaa 778 for ( int i = 0; i < 7; i++ )
1ccd74da
VZ
779 {
780 for ( int j = 0; j < 32; j++ )
781 {
25faedaa
VZ
782 wxChar c = 32 * (i + 1) + j;
783
784 long charWidth, charHeight;
785 dc.GetTextExtent(c, &charWidth, &charHeight);
786 dc.DrawText
787 (
788 c,
789 x + w*j + (maxCharWidth - charWidth) / 2 + 1,
790 y + h*i + (maxCharHeight - charHeight) / 2
791 );
1ccd74da
VZ
792 }
793 }
794
795 // draw the lines between them
ab1ca7b3 796 dc.SetPen(wxPen(wxColour(_T("blue")), 1, wxSOLID));
1ccd74da
VZ
797 int l;
798
799 // horizontal
1ccd74da
VZ
800 for ( l = 0; l < 8; l++ )
801 {
802 int yl = y + h*l - 2;
25faedaa 803 dc.DrawLine(x - 2, yl, x + 32*w - 1, yl);
1ccd74da
VZ
804 }
805
806 // and vertical
807 for ( l = 0; l < 33; l++ )
808 {
809 int xl = x + w*l - 2;
25faedaa 810 dc.DrawLine(xl, y - 2, xl, y + 7*h - 1);
1ccd74da
VZ
811 }
812}