Lines Matching refs:charset
184 FX_INT32 CFX_Edit_Provider::GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex)
186 return m_pFontMap->GetWordFontIndex(word,charset,nFontIndex);
569 FX_WORD word, FX_INT32 charset, const CPVT_WordProps * pWordProps)
570 : m_pEdit(pEdit), m_wpOld(wpOldPlace), m_wpNew(wpNewPlace), m_Word(word), m_nCharset(charset), m_WordProps()
644 FX_WORD word, FX_INT32 charset,
650 m_nCharset(charset),
691 FX_WORD word, FX_INT32 charset,
697 m_nCharset(charset),
774 const CPVT_WordRange & wrSel, FX_WORD word, FX_INT32 charset,
781 m_nCharset(charset),
827 const CFX_WideString & swText, FX_INT32 charset,
833 m_nCharset(charset),
1941 void CFX_Edit::SetText(FX_LPCWSTR text,FX_INT32 charset /*= DEFAULT_CHARSET*/,
1944 SetText(text,charset,pSecProps,pWordProps,TRUE,TRUE);
1947 FX_BOOL CFX_Edit::InsertWord(FX_WORD word, FX_INT32 charset /*= DEFAULT_CHARSET*/, const CPVT_WordProps * pWordProps /*= NULL*/)
1949 return InsertWord(word,charset,pWordProps,TRUE,TRUE);
1972 FX_BOOL CFX_Edit::InsertText(FX_LPCWSTR text, FX_INT32 charset /*= DEFAULT_CHARSET*/,
1975 return InsertText(text,charset,pSecProps,pWordProps,TRUE,TRUE);
2982 void CFX_Edit::SetText(FX_LPCWSTR text,FX_INT32 charset,
2986 DoInsertText(CPVT_WordPlace(0,0,-1), text, charset, pSecProps, pWordProps);
2993 FX_BOOL CFX_Edit::InsertWord(FX_WORD word, FX_INT32 charset, const CPVT_WordProps * pWordProps, FX_BOOL bAddUndo, FX_BOOL bPaint)
3001 SetCaret(m_pVT->InsertWord(m_wpCaret,word,GetCharSetFromUnicode(word, charset),pWordProps));
3008 AddEditUndoItem(new CFXEU_InsertWord(this,m_wpOldCaret,m_wpCaret,word,charset,pWordProps));
3284 FX_BOOL CFX_Edit::InsertText(FX_LPCWSTR text, FX_INT32 charset,
3290 SetCaret(DoInsertText(m_wpCaret, text, charset, pSecProps, pWordProps));
3297 AddEditUndoItem(new CFXEU_InsertText(this,m_wpOldCaret,m_wpCaret,text,charset,pSecProps,pWordProps));
3530 CPVT_WordPlace CFX_Edit::DoInsertText(const CPVT_WordPlace& place, FX_LPCWSTR text, FX_INT32 charset,
3557 wp = m_pVT->InsertWord(wp,word,GetCharSetFromUnicode(word, charset),pWordProps);