wxUSE_STL compilation fixes for wxGenericFontDialog
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46494 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -104,13 +104,6 @@ private:
|
|||||||
DECLARE_DYNAMIC_CLASS(wxGenericFontDialog)
|
DECLARE_DYNAMIC_CLASS(wxGenericFontDialog)
|
||||||
};
|
};
|
||||||
|
|
||||||
WXDLLEXPORT const wxChar *wxFontFamilyIntToString(int family);
|
|
||||||
WXDLLEXPORT const wxChar *wxFontWeightIntToString(int weight);
|
|
||||||
WXDLLEXPORT const wxChar *wxFontStyleIntToString(int style);
|
|
||||||
WXDLLEXPORT int wxFontFamilyStringToInt(wxChar *family);
|
|
||||||
WXDLLEXPORT int wxFontWeightStringToInt(wxChar *weight);
|
|
||||||
WXDLLEXPORT int wxFontStyleStringToInt(wxChar *style);
|
|
||||||
|
|
||||||
#if WXWIN_COMPATIBILITY_2_6
|
#if WXWIN_COMPATIBILITY_2_6
|
||||||
// deprecated, for backwards compatibility only
|
// deprecated, for backwards compatibility only
|
||||||
inline wxGenericFontDialog::wxGenericFontDialog(wxWindow *parent, const wxFontData *data)
|
inline wxGenericFontDialog::wxGenericFontDialog(wxWindow *parent, const wxFontData *data)
|
||||||
|
@@ -88,6 +88,100 @@ void wxFontPreviewer::OnPaint(wxPaintEvent& WXUNUSED(event))
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
// helper functions
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
static const wxChar *wxFontWeightIntToString(int weight)
|
||||||
|
{
|
||||||
|
switch (weight)
|
||||||
|
{
|
||||||
|
case wxLIGHT:
|
||||||
|
return wxT("Light");
|
||||||
|
case wxBOLD:
|
||||||
|
return wxT("Bold");
|
||||||
|
case wxNORMAL:
|
||||||
|
default:
|
||||||
|
return wxT("Normal");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const wxChar *wxFontStyleIntToString(int style)
|
||||||
|
{
|
||||||
|
switch (style)
|
||||||
|
{
|
||||||
|
case wxITALIC:
|
||||||
|
return wxT("Italic");
|
||||||
|
case wxSLANT:
|
||||||
|
return wxT("Slant");
|
||||||
|
case wxNORMAL:
|
||||||
|
default:
|
||||||
|
return wxT("Normal");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static const wxChar *wxFontFamilyIntToString(int family)
|
||||||
|
{
|
||||||
|
switch (family)
|
||||||
|
{
|
||||||
|
case wxROMAN:
|
||||||
|
return wxT("Roman");
|
||||||
|
case wxDECORATIVE:
|
||||||
|
return wxT("Decorative");
|
||||||
|
case wxMODERN:
|
||||||
|
return wxT("Modern");
|
||||||
|
case wxSCRIPT:
|
||||||
|
return wxT("Script");
|
||||||
|
case wxTELETYPE:
|
||||||
|
return wxT("Teletype");
|
||||||
|
case wxSWISS:
|
||||||
|
default:
|
||||||
|
return wxT("Swiss");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int wxFontFamilyStringToInt(const wxString& family)
|
||||||
|
{
|
||||||
|
if (family.empty())
|
||||||
|
return wxSWISS;
|
||||||
|
|
||||||
|
if (wxStrcmp(family, wxT("Roman")) == 0)
|
||||||
|
return wxROMAN;
|
||||||
|
else if (wxStrcmp(family, wxT("Decorative")) == 0)
|
||||||
|
return wxDECORATIVE;
|
||||||
|
else if (wxStrcmp(family, wxT("Modern")) == 0)
|
||||||
|
return wxMODERN;
|
||||||
|
else if (wxStrcmp(family, wxT("Script")) == 0)
|
||||||
|
return wxSCRIPT;
|
||||||
|
else if (wxStrcmp(family, wxT("Teletype")) == 0)
|
||||||
|
return wxTELETYPE;
|
||||||
|
else return wxSWISS;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int wxFontStyleStringToInt(const wxString& style)
|
||||||
|
{
|
||||||
|
if (style.empty())
|
||||||
|
return wxNORMAL;
|
||||||
|
if (wxStrcmp(style, wxT("Italic")) == 0)
|
||||||
|
return wxITALIC;
|
||||||
|
else if (wxStrcmp(style, wxT("Slant")) == 0)
|
||||||
|
return wxSLANT;
|
||||||
|
else
|
||||||
|
return wxNORMAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int wxFontWeightStringToInt(const wxString& weight)
|
||||||
|
{
|
||||||
|
if (weight.empty())
|
||||||
|
return wxNORMAL;
|
||||||
|
if (wxStrcmp(weight, wxT("Bold")) == 0)
|
||||||
|
return wxBOLD;
|
||||||
|
else if (wxStrcmp(weight, wxT("Light")) == 0)
|
||||||
|
return wxLIGHT;
|
||||||
|
else
|
||||||
|
return wxNORMAL;
|
||||||
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// wxGenericFontDialog
|
// wxGenericFontDialog
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
@@ -482,9 +576,9 @@ void wxGenericFontDialog::DoChangeFont()
|
|||||||
{
|
{
|
||||||
if (!m_useEvents) return;
|
if (!m_useEvents) return;
|
||||||
|
|
||||||
int fontFamily = wxFontFamilyStringToInt(WXSTRINGCAST m_familyChoice->GetStringSelection());
|
int fontFamily = wxFontFamilyStringToInt(m_familyChoice->GetStringSelection());
|
||||||
int fontWeight = wxFontWeightStringToInt(WXSTRINGCAST m_weightChoice->GetStringSelection());
|
int fontWeight = wxFontWeightStringToInt(m_weightChoice->GetStringSelection());
|
||||||
int fontStyle = wxFontStyleStringToInt(WXSTRINGCAST m_styleChoice->GetStringSelection());
|
int fontStyle = wxFontStyleStringToInt(m_styleChoice->GetStringSelection());
|
||||||
#if USE_SPINCTRL_FOR_POINT_SIZE
|
#if USE_SPINCTRL_FOR_POINT_SIZE
|
||||||
wxSpinCtrl* fontSizeCtrl = wxDynamicCast(FindWindow(wxID_FONT_SIZE), wxSpinCtrl);
|
wxSpinCtrl* fontSizeCtrl = wxDynamicCast(FindWindow(wxID_FONT_SIZE), wxSpinCtrl);
|
||||||
int fontSize = fontSizeCtrl->GetValue();
|
int fontSize = fontSizeCtrl->GetValue();
|
||||||
@@ -530,95 +624,5 @@ void wxGenericFontDialog::OnChangeSize(wxSpinEvent& WXUNUSED(event))
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const wxChar *wxFontWeightIntToString(int weight)
|
|
||||||
{
|
|
||||||
switch (weight)
|
|
||||||
{
|
|
||||||
case wxLIGHT:
|
|
||||||
return wxT("Light");
|
|
||||||
case wxBOLD:
|
|
||||||
return wxT("Bold");
|
|
||||||
case wxNORMAL:
|
|
||||||
default:
|
|
||||||
return wxT("Normal");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const wxChar *wxFontStyleIntToString(int style)
|
|
||||||
{
|
|
||||||
switch (style)
|
|
||||||
{
|
|
||||||
case wxITALIC:
|
|
||||||
return wxT("Italic");
|
|
||||||
case wxSLANT:
|
|
||||||
return wxT("Slant");
|
|
||||||
case wxNORMAL:
|
|
||||||
default:
|
|
||||||
return wxT("Normal");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const wxChar *wxFontFamilyIntToString(int family)
|
|
||||||
{
|
|
||||||
switch (family)
|
|
||||||
{
|
|
||||||
case wxROMAN:
|
|
||||||
return wxT("Roman");
|
|
||||||
case wxDECORATIVE:
|
|
||||||
return wxT("Decorative");
|
|
||||||
case wxMODERN:
|
|
||||||
return wxT("Modern");
|
|
||||||
case wxSCRIPT:
|
|
||||||
return wxT("Script");
|
|
||||||
case wxTELETYPE:
|
|
||||||
return wxT("Teletype");
|
|
||||||
case wxSWISS:
|
|
||||||
default:
|
|
||||||
return wxT("Swiss");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int wxFontFamilyStringToInt(wxChar *family)
|
|
||||||
{
|
|
||||||
if (!family)
|
|
||||||
return wxSWISS;
|
|
||||||
|
|
||||||
if (wxStrcmp(family, wxT("Roman")) == 0)
|
|
||||||
return wxROMAN;
|
|
||||||
else if (wxStrcmp(family, wxT("Decorative")) == 0)
|
|
||||||
return wxDECORATIVE;
|
|
||||||
else if (wxStrcmp(family, wxT("Modern")) == 0)
|
|
||||||
return wxMODERN;
|
|
||||||
else if (wxStrcmp(family, wxT("Script")) == 0)
|
|
||||||
return wxSCRIPT;
|
|
||||||
else if (wxStrcmp(family, wxT("Teletype")) == 0)
|
|
||||||
return wxTELETYPE;
|
|
||||||
else return wxSWISS;
|
|
||||||
}
|
|
||||||
|
|
||||||
int wxFontStyleStringToInt(wxChar *style)
|
|
||||||
{
|
|
||||||
if (!style)
|
|
||||||
return wxNORMAL;
|
|
||||||
if (wxStrcmp(style, wxT("Italic")) == 0)
|
|
||||||
return wxITALIC;
|
|
||||||
else if (wxStrcmp(style, wxT("Slant")) == 0)
|
|
||||||
return wxSLANT;
|
|
||||||
else
|
|
||||||
return wxNORMAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
int wxFontWeightStringToInt(wxChar *weight)
|
|
||||||
{
|
|
||||||
if (!weight)
|
|
||||||
return wxNORMAL;
|
|
||||||
if (wxStrcmp(weight, wxT("Bold")) == 0)
|
|
||||||
return wxBOLD;
|
|
||||||
else if (wxStrcmp(weight, wxT("Light")) == 0)
|
|
||||||
return wxLIGHT;
|
|
||||||
else
|
|
||||||
return wxNORMAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
// wxUSE_FONTDLG
|
// wxUSE_FONTDLG
|
||||||
|
Reference in New Issue
Block a user