Searched refs:clickCount (Results 1 - 9 of 9) sorted by relevance

/haiku/src/servers/app/decorator/
H A DWindowBehaviour.h28 int32 lastHitRegion, int32& clickCount,
H A DDefaultWindowBehaviour.h37 int32 lastHitRegion, int32& clickCount,
H A DDefaultWindowBehaviour.cpp739 int32 lastHitRegion, int32& clickCount, int32& _hitRegion)
892 clickCount = 1;
927 activateOnMouseUp, clickCount == 2));
738 MouseDown(BMessage* message, BPoint where, int32 lastHitRegion, int32& clickCount, int32& _hitRegion) argument
/haiku/src/apps/terminal/
H A DSmartTabView.cpp92 int32 clickCount = 0; local
94 Window()->CurrentMessage()->FindInt32("clicks", &clickCount);
96 if ((buttons & B_PRIMARY_MOUSE_BUTTON) != 0 && clickCount == 2) {
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp360 int32 clickCount; local
362 &clickCount);
365 if (clickCount == 2) {
/haiku/src/servers/app/
H A DWindow.h192 int32& clickCount,
H A DDesktop.cpp299 int32 clickCount = originalClickCount; local
300 if (clickCount > 1) {
306 || clickCount - fResetClickCount < 1) {
307 clickCount = 1;
309 clickCount -= fResetClickCount;
314 window->MouseDown(message, where, fLastClickTarget, clickCount,
318 if (clickCount != 1 && clickTarget != fLastClickTarget)
319 clickCount = 1;
322 fResetClickCount = originalClickCount - clickCount;
333 if (clickCount !
[all...]
H A DWindow.cpp894 \param clickCount The number of subsequent, no longer than double-click
907 const ClickTarget& lastClickTarget, int32& clickCount,
921 clickCount, hitRegion);
906 MouseDown(BMessage* message, BPoint where, const ClickTarget& lastClickTarget, int32& clickCount, ClickTarget& _clickTarget) argument
/haiku/src/apps/showimage/
H A DShowImageView.cpp1105 int32 clickCount = 0; local
1108 clickCount = Window()->CurrentMessage()->FindInt32("clicks");
1112 // Using clickCount >= 2 and the modulo 2 accounts for quickly repeated
1114 if (buttons == B_PRIMARY_MOUSE_BUTTON && clickCount >= 2 &&
1115 clickCount % 2 == 0) {

Completed in 162 milliseconds