1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFont demo
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx/wx.h".
13 #include "wx/wxprec.h"
19 // for all others, include the necessary headers (this file is usually all you
20 // need because it includes almost all <standard< wxWindows headers
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"
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
39 // Define a new application type, each program should derive a class from wxApp
40 class MyApp
: public wxApp
43 // override base class virtuals
44 // ----------------------------
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();
52 // MyCanvas is a canvas on which we show the font sample
53 class MyCanvas
: public wxWindow
56 MyCanvas( wxWindow
*parent
);
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
; }
66 void OnPaint( wxPaintEvent
&event
);
75 // Define a new frame type: this is going to be our main frame
76 class MyFrame
: public wxFrame
80 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
);
83 MyCanvas
*GetCanvas() const { return m_canvas
; }
85 // event handlers (these functions should _not_ be virtual)
86 void OnQuit(wxCommandEvent
& event
);
87 void OnAbout(wxCommandEvent
& event
);
88 void OnIncFont(wxCommandEvent
& event
) { DoResizeFont(+2); }
89 void OnDecFont(wxCommandEvent
& event
) { DoResizeFont(-2); }
91 void OnViewMsg(wxCommandEvent
& event
);
92 void OnSelectFont(wxCommandEvent
& event
);
93 void OnEnumerateFamiliesForEncoding(wxCommandEvent
& event
);
94 void OnEnumerateFamilies(wxCommandEvent
& WXUNUSED(event
))
95 { DoEnumerateFamilies(FALSE
); }
96 void OnEnumerateFixedFamilies(wxCommandEvent
& WXUNUSED(event
))
97 { DoEnumerateFamilies(TRUE
); }
98 void OnEnumerateEncodings(wxCommandEvent
& event
);
100 void OnCheckNativeToFromString(wxCommandEvent
& event
);
103 bool DoEnumerateFamilies(bool fixedWidthOnly
,
104 wxFontEncoding encoding
= wxFONTENCODING_SYSTEM
,
105 bool silent
= FALSE
);
107 void DoResizeFont(int diff
);
108 void DoChangeFont(const wxFont
& font
, const wxColour
& col
= wxNullColour
);
110 size_t m_fontSize
; // in points
112 wxTextCtrl
*m_textctrl
;
116 // any class wishing to process wxWindows events must use this macro
117 DECLARE_EVENT_TABLE()
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
124 // IDs for the controls and the menu commands
134 Font_EnumFamiliesForEncoding
,
136 Font_EnumFixedFamilies
,
138 Font_CheckNativeToFromString
,
142 // ----------------------------------------------------------------------------
143 // event tables and other macros for wxWindows
144 // ----------------------------------------------------------------------------
146 // the event tables connect the wxWindows events with the functions (event
147 // handlers) which process them. It can be also done at run-time, but for the
148 // simple menu events like this the static method is much simpler.
149 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
150 EVT_MENU(Font_Quit
, MyFrame::OnQuit
)
151 EVT_MENU(Font_About
, MyFrame::OnAbout
)
152 EVT_MENU(Font_IncSize
, MyFrame::OnIncFont
)
153 EVT_MENU(Font_DecSize
, MyFrame::OnDecFont
)
154 EVT_MENU(Font_ViewMsg
, MyFrame::OnViewMsg
)
155 EVT_MENU(Font_Choose
, MyFrame::OnSelectFont
)
156 EVT_MENU(Font_EnumFamiliesForEncoding
, MyFrame::OnEnumerateFamiliesForEncoding
)
157 EVT_MENU(Font_EnumFamilies
, MyFrame::OnEnumerateFamilies
)
158 EVT_MENU(Font_EnumFixedFamilies
, MyFrame::OnEnumerateFixedFamilies
)
159 EVT_MENU(Font_EnumEncodings
, MyFrame::OnEnumerateEncodings
)
160 EVT_MENU(Font_CheckNativeToFromString
, MyFrame::OnCheckNativeToFromString
)
163 // Create a new application object: this macro will allow wxWindows to create
164 // the application object during program execution (it's better than using a
165 // static object for many reasons) and also declares the accessor function
166 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
170 // ============================================================================
172 // ============================================================================
174 // ----------------------------------------------------------------------------
175 // the application class
176 // ----------------------------------------------------------------------------
178 // `Main program' equivalent: the program execution "starts" here
181 // Create the main application window
182 MyFrame
*frame
= new MyFrame("Font wxWindows demo",
183 wxPoint(50, 50), wxSize(450, 340));
185 // Show it and tell the application that it's our main window
189 // success: wxApp::OnRun() will be called which will enter the main message
190 // loop and the application will run. If we returned FALSE here, the
191 // application would exit immediately.
195 // ----------------------------------------------------------------------------
197 // ----------------------------------------------------------------------------
200 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
)
201 : wxFrame((wxFrame
*)NULL
, -1, title
, pos
, size
), m_textctrl(NULL
)
206 wxMenu
*menuFile
= new wxMenu
;
208 menuFile
->Append(Font_ViewMsg
, "&View...\tCtrl-V",
209 "View an email message file");
210 menuFile
->AppendSeparator();
211 menuFile
->Append(Font_About
, "&About...\tCtrl-A", "Show about dialog");
212 menuFile
->AppendSeparator();
213 menuFile
->Append(Font_Quit
, "E&xit\tAlt-X", "Quit this program");
215 wxMenu
*menuFont
= new wxMenu
;
216 menuFont
->Append(Font_IncSize
, "&Increase font size by 2 points\tCtrl-I");
217 menuFont
->Append(Font_DecSize
, "&Decrease font size by 2 points\tCtrl-D");
218 menuFont
->AppendSeparator();
219 menuFont
->Append(Font_Choose
, "&Select font...\tCtrl-S",
220 "Select a standard font");
221 menuFont
->AppendSeparator();
222 menuFont
->Append(Font_EnumFamilies
, "Enumerate font &families\tCtrl-F");
223 menuFont
->Append(Font_EnumFixedFamilies
,
224 "Enumerate fi&xed font families\tCtrl-X");
225 menuFont
->Append(Font_EnumEncodings
,
226 "Enumerate &encodings\tCtrl-E");
227 menuFont
->Append(Font_EnumFamiliesForEncoding
,
228 "Find font for en&coding...\tCtrl-C",
229 "Find font families for given encoding");
230 menuFont
->AppendSeparator();
231 menuFont
->Append(Font_CheckNativeToFromString
,
232 "Check Native Font Info To/From String");
234 // now append the freshly created menu to the menu bar...
235 wxMenuBar
*menuBar
= new wxMenuBar
;
236 menuBar
->Append(menuFile
, "&File");
237 menuBar
->Append(menuFont
, "F&ont");
239 // ... and attach this menu bar to the frame
242 wxSplitterWindow
*splitter
= new wxSplitterWindow(this);
244 m_textctrl
= new wxTextCtrl(splitter
, -1,
245 "Paste text here to see how it looks\n"
246 "like in the given font",
247 wxDefaultPosition
, wxDefaultSize
,
250 m_canvas
= new MyCanvas(splitter
);
252 splitter
->SplitHorizontally(m_textctrl
, m_canvas
, 100);
254 // create a status bar just for fun (by default with 1 pane only)
256 SetStatusText("Welcome to wxWindows font demo!");
259 // --------------------------------------------------------
261 class MyEncodingEnumerator
: public wxFontEnumerator
264 MyEncodingEnumerator()
267 const wxString
& GetText() const
271 virtual bool OnFontEncoding(const wxString
& facename
,
272 const wxString
& encoding
)
275 text
.Printf(wxT("Encoding %d: %s (available in facename '%s')\n"),
276 ++m_n
, encoding
.c_str(), facename
.c_str());
286 void MyFrame::OnEnumerateEncodings(wxCommandEvent
& WXUNUSED(event
))
288 MyEncodingEnumerator fontEnumerator
;
290 fontEnumerator
.EnumerateEncodings();
292 wxLogMessage(wxT("Enumerating all available encodings:\n%s"),
293 fontEnumerator
.GetText().c_str());
296 // -------------------------------------------------------------
298 class MyFontEnumerator
: public wxFontEnumerator
302 { return !m_facenames
.IsEmpty(); }
304 const wxArrayString
& GetFacenames() const
305 { return m_facenames
; }
308 virtual bool OnFacename(const wxString
& facename
)
310 m_facenames
.Add(facename
);
315 wxArrayString m_facenames
;
318 bool MyFrame::DoEnumerateFamilies(bool fixedWidthOnly
,
319 wxFontEncoding encoding
,
322 MyFontEnumerator fontEnumerator
;
324 fontEnumerator
.EnumerateFacenames(encoding
, fixedWidthOnly
);
326 if ( fontEnumerator
.GotAny() )
328 int nFacenames
= fontEnumerator
.GetFacenames().GetCount();
331 wxLogStatus(this, wxT("Found %d %sfonts"),
332 nFacenames
, fixedWidthOnly
? wxT("fixed width ") : wxT(""));
339 facename
= fontEnumerator
.GetFacenames().Item(0);
343 // let the user choose
344 wxString
*facenames
= new wxString
[nFacenames
];
346 for ( n
= 0; n
< nFacenames
; n
++ )
347 facenames
[n
] = fontEnumerator
.GetFacenames().Item(n
);
349 n
= wxGetSingleChoiceIndex("Choose a facename", "Font demo",
350 nFacenames
, facenames
, this);
353 facename
= facenames
[n
];
358 if ( !facename
.IsEmpty() )
360 wxFont
font(12, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
,
361 wxFONTWEIGHT_NORMAL
, FALSE
, facename
, encoding
);
370 wxLogWarning(wxT("No such fonts found."));
376 void MyFrame::OnEnumerateFamiliesForEncoding(wxCommandEvent
& WXUNUSED(event
))
378 static wxFontEncoding encodings
[] =
380 wxFONTENCODING_ISO8859_1
,
381 wxFONTENCODING_ISO8859_2
,
382 wxFONTENCODING_ISO8859_5
,
383 wxFONTENCODING_ISO8859_7
,
384 wxFONTENCODING_ISO8859_15
,
386 wxFONTENCODING_CP1250
,
387 wxFONTENCODING_CP1251
,
388 wxFONTENCODING_CP1252
,
391 static const wxString encodingNames
[] =
393 "Western European (ISO-8859-1)",
394 "Central European (ISO-8859-2)",
395 "Cyrillic (ISO-8859-5)",
396 "Greek (ISO-8859-7)",
397 "Western European with Euro (ISO-8859-15)",
399 "Windows Central European (CP 1250)",
400 "Windows Cyrillic (CP 1251)",
401 "Windows Western European (CP 1252)",
404 int n
= wxGetSingleChoiceIndex("Choose an encoding", "Font demo",
405 WXSIZEOF(encodingNames
),
411 DoEnumerateFamilies(FALSE
, encodings
[n
]);
415 void MyFrame::OnCheckNativeToFromString(wxCommandEvent
& WXUNUSED(event
))
417 wxString fontInfo
= m_canvas
->GetTextFont().GetNativeFontInfoDesc();
419 if ( fontInfo
.IsEmpty() )
421 wxLogError(wxT("Native font info string is empty!"));
425 wxFont
*font
= wxFont::New(fontInfo
);
426 if ( fontInfo
!= font
->GetNativeFontInfoDesc() )
427 wxLogError(wxT("wxNativeFontInfo ToString()/FromString() broken!"));
429 wxLogError(wxT("wxNativeFontInfo works: %s"), fontInfo
.c_str());
434 void MyFrame::DoResizeFont(int diff
)
436 wxFont fontOld
= m_canvas
->GetTextFont();
440 fontOld
.GetPointSize() + diff
,
444 fontOld
.GetUnderlined(),
445 fontOld
.GetFaceName(),
446 fontOld
.GetEncoding()
451 void MyFrame::DoChangeFont(const wxFont
& font
, const wxColour
& col
)
453 m_canvas
->SetTextFont(font
);
455 m_canvas
->SetColour(col
);
458 m_textctrl
->SetFont(font
);
460 m_textctrl
->SetForegroundColour(col
);
463 void MyFrame::OnSelectFont(wxCommandEvent
& WXUNUSED(event
))
466 data
.SetInitialFont(m_canvas
->GetTextFont());
467 data
.SetColour(m_canvas
->GetColour());
469 wxFontDialog
dialog(this, &data
);
470 if ( dialog
.ShowModal() == wxID_OK
)
472 wxFontData retData
= dialog
.GetFontData();
473 wxFont font
= retData
.GetChosenFont();
474 wxColour colour
= retData
.GetColour();
476 DoChangeFont(font
, colour
);
480 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
482 // TRUE is to force the frame to close
486 void MyFrame::OnViewMsg(wxCommandEvent
& WXUNUSED(event
))
488 // first, choose the file
489 static wxString s_dir
, s_file
;
490 wxFileDialog
dialog(this, "Open an email message file",
492 if ( dialog
.ShowModal() != wxID_OK
)
495 // save for the next time
496 s_dir
= dialog
.GetDirectory();
497 s_file
= dialog
.GetFilename();
499 wxString filename
= dialog
.GetPath();
501 // load it and search for Content-Type header
502 wxTextFile
file(filename
);
508 static const char *prefix
= "Content-Type: text/plain; charset=";
509 const size_t len
= strlen(prefix
);
511 size_t n
, count
= file
.GetLineCount();
512 for ( n
= 0; n
< count
; n
++ )
514 wxString line
= file
[n
];
518 // if it is an email message, headers are over, no need to parse
523 if ( line
.Left(len
) == prefix
)
526 const wxChar
*pc
= line
.c_str() + len
;
530 while ( *pc
&& *pc
!= '"' )
541 wxLogError(wxT("The file '%s' doesn't contain charset information."),
547 // ok, now get the corresponding encoding
548 wxFontEncoding fontenc
= wxTheFontMapper
->CharsetToEncoding(charset
);
549 if ( fontenc
== wxFONTENCODING_SYSTEM
)
551 wxLogError(wxT("Charset '%s' is unsupported."), charset
.c_str());
555 m_textctrl
->LoadFile(filename
);
557 if ( fontenc
== wxFONTENCODING_UTF8
||
558 !wxTheFontMapper
->IsEncodingAvailable(fontenc
) )
560 // try to find some similar encoding:
561 wxFontEncoding encAlt
;
562 if ( wxTheFontMapper
->GetAltForEncoding(fontenc
, &encAlt
) )
564 wxEncodingConverter conv
;
566 if (conv
.Init(fontenc
, encAlt
))
569 m_textctrl
-> SetValue(conv
.Convert(m_textctrl
-> GetValue()));
573 wxLogWarning(wxT("Cannot convert from '%s' to '%s'."),
574 wxFontMapper::GetEncodingDescription(fontenc
).c_str(),
575 wxFontMapper::GetEncodingDescription(encAlt
).c_str());
579 wxLogWarning(wxT("No fonts for encoding '%s' on this system."),
580 wxFontMapper::GetEncodingDescription(fontenc
).c_str());
583 // and now create the correct font
584 if ( !DoEnumerateFamilies(FALSE
, fontenc
, TRUE
/* silent */) )
586 wxFont
font(12, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
,
587 wxFONTWEIGHT_NORMAL
, FALSE
/* !underlined */,
588 wxEmptyString
/* facename */, fontenc
);
595 wxLogWarning(wxT("No fonts for encoding '%s' on this system."),
596 wxFontMapper::GetEncodingDescription(fontenc
).c_str());
601 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
603 wxMessageBox("wxWindows font demo\n"
604 "(c) 1999 Vadim Zeitlin",
606 wxOK
| wxICON_INFORMATION
, this);
609 // ----------------------------------------------------------------------------
611 // ----------------------------------------------------------------------------
613 BEGIN_EVENT_TABLE(MyCanvas
, wxWindow
)
614 EVT_PAINT(MyCanvas::OnPaint
)
617 MyCanvas::MyCanvas( wxWindow
*parent
)
618 : wxWindow( parent
, -1 ),
619 m_colour(*wxRED
), m_font(*wxNORMAL_FONT
)
623 MyCanvas::~MyCanvas()
627 void MyCanvas::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
633 dc
.SetBackground(wxBrush(wxT("white"), wxSOLID
));
636 // output the font name/info
638 fontInfo
.Printf(wxT("Font size is %d points, family is %s, encoding is '%s', style %s, weight %s"),
639 m_font
.GetPointSize(),
640 m_font
.GetFamilyString().c_str(),
642 GetEncodingDescription(m_font
.GetEncoding()).c_str(),
643 m_font
.GetStyleString().c_str(),
644 m_font
.GetWeightString().c_str());
646 dc
.DrawText(fontInfo
, 5, 5);
650 wxString fontDesc
= m_font
.GetNativeFontInfoDesc();
652 fontInfo
.Printf(wxT("Native font info: %s"), fontDesc
.c_str());
653 dc
.DrawText(fontInfo
, 5, 5 + dc
.GetCharHeight());
656 // prepare to draw the font
658 dc
.SetTextForeground(m_colour
);
660 // the size of one cell (char + small margin)
661 int w
= dc
.GetCharWidth() + 5,
662 h
= dc
.GetCharHeight() + 4;
664 // the origin for our table
668 // print all font symbols from 32 to 256 in 7 rows of 32 chars each
669 for ( int i
= 1; i
< 8; i
++ )
671 for ( int j
= 0; j
< 32; j
++ )
673 dc
.DrawText(wxChar(32*i
+ j
), x
+ w
*j
, y
+ h
*i
);
677 // draw the lines between them
678 dc
.SetPen(wxPen(wxColour("blue"), 1, wxSOLID
));
683 for ( l
= 0; l
< 8; l
++ )
685 int yl
= y
+ h
*l
- 2;
686 dc
.DrawLine(x
- 2, yl
, x
+ 32*w
- 2, yl
);
690 for ( l
= 0; l
< 33; l
++ )
692 int xl
= x
+ w
*l
- 2;
693 dc
.DrawLine(xl
, y
, xl
, y
+ 7*h
- 2);