Home
last modified time | relevance | path

Searched refs:nCode (Results 1 – 25 of 129) sorted by last modified time

123456

/trunk/main/filter/source/flash/
H A Dswfwriter2.cxx162 sal_uInt16 nCode = ( mnTagId << 6 ) | ( bLarge ? 0x3f : _uInt16(nSz) ); in write() local
164 out << (sal_uInt8)nCode; in write()
165 out << (sal_uInt8)(nCode >> 8); in write()
/trunk/main/vcl/unx/generic/fontmanager/
H A Dfontconfig.cxx1027 const sal_uInt32 nCode = rMissingCodes.iterateCodePoints( &nStrIndex ); in Substitute() local
1028 rWrapper.FcCharSetAddChar( unicodes, nCode ); in Substitute()
1095 const sal_uInt32 nCode = rMissingCodes.iterateCodePoints( &nStrIndex ); in Substitute() local
1096 if( rWrapper.FcCharSetHasChar( unicodes, nCode ) != FcTrue ) in Substitute()
1097 pRemainingCodes[ nRemainingLen++ ] = nCode; in Substitute()
/trunk/main/vcl/source/window/
H A Dtoolbox.cxx5665 sal_uInt16 nCode = aKeyCode.GetCode(); in ImplOpenItem() local
5669 if ( ((nCode == KEY_LEFT || nCode == KEY_RIGHT) && IsHorizontal()) in ImplOpenItem()
5670 || ((nCode == KEY_UP || nCode == KEY_DOWN) && !IsHorizontal()) ) in ImplOpenItem()
5714 sal_uInt16 nCode = aKeyCode.GetCode(); in KeyInput() local
5723 switch ( nCode ) in KeyInput()
H A Dwindow.cxx3844 sal_uInt16 nCode = nMouseCode; in ImplCallMouseMove() local
3858 …dleMouseEvent( mpWindowImpl->mpFrameWindow, EVENT_MOUSEMOVE, bLeave, nX, nY, nTime, nCode, nMode ); in ImplCallMouseMove()
H A Dwinproc.cxx160 if ( nCode & MOUSE_LEFT ) in ImplHandleMouseFloatMode()
387 pWinFrameData->mnMouseCode = nCode; in ImplHandleMouseEvent()
471 MouseEvent aMEvt( aChildPos, pWinFrameData->mnClickCount, nMode, nCode, nCode ); in ImplHandleMouseEvent()
615 … MouseEvent aMLeaveEvt( aLeaveMousePos, nClicks, nMode | MOUSE_LEAVEWINDOW, nCode, nCode ); in ImplHandleMouseEvent()
705 MouseEvent aMEvt( aChildPos, nClicks, nMode, nCode, nCode ); in ImplHandleMouseEvent()
863 (nCode == MOUSE_MIDDLE) ) in ImplHandleMouseEvent()
1152 …else if ( ( (nCode == KEY_F2) && aKeyCode.IsShift() ) || ( (nCode == KEY_F1) && aKeyCode.IsMod1() … in ImplHandleKey()
1169 else if ( (nCode == KEY_F1) || (nCode == KEY_HELP) ) in ImplHandleKey()
1467 sal_uInt16 nCode = rEvt.mnCode; in ImplHandleWheelEvent() local
1470 if ( nCode & KEY_MOD1 ) in ImplHandleWheelEvent()
[all …]
H A Dmenu.cxx1714 sal_uInt16 nCode = 0; in GetActivationKey() local
1722 if(nCode ) in GetActivationKey()
4954 switch ( nCode ) in KeyInput()
5762 if ( ( nCode == KEY_LEFT ) || ( nCode == KEY_RIGHT ) || in ImplHandleKeyEvent()
5763 ( nCode == KEY_HOME ) || ( nCode == KEY_END ) ) in ImplHandleKeyEvent()
5787 if( nCode == KEY_HOME ) in ImplHandleKeyEvent()
5789 if( nCode == KEY_END ) in ImplHandleKeyEvent()
5794 if ( nCode == KEY_LEFT || nCode == KEY_END ) in ImplHandleKeyEvent()
5801 if ( nCode == KEY_RIGHT || nCode == KEY_HOME ) in ImplHandleKeyEvent()
5831 else if ( ( nCode == KEY_UP ) || ( nCode == KEY_DOWN ) ) in ImplHandleKeyEvent()
[all …]
/trunk/main/editeng/source/editeng/
H A Dimpedit2.cxx869 sal_uInt16 nCode = aTranslatedKeyEvent.GetKeyCode().GetCode(); in MoveCursor() local
874 if ( !bCtrl && ( ( nCode == KEY_LEFT ) || ( nCode == KEY_RIGHT ) ) ) in MoveCursor()
877 nCode = 0; // skip switch statement in MoveCursor()
889 switch ( nCode ) in MoveCursor()
H A Dediteng.cxx849 sal_uInt16 nCode = rKeyEvent.GetKeyCode().GetCode(); in PostKeyEvent() local
886 switch ( nCode ) in PostKeyEvent()
971 … if ( !rKeyEvent.GetKeyCode().IsMod2() || ( nCode == KEY_LEFT ) || ( nCode == KEY_RIGHT ) ) in PostKeyEvent()
984 if ( nCode == KEY_HOME ) in PostKeyEvent()
986 else if ( nCode == KEY_END ) in PostKeyEvent()
1007 if (pFmt && nCode == KEY_BACKSPACE && in PostKeyEvent()
1035 switch( nCode ) in PostKeyEvent()
1250 if ( ( !IsVertical() && ( nCode != KEY_UP ) && ( nCode != KEY_DOWN ) ) || in PostKeyEvent()
1251 ( IsVertical() && ( nCode != KEY_LEFT ) && ( nCode != KEY_RIGHT ) )) in PostKeyEvent()
1257 ( !IsVertical() && ( nCode != KEY_LEFT ) && ( nCode != KEY_RIGHT ) ) || in PostKeyEvent()
[all …]
/trunk/main/sw/source/filter/ww8/
H A Dww8par.hxx1253 SwPageDesc* pNewPageDesc, sal_uInt8 nCode );
H A Dww8par2.cxx1524 sal_uInt16 nCode = SVBT16ToShort(pParams); in ProcessDirection() local
1534 maDirections[nStartCell] = nCode; in ProcessDirection()
3179 SvxFrameDirection MakeDirection(sal_uInt16 nCode, sal_Bool bIsBiDi) in MakeDirection() argument
3186 switch (nCode) in MakeDirection()
/trunk/main/filter/source/graphicfilter/eps/
H A Deps.cxx100 sal_uInt16 nCode; // Der Code fuer den String von Pixelwerten, der sich ergibt, wenn member
239 inline void WriteBits( sal_uInt16 nCode, sal_uInt16 nCodeLen );
2612 inline void PSWriter::WriteBits( sal_uInt16 nCode, sal_uInt16 nCodeLen ) in WriteBits() argument
2614 dwShift |= ( nCode << ( nOffset - nCodeLen ) ); in WriteBits()
2622 if ( nCode == 257 && nOffset != 32 ) in WriteBits()
2646 pTable[ i ].nValue = (sal_uInt8)( pTable[ i ].nCode = i ); in StartCompression()
2677 WriteBits( pPrefix->nCode, nCodeSize ); in Compress()
2711 WriteBits( pPrefix->nCode, nCodeSize ); in EndCompression()
/trunk/main/vcl/win/source/window/
H A Dsalframe.cxx2617 sal_uInt16 nCode = nKeyCode & 0x0FFF; in GetKeyName() local
2624 if ( (nCode >= KEY_0) && (nCode <= KEY_9) ) in GetKeyName()
2625 cSVCode = '0' + (nCode - KEY_0); in GetKeyName()
2626 else if ( (nCode >= KEY_A) && (nCode <= KEY_Z) ) in GetKeyName()
2627 cSVCode = 'A' + (nCode - KEY_A); in GetKeyName()
2628 else if ( (nCode >= KEY_F1) && (nCode <= KEY_F26) ) in GetKeyName()
2630 nSysCode = VK_F1 + (nCode - KEY_F1); in GetKeyName()
2632 if ( (nCode >= KEY_F1) && (nCode <= KEY_F9) ) in GetKeyName()
2634 aFBuf[1] = sal::static_int_cast<sal_Char>('1' + (nCode - KEY_F1)); in GetKeyName()
2637 else if ( (nCode >= KEY_F10) && (nCode <= KEY_F19) ) in GetKeyName()
[all …]
H A Dsalobj.cxx143 LRESULT CALLBACK SalSysMsgProc( int nCode, WPARAM wParam, LPARAM lParam ) in SalSysMsgProc() argument
148 if ( (nCode >= 0) && lParam ) in SalSysMsgProc()
196 return CallNextHookEx( pSalData->mhSalObjMsgHook, nCode, wParam, lParam ); in SalSysMsgProc()
/trunk/main/svx/workben/
H A Dedittest.cxx1534 USHORT nCode = rKEvt.GetKeyCode().GetCode(); in KeyInput() local
1556 else if ( ( ( nCode == KEY_ADD ) || ( nCode == KEY_SUBTRACT ) )&& rKEvt.GetKeyCode().IsMod2() ) in KeyInput()
1558 short nDiff = ( nCode == KEY_ADD ) ? (+5) : (-5); in KeyInput()
1577 ( ( nCode == KEY_UP) || ( nCode == KEY_DOWN ) || in KeyInput()
1578 ( nCode == KEY_LEFT ) || ( nCode == KEY_RIGHT ) ) ) in KeyInput()
1590 if ( ( nCode == KEY_DOWN ) && ( nY > 5 ) ) in KeyInput()
1592 else if ( nCode == KEY_UP ) in KeyInput()
1594 else if ( nCode == KEY_RIGHT ) in KeyInput()
1596 else if ( ( nCode == KEY_LEFT ) && ( nX > 5 ) ) in KeyInput()
1607 if ( nCode == KEY_RIGHT ) in KeyInput()
[all …]
/trunk/main/sc/source/ui/app/
H A Dinputhdl.cxx2995 sal_uInt16 nCode = aCode.GetCode(); in KeyInput() local
2999 if (( bAlt && !bControl && nCode != KEY_RETURN ) || in KeyInput()
3009 switch ( nCode ) in KeyInput()
3098 sal_Bool bInsKey = ( nCode == KEY_INSERT && !nModi ); // Insert wie Cursortasten behandeln in KeyInput()
3201 if ( KEY_INSERT == nCode ) in KeyInput()
3207 …if( bUsed && bFormulaMode && ( bCursorKey || bInsKey || nCode == KEY_DELETE || nCode == KEY_BACKSP… in KeyInput()
/trunk/main/editeng/source/outliner/
H A Doutlvw.cxx118 sal_uInt16 nCode = aKeyCode.GetCode(); in PostKeyEvent() local
121 if( bSelection && ( nCode != KEY_TAB ) && EditEngine::DoesKeyChangeText( rKEvt ) ) in PostKeyEvent()
177 switch ( nCode ) in PostKeyEvent()
/trunk/main/sw/source/ui/ribbar/
H A Dworkctrl.cxx852 sal_uInt16 nCode = rNEvt.GetKeyEvent()->GetKeyCode().GetCode(); in Notify() local
854 switch ( nCode ) in Notify()
859 if ( KEY_TAB == nCode ) in Notify()
/trunk/main/svx/source/tbxctrls/
H A Dtbunosearchcontrollers.cxx133 sal_uInt16 nCode = pKeyEvent->GetKeyCode().GetCode(); in PreNotify() local
135 if ( (bCtrl && bAlt && KEY_F == nCode) || KEY_ESCAPE == nCode ) in PreNotify()
141 if ( KEY_RETURN == nCode ) in PreNotify()
/trunk/main/vcl/inc/vcl/
H A Dsettings.hxx197 void SetStartDragCode( sal_uInt16 nCode ) in SetStartDragCode() argument
198 { CopyData(); mpData->mnStartDragCode = nCode; } in SetStartDragCode()
201 void SetDragMoveCode( sal_uInt16 nCode ) in SetDragMoveCode() argument
202 { CopyData(); mpData->mnDragMoveCode = nCode; } in SetDragMoveCode()
205 void SetDragCopyCode( sal_uInt16 nCode ) in SetDragCopyCode() argument
206 { CopyData(); mpData->mnDragCopyCode = nCode; } in SetDragCopyCode()
209 void SetDragLinkCode( sal_uInt16 nCode ) in SetDragLinkCode() argument
210 { CopyData(); mpData->mnDragLinkCode = nCode; } in SetDragLinkCode()
214 void SetContextMenuCode( sal_uInt16 nCode ) in SetContextMenuCode() argument
215 { CopyData(); mpData->mnContextMenuCode = nCode; } in SetContextMenuCode()
/trunk/main/fpicker/source/office/
H A Diodlg.cxx1767 sal_uInt16 nCode = rKeyCode.GetCode(); in Notify() local
1770 KEY_BACKSPACE == nCode && !_pImp->_pEdFileName->HasChildPathFocus() ) in Notify()
/trunk/main/extensions/source/update/check/
H A Ddownload.cxx175 long nCode; in progress_callback() local
176 curl_easy_getinfo(out->curl, CURLINFO_RESPONSE_CODE, &nCode); in progress_callback()
177 if( (nCode != 302) && (nCode != 303) && (dltotal > 0) ) in progress_callback()
/trunk/main/svx/source/fmcomp/
H A Dgridctrl.cxx3433 sal_uInt16 nCode = pKeyEvent->GetKeyCode().GetCode(); in PreNotify() local
3437 if ( ( KEY_TAB == nCode ) && bCtrl && !bAlt ) in PreNotify()
3451 if ( !bShift && !bCtrl && ( KEY_ESCAPE == nCode ) ) in PreNotify()
3459 else if ( ( KEY_DELETE == nCode ) && !bShift && !bCtrl ) // delete rows in PreNotify()
/trunk/main/svtools/source/brwbox/
H A Deditbrowsebox.cxx458 sal_uInt16 nCode = rEvt.GetKeyCode().GetCode(); in KeyInput() local
462 switch (nCode) in KeyInput()
648 sal_uInt16 nCode = pKeyEvent->GetKeyCode().GetCode(); in PreNotify() local
657 switch ( nCode ) in PreNotify()
692 switch ( nCode ) in PreNotify()
705 switch ( nCode ) in PreNotify()
712 switch ( nCode ) in PreNotify()
/trunk/main/svtools/source/control/
H A Dtoolbarmenu.cxx1194 void ToolbarMenu_Impl::implHighlightControl( sal_uInt16 nCode, Control* pControl ) in implHighlightControl() argument
1201 switch( nCode ) in implHighlightControl()
1230 sal_uInt16 nCode = rKEvent.GetKeyCode().GetCode(); in KeyInput() local
1231 switch ( nCode ) in KeyInput()
1237 ToolbarMenuEntry*p = implCursorUpDown( nCode == KEY_UP, false ); in KeyInput()
1242 mpImpl->implHighlightControl( nCode, p->mpControl ); in KeyInput()
1255 ToolbarMenuEntry* p = implCursorUpDown( nCode == KEY_END, true ); in KeyInput()
1258 mpImpl->implHighlightControl( nCode, p->mpControl ); in KeyInput()
1266 if( nCode == KEY_F6 && !rKEvent.GetKeyCode().IsMod1() ) in KeyInput()
H A Dtoolbarmenuimp.hxx307 void implHighlightControl( sal_uInt16 nCode, Control* pControl );

Completed in 359 milliseconds

123456