HomeSort by relevance Sort by last modified time
    Searched refs:bCtrl (Results 1 - 7 of 7) sorted by null

  /external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h 294 //if Shift key is hold, bShift is TRUE, is Ctrl key is hold, bCtrl is TRUE.
295 virtual void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0;
297 virtual void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0;
299 virtual void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
301 virtual void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
303 virtual void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
305 virtual void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
307 virtual void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
309 virtual void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl) = 0;
480 virtual void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl) = 0
    [all...]
fxet_list.h 308 void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
309 void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
310 void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl);
311 void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl);
312 void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl);
313 void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl);
314 void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl);
315 void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl);
316 void OnVK(FX_INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl);
317 FX_BOOL OnChar(FX_WORD nChar,FX_BOOL bShift,FX_BOOL bCtrl);
    [all...]
fxet_edit.h 612 void OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
613 void OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl);
614 void OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl);
615 void OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl);
616 void OnVK_LEFT(FX_BOOL bShift,FX_BOOL bCtrl);
617 void OnVK_RIGHT(FX_BOOL bShift,FX_BOOL bCtrl);
618 void OnVK_HOME(FX_BOOL bShift,FX_BOOL bCtrl);
619 void OnVK_END(FX_BOOL bShift,FX_BOOL bCtrl);
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_list.cpp 560 void CFX_ListCtrl::OnMouseDown(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl)
566 if (bCtrl)
609 void CFX_ListCtrl::OnMouseMove(const CPDF_Point & point,FX_BOOL bShift,FX_BOOL bCtrl)
615 if (bCtrl)
642 void CFX_ListCtrl::OnVK(FX_INT32 nItemIndex,FX_BOOL bShift,FX_BOOL bCtrl)
648 if (bCtrl)
677 void CFX_ListCtrl::OnVK_UP(FX_BOOL bShift,FX_BOOL bCtrl)
679 OnVK(IsMultipleSel() ? GetCaret()-1 : GetSelect()-1, bShift, bCtrl);
682 void CFX_ListCtrl::OnVK_DOWN(FX_BOOL bShift,FX_BOOL bCtrl)
684 OnVK(IsMultipleSel() ? GetCaret()+1 : GetSelect()+1, bShift, bCtrl);
    [all...]
fxet_edit.cpp     [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Edit.cpp 974 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
976 if(bCtrl && !bAlt)
1013 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
1014 if (!bCtrl)
1060 if (!bCtrl)
PWL_EditCtrl.cpp 264 FX_BOOL bCtrl = IsCTRLpressed(nFlag);
270 if (bCtrl && !bAlt)

Completed in 65 milliseconds