webengine/osswebengine/WebKit/s60/webcoresupport/WebEditorClient.cpp
branchRCL_3
changeset 42 a1a5d4e727e8
parent 38 4917f9bf7995
child 48 79859ed3eea9
equal deleted inserted replaced
41:4bd5176e1bc8 42:a1a5d4e727e8
   498                 case EHotKeyPaste:
   498                 case EHotKeyPaste:
   499                     m_webView->fepTextEditor()->CcpuPasteL();
   499                     m_webView->fepTextEditor()->CcpuPasteL();
   500                     break;
   500                     break;
   501                     }
   501                     }
   502 
   502 
       
   503                 if(m_webView->fepTextEditor()->inlineTextEditingStarted()) 
       
   504                     return;
   503                 if (TChar(kevent->symbianEvent().iCode).IsPrint()) {
   505                 if (TChar(kevent->symbianEvent().iCode).IsPrint()) {
   504                     if (m_webView->fepTextEditor()->DocumentLengthForFep() <
   506                     if (m_webView->fepTextEditor()->DocumentLengthForFep() <
   505                         m_webView->fepTextEditor()->DocumentMaximumLengthForFep()) {
   507                         m_webView->fepTextEditor()->DocumentMaximumLengthForFep()) {
   506                         TText c = kevent->symbianEvent().iCode;
   508                         TText c = kevent->symbianEvent().iCode;
   507                         handleInsertText(frame, String(TPtrC(&c,1)));
   509                         handleInsertText(frame, String(TPtrC(&c,1)));
   689 }
   691 }
   690 
   692 
   691 
   693 
   692 
   694 
   693 
   695 
       
   696