Home
last modified time | relevance | path

Searched refs:nCharCode (Results 1 – 14 of 14) sorted by path

/aoo41x/main/basic/workben/
H A Dmgrtest.cxx525 char nCharCode = rKEvt.GetCharCode(); in KeyInput() local
/aoo41x/main/editeng/source/editeng/
H A Dediteng.cxx1155 xub_Unicode nCharCode = rKeyEvent.GetCharCode(); in PostKeyEvent() local
1160 ( SvxAutoCorrect::IsAutoCorrectChar( nCharCode ) || in PostKeyEvent()
1163 aCurSel = pImpEditEngine->AutoCorrect( aCurSel, nCharCode, !pEditView->IsInsertMode() ); in PostKeyEvent()
1167 …aCurSel = pImpEditEngine->InsertText( (const EditSelection&)aCurSel, nCharCode, !pEditView->IsInse… in PostKeyEvent()
1170 if ( pImpEditEngine->GetStatus().DoAutoComplete() && ( nCharCode != ' ' ) ) in PostKeyEvent()
H A Dimpedit2.cxx509 const sal_Unicode nCharCode = aSel.Min().GetNode()->GetChar( aSel.Min().GetIndex() ); in Command() local
510 if ( ( GetStatus().DoAutoCorrect() ) && ( ( nCharCode == '\"' ) || ( nCharCode == '\'' ) ) ) in Command()
513 aSel = AutoCorrect( aSel, nCharCode, mpIMEInfos->bWasCursorOverwrite ); in Command()
/aoo41x/main/forms/source/component/
H A DDatabaseForm.cxx981 sal_Unicode nCharCode; in Encode() local
984 nCharCode = rString[nCurPos]; in Encode()
988 if( (!isalnum(nCharCode) && nCharCode != (sal_Unicode)' ') || nCharCode > 127 ) in Encode()
990 switch( nCharCode ) in Encode()
1003 aResult += UniString(nCharCode); in Encode()
1009 short nHi = ((sal_Int16)nCharCode) / 16; in Encode()
1010 short nLo = ((sal_Int16)nCharCode) - (nHi*16); in Encode()
1020 aResult += UniString(nCharCode); in Encode()
/aoo41x/main/svtools/source/edit/
H A Dtextview.cxx776 xub_Unicode nCharCode = rKeyEvent.GetCharCode(); in KeyInput() local
777 …if ( !mpImpl->mbReadOnly && ImplCheckTextLen( nCharCode ) ) // sonst trotzdem das Zeichen schlu… in KeyInput()
779 … aCurSel = mpImpl->mpTextEngine->ImpInsertText( nCharCode, aCurSel, !IsInsertMode(), sal_True ); in KeyInput()
/aoo41x/main/svx/workben/
H A Dedittest.cxx1532 sal_Unicode nCharCode = rKEvt.GetCharCode(); in KeyInput() local
/aoo41x/main/vcl/os2/source/gdi/
H A Dos2layout.cxx85 int GetCachedGlyphWidth( int nCharCode ) const;
86 void CacheGlyphWidth( int nCharCode, int nCharWidth );
93 inline void ImplOs2FontEntry::CacheGlyphWidth( int nCharCode, int nCharWidth ) in CacheGlyphWidth() argument
95 maWidthMap[ nCharCode ] = nCharWidth; in CacheGlyphWidth()
98 inline int ImplOs2FontEntry::GetCachedGlyphWidth( int nCharCode ) const in GetCachedGlyphWidth()
100 IntMap::const_iterator it = maWidthMap.find( nCharCode ); in GetCachedGlyphWidth()
363 int nCharCode = pCodes[0]; local
366 int nGlyphWidth = mrOs2FontEntry.GetCachedGlyphWidth( nCharCode );
371 mrOs2FontEntry.CacheGlyphWidth( nCharCode, nGlyphWidth );
381 if( mrOs2FontData.HasChar( nCharCode ) )
[all …]
/aoo41x/main/vcl/os2/source/window/
H A Dsalframe.cxx2609 if ( !rSVCode && nCharCode ) in ImplSalGetKeyCode()
2612 if ( (nCharCode >= '0') && (nCharCode <= '9') && (!rSVCode || !(nKeyFlags & KC_SHIFT)) ) in ImplSalGetKeyCode()
2614 else if ( (nCharCode >= 'a') && (nCharCode <= 'z') ) in ImplSalGetKeyCode()
2616 else if ( (nCharCode >= 'A') && (nCharCode <= 'Z') ) in ImplSalGetKeyCode()
2620 switch ( nCharCode ) in ImplSalGetKeyCode()
2654 if ( (nCharCode >= '0') && (nCharCode <= '9') && !(nKeyFlags & KC_SHIFT) ) in ImplSalGetKeyCode()
2655 rSVCode = KEYGROUP_NUM + (nCharCode-'0'); in ImplSalGetKeyCode()
2656 if ( nCharCode == ',' ) in ImplSalGetKeyCode()
2658 if ( nCharCode == '.' ) in ImplSalGetKeyCode()
2708 sal_Char nCharCode, UCHAR nScanCode ) in ImplGetCharCode() argument
[all …]
/aoo41x/main/vcl/source/window/
H A Dmenu.cxx5077 xub_Unicode nCharCode = rKEvent.GetCharCode(); in KeyInput() local
5080 …MenuItemData* pData = (nCharCode && pMenu) ? pMenu->GetItemList()->SearchItem( nCharCode, rKEvent.… in KeyInput()
5869 xub_Unicode nCharCode = rKEvent.GetCharCode(); in ImplHandleKeyEvent() local
5870 if ( nCharCode ) in ImplHandleKeyEvent()
5873 …MenuItemData* pData = pMenu->GetItemList()->SearchItem( nCharCode, rKEvent.GetKeyCode(), nEntry, n… in ImplHandleKeyEvent()
H A Dwinproc.cxx958 … sal_uInt16 nKeyCode, sal_uInt16 nCharCode, sal_uInt16 nRepeat, sal_Bool bForward ) in ImplHandleKey() argument
967 KeyEvent aKeyEvent( (xub_Unicode)nCharCode, aKeyCode, nRepeat ); in ImplHandleKey()
993 nCharCode = (sal_uInt16) aSep.GetChar(0); in ImplHandleKey()
1099 KeyEvent aKeyEvt( (xub_Unicode)nCharCode, aKeyCode, nRepeat ); in ImplHandleKey()
1212 KeyEvent aKEvt( (xub_Unicode)nCharCode, aKeyCode, nRepeat ); in ImplHandleKey()
/aoo41x/main/vcl/unx/generic/window/
H A Dsalframe.cxx3129 sal_Unicode nCharCode; member
3130 KeyAlternate() : nKeyCode( 0 ), nCharCode( 0 ) {} in KeyAlternate()
3131 KeyAlternate( sal_uInt16 nKey, sal_Unicode nChar = 0 ) : nKeyCode( nKey ), nCharCode( nChar ) {} in KeyAlternate()
3528 if( aAlternate.nCharCode ) in HandleKeyEvent()
3529 aKeyEvt.mnCharCode = aAlternate.nCharCode; in HandleKeyEvent()
/aoo41x/main/vcl/unx/gtk/window/
H A Dgtkframe.cxx296 sal_Unicode nCharCode; member
297 KeyAlternate() : nKeyCode( 0 ), nCharCode( 0 ) {} in KeyAlternate()
298 KeyAlternate( sal_uInt16 nKey, sal_Unicode nChar = 0 ) : nKeyCode( nKey ), nCharCode( nChar ) {} in KeyAlternate()
371 if( aAlternate.nCharCode ) in doKeyCallback()
372 aEvent.mnCharCode = aAlternate.nCharCode; in doKeyCallback()
/aoo41x/main/vcl/win/source/gdi/
H A Dwinlayout.cxx113 int GetCachedGlyphWidth( int nCharCode ) const;
130 maWidthMap[ nCharCode ] = nCharWidth; in CacheGlyphWidth()
135 IntMap::const_iterator it = maWidthMap.find( nCharCode ); in GetCachedGlyphWidth()
414 unsigned nCharCode = pCodes[0]; local
415 bool bSurrogate = ((nCharCode >= 0xD800) && (nCharCode <= 0xDFFF));
419 if( nCharCode >= 0xDC00 )
427 nCharCode = '?';
438 else if( ::GetCharABCWidthsW( mhDC, nCharCode, nCharCode, &aABC ) )
440 else if( !::GetCharWidth32W( mhDC, nCharCode, nCharCode, &nGlyphWidth )
441 && !::GetCharWidthW( mhDC, nCharCode, nCharCode, &nGlyphWidth ) )
[all …]
/aoo41x/main/vcl/win/source/window/
H A Dsalframe.cxx3646 static sal_Unicode ImplGetCharCode( WinSalFrame* pFrame, WPARAM nCharCode ) in ImplGetCharCode() argument
3652 return (sal_Unicode)nCharCode; in ImplGetCharCode()

Completed in 435 milliseconds