Searched refs:facename (Results 26 - 44 of 44) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/font/
H A Dfont.cpp352 virtual bool OnFontEncoding(const wxString& facename, argument
356 text.Printf(wxT("Encoding %u: %s (available in facename '%s')\n"),
357 (unsigned int) ++m_n, encoding.c_str(), facename.c_str());
389 virtual bool OnFacename(const wxString& facename) argument
391 m_facenames.Add(facename);
416 wxString facename; local
421 facename = fontEnumerator.GetFacenames().Item(0);
433 wxT("Choose a facename"),
441 facename = facenames[n];
446 if ( !facename
500 wxString facename = GetCanvas()->GetTextFont().GetFaceName(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/richtext/
H A Drichtextxml.cpp1092 bool wxRichTextFixFaceName(wxString& facename) argument
1094 if (facename.IsEmpty())
1098 if (facename == wxT("Times"))
1100 facename = wxT("Times New Roman");
1103 else if (facename == wxT("Helvetica"))
1105 facename = wxT("Arial");
1108 else if (facename == wxT("Courier"))
1110 facename = wxT("Courier New");
1116 if (facename == wxT("Times New Roman"))
1118 facename
[all...]
H A Drichtextfontpage.cpp712 wxString facename = m_faceTextCtrl->GetValue();
713 if (!facename.IsEmpty())
715 if (m_faceListBox->HasFaceName(facename))
717 m_faceListBox->SetFaceNameSelection(facename);
727 if (arr[i].Mid(0, facename.Length()).Lower() == facename.Lower())
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dwinundef.h64 LPCTSTR facename)
70 family, facename);
75 family, facename);
51 CreateFont(int height, int width, int escapement, int orientation, int weight, DWORD italic, DWORD underline, DWORD strikeout, DWORD charset, DWORD outprecision, DWORD clipprecision, DWORD quality, DWORD family, LPCTSTR facename) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dfontutil.cpp54 // encodingid;facename[;charset]
65 facename = vTokenizer.GetNextToken();
66 if (!facename)
90 sStr << (long)encoding << _T(';') << facename;
236 wxStrncpy((wxChar*)vLogFont.szFacename, rInfo.facename.c_str(), WXSIZEOF(vLogFont.szFacename));
H A Dfont.cpp296 FACENAMEDESC m_vFname; // Current facename struct
595 // Extract family from facename
759 if (!vInfo.facename.empty())
762 // If we have this encoding only in some particular facename, use
763 // the facename - it is better to show the correct characters in a
764 // wrong facename than unreadable text in a correct one
766 SetFaceName(vInfo.facename);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dfont.cpp91 bool SetFaceName(const wxString& facename);
441 bool wxFontRefData::SetFaceName(const wxString& facename) argument
443 m_faceName = facename;
447 m_nativeFontInfo.SetXFontComponent(wxXLFD_FAMILY, facename);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dfontlist.tex35 \param{const wxString\& }{facename = NULL}, \param{wxFontEncoding }{encoding = wxFONTENCODING\_DEFAULT}{}}
H A Dfontenum.tex80 \func{static wxArrayString}{GetEncodings}{\param{const wxString\&}{ facename = ""}}
96 \func{static bool}{IsValidFacename}{\param{const wxString \&}{ facename}}
H A Dtnoneng.tex121 if (!wxFontMapper::Get()->IsEncodingAvailable(enc, facename))
125 facename, false))
H A Dfont.tex198 \docparam{family}{Font family, a generic way of referring to fonts without specifying actual facename. One of:
432 Sets the facename for the font.
437 \docparam{faceName}{A valid facename, which should be on the end-user's system.}
443 family and the facename are specified, wxWidgets will first search for the specific face,
H A Dtfontenc.tex67 facename(s) in which the given encoding exists. If you can find the font in
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dfontenum.cpp75 // if not empty, enum only the fonts with this facename
144 m_facename = info.facename;
222 // we can get the same facename twice or more in this case because it
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dgdicmn.cpp767 const wxString& facename,
794 // empty facename matches anything at all: this is bad because
796 // a different font if we create it with empty facename, but it is
799 if ( same && !facename.empty() )
803 // empty facename matches everything
804 same = !fontFace || fontFace == facename;
822 wxFont fontTmp(pointSize, family, style, weight, underline, facename, encoding);
762 FindOrCreateFont(int pointSize, int family, int style, int weight, bool underline, const wxString& facename, wxFontEncoding encoding) argument
H A Dfontcmn.cpp393 bool wxFontBase::SetFaceName(const wxString &facename) argument
395 if (!wxFontEnumerator::IsValidFacename(facename))
421 // set the first valid facename we can find on this system
433 // version;pointsize;family;style;weight;underlined;facename;encoding
741 // if we had had the facename, we shouldn't continue appending tokens
742 // to it (i.e. "foo bold bar" shouldn't result in the facename "foo
746 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
759 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/x11/
H A Dfont.cpp124 bool SetFaceName(const wxString& facename);
512 bool wxFontRefData::SetFaceName(const wxString& facename) argument
514 m_faceName = facename;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/richtext/
H A Drichtextformatdlg.h297 wxString CreateHTML(const wxString& facename) const;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/xrc/
H A Dxmlres.cpp1397 // family and facename
1412 wxString facename; local
1424 facename = facenames[index];
1463 font.SetFaceName(facename);
1471 underlined, facename, enc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/text/
H A Dtext.cpp1813 wxString facename(wxT("unknown"));
1816 facename = attr.GetFont().GetFaceName();
1828 (const wxChar*) facename,

Completed in 184 milliseconds

12