X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/53f6aab75294c585e53e02b618a09dcb1dd97fb8..33b494d643e42a2e2963987cbc3637f4593ea43a:/samples/font/font.cpp?ds=inline diff --git a/samples/font/font.cpp b/samples/font/font.cpp index 69e2621c5b..b92b86b255 100644 --- a/samples/font/font.cpp +++ b/samples/font/font.cpp @@ -17,7 +17,7 @@ #endif // for all others, include the necessary headers (this file is usually all you -// need because it includes almost all Append(Font_IncSize, "&Increase font size by 2 points\tCtrl-I"); menuFont->Append(Font_DecSize, "&Decrease font size by 2 points\tCtrl-D"); menuFont->AppendSeparator(); - menuFont->Append(Font_Choose, "&Select font...\tCtrl-S", - "Select a standard font"); + menuFont->Append(Font_Bold, "&Bold\tCtrl-B", "Toggle bold state", TRUE); + menuFont->Append(Font_Italic, "&Oblique\tCtrl-O", "Toggle italic state", TRUE); + menuFont->Append(Font_Underlined, "&Underlined\tCtrl-U", + "Toggle underlined state", TRUE); + menuFont->AppendSeparator(); - menuFont->Append(Font_EnumFamilies, "Enumerate font &families\tCtrl-F"); - menuFont->Append(Font_EnumFixedFamilies, + menuFont->Append(Font_CheckNativeToFromString, + "Check Native Font Info To/From String"); + + wxMenu *menuSelect = new wxMenu; + menuSelect->Append(Font_Choose, "&Select font...\tCtrl-S", + "Select a standard font"); + + wxMenu *menuStdFonts = new wxMenu; + menuStdFonts->Append(Font_wxNORMAL_FONT, "wxNORMAL_FONT", "Normal font used by wxWindows"); + menuStdFonts->Append(Font_wxSMALL_FONT, "wxSMALL_FONT", "Small font used by wxWindows"); + menuStdFonts->Append(Font_wxITALIC_FONT, "wxITALIC_FONT", "Italic font used by wxWindows"); + menuStdFonts->Append(Font_wxSWISS_FONT, "wxSWISS_FONT", "Swiss font used by wxWindows"); + menuSelect->Append(-2, "Standar&d fonts", menuStdFonts); + + menuSelect->AppendSeparator(); + menuSelect->Append(Font_EnumFamilies, "Enumerate font &families\tCtrl-F"); + menuSelect->Append(Font_EnumFixedFamilies, "Enumerate fi&xed font families\tCtrl-X"); - menuFont->Append(Font_EnumEncodings, + menuSelect->Append(Font_EnumEncodings, "Enumerate &encodings\tCtrl-E"); - menuFont->Append(Font_EnumFamiliesForEncoding, + menuSelect->Append(Font_EnumFamiliesForEncoding, "Find font for en&coding...\tCtrl-C", "Find font families for given encoding"); - menuFont->AppendSeparator(); - menuFont->Append(Font_CheckNativeToFromString, - "Check Native Font Info To/From String"); // now append the freshly created menu to the menu bar... wxMenuBar *menuBar = new wxMenuBar; menuBar->Append(menuFile, "&File"); menuBar->Append(menuFont, "F&ont"); + menuBar->Append(menuSelect, "&Select"); // ... and attach this menu bar to the frame SetMenuBar(menuBar); @@ -440,6 +482,50 @@ void MyFrame::DoResizeFont(int diff) DoChangeFont(font); } +void MyFrame::OnBold(wxCommandEvent& event) +{ + wxFont font = m_canvas->GetTextFont(); + + font.SetWeight(event.IsChecked() ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL); + DoChangeFont(font); +} + +void MyFrame::OnItalic(wxCommandEvent& event) +{ + wxFont font = m_canvas->GetTextFont(); + + font.SetStyle(event.IsChecked() ? wxFONTSTYLE_ITALIC : wxFONTSTYLE_NORMAL); + DoChangeFont(font); +} + +void MyFrame::OnUnderline(wxCommandEvent& event) +{ + wxFont font = m_canvas->GetTextFont(); + + font.SetUnderlined(event.IsChecked()); + DoChangeFont(font); +} + +void MyFrame::OnwxPointerFont(wxCommandEvent& event) +{ + wxFont font; + + switch (event.GetId()) + { + case Font_wxNORMAL_FONT : font = wxFont(*wxNORMAL_FONT); break; + case Font_wxSMALL_FONT : font = wxFont(*wxSMALL_FONT); break; + case Font_wxITALIC_FONT : font = wxFont(*wxITALIC_FONT); break; + case Font_wxSWISS_FONT : font = wxFont(*wxSWISS_FONT); break; + default : font = wxFont(*wxNORMAL_FONT); break; + } + + GetMenuBar()->Check(Font_Bold, FALSE); + GetMenuBar()->Check(Font_Italic, FALSE); + GetMenuBar()->Check(Font_Underlined, FALSE); + + DoChangeFont(font); +} + void MyFrame::DoChangeFont(const wxFont& font, const wxColour& col) { m_canvas->SetTextFont(font); @@ -466,6 +552,15 @@ void MyFrame::OnSelectFont(wxCommandEvent& WXUNUSED(event)) wxColour colour = retData.GetColour(); DoChangeFont(font, colour); + + // update the state of the bold/italic/underlined menu items + wxMenuBar *mbar = GetMenuBar(); + if ( mbar ) + { + mbar->Check(Font_Bold, font.GetWeight() == wxFONTWEIGHT_BOLD); + mbar->Check(Font_Italic, font.GetStyle() == wxFONTSTYLE_ITALIC); + mbar->Check(Font_Underlined, font.GetUnderlined()); + } } } @@ -537,7 +632,7 @@ void MyFrame::OnViewMsg(wxCommandEvent& WXUNUSED(event)) } // ok, now get the corresponding encoding - wxFontEncoding fontenc = wxTheFontMapper->CharsetToEncoding(charset); + wxFontEncoding fontenc = wxFontMapper::Get()->CharsetToEncoding(charset); if ( fontenc == wxFONTENCODING_SYSTEM ) { wxLogError(wxT("Charset '%s' is unsupported."), charset.c_str()); @@ -547,11 +642,11 @@ void MyFrame::OnViewMsg(wxCommandEvent& WXUNUSED(event)) m_textctrl->LoadFile(filename); if ( fontenc == wxFONTENCODING_UTF8 || - !wxTheFontMapper->IsEncodingAvailable(fontenc) ) + !wxFontMapper::Get()->IsEncodingAvailable(fontenc) ) { // try to find some similar encoding: wxFontEncoding encAlt; - if ( wxTheFontMapper->GetAltForEncoding(fontenc, &encAlt) ) + if ( wxFontMapper::Get()->GetAltForEncoding(fontenc, &encAlt) ) { wxEncodingConverter conv; @@ -637,12 +732,12 @@ void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) ) fontInfo.Printf(wxT("Font size is %d points, family: %s, encoding: %s"), m_font.GetPointSize(), m_font.GetFamilyString().c_str(), - wxTheFontMapper-> + wxFontMapper::Get()-> GetEncodingDescription(m_font.GetEncoding()).c_str()); dc.DrawText(fontInfo, x, y); y += hLine; - + fontInfo.Printf(wxT("Style: %s, weight: %s, fixed width: %s"), m_font.GetStyleString().c_str(), m_font.GetWeightString().c_str(), @@ -653,11 +748,17 @@ void MyCanvas::OnPaint( wxPaintEvent &WXUNUSED(event) ) if ( m_font.Ok() ) { - wxString fontDesc = m_font.GetNativeFontInfoUserDesc(); - fontInfo.Printf(wxT("Native font info: %s"), fontDesc.c_str()); + wxNativeFontInfo *info = m_font.GetNativeFontInfo(); + if ( info ) + { + delete info; + + wxString fontDesc = m_font.GetNativeFontInfoUserDesc(); + fontInfo.Printf(wxT("Native font info: %s"), fontDesc.c_str()); - dc.DrawText(fontInfo, x, y); - y += hLine; + dc.DrawText(fontInfo, x, y); + y += hLine; + } } y += hLine;