Lines Matching refs:pFileControl

642 	FileControl* pFileControl = (FileControl*) GetWindow();  in insertText()  local
643 if ( pFileControl ) in insertText()
645 pFileControl->GetEdit().SetSelection( Selection( rSel.Min, rSel.Max ) ); in insertText()
646 pFileControl->GetEdit().ReplaceSelected( aText ); in insertText()
666 FileControl* pFileControl = (FileControl*) GetWindow(); in getSelectedText() local
667 if ( pFileControl) in getSelectedText()
668 aText = pFileControl->GetEdit().GetSelected(); in getSelectedText()
677 FileControl* pFileControl = (FileControl*) GetWindow(); in setSelection() local
678 if ( pFileControl ) in setSelection()
679 pFileControl->GetEdit().SetSelection( Selection( aSelection.Min, aSelection.Max ) ); in setSelection()
687 FileControl* pFileControl = (FileControl*) GetWindow(); in getSelection() local
688 if ( pFileControl ) in getSelection()
690 aSel.Min = pFileControl->GetEdit().GetSelection().Min(); in getSelection()
691 aSel.Max = pFileControl->GetEdit().GetSelection().Max(); in getSelection()
700 FileControl* pFileControl = (FileControl*) GetWindow(); in isEditable() local
701 …return ( pFileControl && !pFileControl->GetEdit().IsReadOnly() && pFileControl->GetEdit().IsEnable… in isEditable()
708 FileControl* pFileControl = (FileControl*) GetWindow(); in setEditable() local
709 if ( pFileControl ) in setEditable()
710 pFileControl->GetEdit().SetReadOnly( !bEditable ); in setEditable()
717 FileControl* pFileControl = (FileControl*) GetWindow(); in setMaxTextLen() local
718 if ( pFileControl ) in setMaxTextLen()
719 pFileControl->GetEdit().SetMaxTextLen( nLen ); in setMaxTextLen()
726 FileControl* pFileControl = (FileControl*) GetWindow(); in getMaxTextLen() local
727 return pFileControl ? pFileControl->GetEdit().GetMaxTextLen() : 0; in getMaxTextLen()