Searched refs:wxFontMapper (Results 1 - 25 of 31) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dfontmap.h3 // Purpose: wxFontMapper class
31 class WXDLLIMPEXP_FWD_CORE wxFontMapper; variable in typeref:class:WXDLLIMPEXP_FWD_CORE
38 // wxFontMapper manages user-definable correspondence between wxWidgets font
42 // wxFontMapper::Get().
62 // return instance of the wxFontMapper singleton
64 // In wxBase, wxFontMapper is only forward declared
69 static wxFontMapper *Set(wxFontMapper *mapper);
169 static wxFontMapper *sm_instance;
177 // wxFontMapper
191 class WXDLLIMPEXP_CORE wxFontMapper : public wxFontMapperBase class in inherits:wxFontMapperBase
[all...]
H A Dapptrait.h21 class WXDLLIMPEXP_FWD_CORE wxFontMapper; variable in typeref:class:WXDLLIMPEXP_FWD_CORE
56 virtual wxFontMapper *CreateFontMapper() = 0;
173 virtual wxFontMapper *CreateFontMapper();
216 virtual wxFontMapper *CreateFontMapper();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfontmap.tex6 \section{\class{wxFontMapper}}\label{wxfontmapper}
8 wxFontMapper manages user-definable correspondence between logical font
26 \wxheading{Using wxFontMapper in conjunction with wxMBConv classes}
38 if (!wxFontMapper::Get()->IsEncodingAvailable(enc, facename))
41 if (wxFontMapper::Get()->GetAltForEncoding(enc, &alternative,
44 wxCSConv convFrom(wxFontMapper::Get()->GetEncodingName(enc));
45 wxCSConv convTo(wxFontMapper::Get()->GetEncodingName(alternative));
71 \membersection{wxFontMapper::wxFontMapper}\label{wxfontmapperwxfontmapper}
73 \func{}{wxFontMapper}{\voi
[all...]
H A Dtnoneng.tex118 \helpref{wxFontMapper}{wxfontmapper} to display text:
121 if (!wxFontMapper::Get()->IsEncodingAvailable(enc, facename))
124 if (wxFontMapper::Get()->GetAltForEncoding(enc, &alternative,
127 wxCSConv convFrom(wxFontMapper::Get()->GetEncodingName(enc));
128 wxCSConv convTo(wxFontMapper::Get()->GetEncodingName(alternative));
H A Dtfontenc.tex26 \helpref{wxFontMapper}{wxfontmapper}. wxFont encoding support is reflected by
75 To solve this problem, a \helpref{wxFontMapper}{wxfontmapper} class is provided.
H A Dapptraits.tex41 \func{virtual wxFontMapper *}{CreateFontMapper}{\void}
H A Dfontenum.tex49 \helpref{wxFontMapper}{wxfontmapper}
H A Dencconv.tex33 \helpref{wxFontMapper}{wxfontmapper},
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dfontmap.cpp3 // Purpose: wxFontMapper class
154 wxFontMapper::wxFontMapper() function in class:wxFontMapper
159 wxFontMapper::~wxFontMapper()
164 wxFontMapper *wxFontMapper::Get()
168 wxT("GUI code requested a wxFontMapper but we only have a wxFontMapperBase.") );
173 return (wxFontMapper *)fontmapper;
177 wxFontMapper
[all...]
H A Dfmapbase.cpp266 wxFontMapper *wxFontMapperBase::sm_instance = NULL;
305 sm_instance = (wxFontMapper *)new wxFontMapperBase;
313 wxFontMapper *wxFontMapperBase::Set(wxFontMapper *mapper)
315 wxFontMapper *old = sm_instance;
325 // we need a cast as wxFontMapper is not fully declared here and so the
348 wxT("an absolute path should be given to wxFontMapper::SetConfigPath()") );
651 _T("wxFontMapper::GetEncoding(): invalid index") );
H A Dappcmn.cpp555 wxFontMapper *wxGUIAppTraitsBase::CreateFontMapper()
557 return new wxFontMapper;
H A Dappbase.cpp491 wxFontMapper *wxConsoleAppTraitsBase::CreateFontMapper()
493 return (wxFontMapper *)new wxFontMapperBase;
H A Dfontcmn.cpp655 desc << _T(' ') << wxFontMapper::GetEncodingName(enc);
714 wxFontEncoding encoding = wxFontMapper::Get()->CharsetToEncoding(token, false);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dfontenum.cpp100 if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )
H A Dfont.cpp755 if (wxFontMapper::Get()->GetAltForEncoding( eEncoding
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dfontutil.cpp77 encoding = wxFontMapper::GetEncodingFromName(encid);
117 << wxFontMapper::GetEncodingName(encoding)
H A Dfontenum.cpp135 if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )
192 wxFontMapper::GetEncodingName(enc));
H A Dfont.cpp678 if ( wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dfontenum.cpp89 if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/font/
H A Dfont.cpp561 const size_t count = wxFontMapper::GetSupportedEncodingsCount();
567 wxFontEncoding enc = wxFontMapper::GetEncoding(n);
569 names.push_back(wxFontMapper::GetEncodingName(enc));
762 wxFontEncoding fontenc = wxFontMapper::Get()->CharsetToEncoding(charset);
772 !wxFontMapper::Get()->IsEncodingAvailable(fontenc) )
776 if ( wxFontMapper::Get()->GetAltForEncoding(fontenc, &encAlt) )
788 wxFontMapper::GetEncodingDescription(fontenc).c_str(),
789 wxFontMapper::GetEncodingDescription(encAlt).c_str());
794 wxFontMapper::GetEncodingDescription(fontenc).c_str());
811 wxFontMapper
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dwinpars.cpp358 wxFontEncoding enc = wxFontMapper::Get()->CharsetToEncoding(charset);
770 availnorm = wxFontMapper::Get()->IsEncodingAvailable(enc, m_FontFaceNormal);
771 availfix = wxFontMapper::Get()->IsEncodingAvailable(enc, m_FontFaceFixed);
776 else if (wxFontMapper::Get()->GetAltForEncoding(enc, &altnorm, m_FontFaceNormal, false) &&
777 wxFontMapper::Get()->GetAltForEncoding(enc, &altfix, m_FontFaceFixed, false) &&
784 else if (wxFontMapper::Get()->GetAltForEncoding(enc, &altnorm, m_FontFaceNormal, false))
812 wxFontMapper::GetEncodingName(enc).c_str());
H A Dhtmlpars.cpp488 m_conv = new wxCSConv(wxFontMapper::GetEncodingName(m_encoding));
H A Dhelpdata.cpp699 enc = wxFontMapper::Get()->CharsetToEncoding(charset);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Dfontenum.cpp169 (void)wxFontMapper::Get()->GetAltForEncoding(encoding, &info);
H A Dfontutil.cpp950 if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) )

Completed in 158 milliseconds

12