-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
496 lines (414 loc) · 17 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
#include <iostream>
#include <windows.h>
#include <cmath>
#include <chrono>
#include <shellapi.h> // For system tray
#include "resource.h" // For icon resources
#define WM_TRAYICON (WM_USER + 1)
#define ID_TRAYICON 1
#define ID_EXIT 1000
NOTIFYICONDATA nid = {};
HMENU hPopMenu;
WNDCLASSEX wc = {};
HWND hWnd;
// Configuration
const int MOVEMENT_THRESHOLD = 2; // vertical sensitivity
const int VERTICAL_THRESHOLD = 5; // More sensitive threshold for up/down actions
const int CURSOR_MOVE_STEPS = 20; // Number of steps for smooth cursor movement
const int CURSOR_MOVE_DELAY = 1; // Milliseconds between each cursor movement step
const int SLOW_MOUSE_SPEED = 4; // Mouse speed when action button held (1-20, where 10 is normal)
const double VERTICAL_COOLDOWN = 1500.0; // Cooldown for vertical actions in milliseconds (1.5 seconds)
const double HORIZONTAL_COOLDOWN = 500.0; // Cooldown for horizontal actions in milliseconds (0.5 seconds)
// Command types enum
enum class ActiveCommand {
NONE,
ALT_TAB_RIGHT,
ALT_TAB_LEFT,
VIRTUAL_DESKTOP_LEFT,
VIRTUAL_DESKTOP_RIGHT,
WINDOWS_TAB_UP,
SHOW_DESKTOP_OR_TAB_DOWN
};
// State tracking
struct {
bool actionButtonDown = false; // Mouse Button 5 (can be changed to right button)
POINT initialPos = {0, 0}; // Position when action button was pressed
bool isLocked = false; // Whether cursor is currently locked
POINT lockedPos = {0, 0}; // Position where cursor is locked
bool altTabActive = false; // Whether Alt+Tab is currently being held
ActiveCommand currentCommand = ActiveCommand::NONE; // Currently active command
bool isReturningToOrigin = false; // Whether cursor is currently returning to origin
POINT lastPos = {0, 0}; // Last position before releasing action button
int originalMouseSpeed = 10; // Store original mouse speed
std::chrono::steady_clock::time_point lastUpwardActionTime = std::chrono::steady_clock::now(); // Last time upward action was triggered
std::chrono::steady_clock::time_point lastDownwardActionTime = std::chrono::steady_clock::now(); // Last time downward action was triggered
std::chrono::steady_clock::time_point lastHorizontalActionTime = std::chrono::steady_clock::now(); // Last time horizontal action was triggered
} state;
// Forward declarations
void performAction(const std::string& action);
void handleMouseMovement(const POINT& currentPos);
void lockCursor();
void unlockCursor();
void startAltTab(bool goRight);
void releaseAltTab();
bool checkHorizontalCooldown();
bool checkVerticalCooldown(bool isUpward);
// Cooldown check functions
bool checkHorizontalCooldown() {
auto currentTime = std::chrono::steady_clock::now();
auto timeSinceLastAction = std::chrono::duration_cast<std::chrono::milliseconds>(
currentTime - state.lastHorizontalActionTime).count();
if (timeSinceLastAction < HORIZONTAL_COOLDOWN) {
return false; // Still in cooldown
}
state.lastHorizontalActionTime = currentTime;
return true;
}
// Mouse actions
void performVirtualDesktopSwitch(bool goRight) {
// Check horizontal cooldown
if (!checkHorizontalCooldown()) {
return;
}
// Only perform if no other command is active or if we're continuing the same direction
ActiveCommand newCommand = goRight ? ActiveCommand::VIRTUAL_DESKTOP_RIGHT : ActiveCommand::VIRTUAL_DESKTOP_LEFT;
if (state.currentCommand == ActiveCommand::NONE || state.currentCommand == newCommand) {
state.currentCommand = newCommand;
// Windows + Ctrl + Arrow (Left/Right)
keybd_event(VK_LWIN, 0, 0, 0);
keybd_event(VK_CONTROL, 0, 0, 0);
keybd_event(goRight ? VK_RIGHT : VK_LEFT, 0, 0, 0);
keybd_event(goRight ? VK_RIGHT : VK_LEFT, 0, KEYEVENTF_KEYUP, 0);
keybd_event(VK_CONTROL, 0, KEYEVENTF_KEYUP, 0);
keybd_event(VK_LWIN, 0, KEYEVENTF_KEYUP, 0);
}
}
bool checkVerticalCooldown(bool isUpward) {
auto currentTime = std::chrono::steady_clock::now();
auto& lastActionTime = isUpward ? state.lastUpwardActionTime : state.lastDownwardActionTime;
auto timeSinceLastAction = std::chrono::duration_cast<std::chrono::milliseconds>(
currentTime - lastActionTime).count();
if (timeSinceLastAction < VERTICAL_COOLDOWN) {
return false; // Still in cooldown
}
lastActionTime = currentTime;
return true;
}
void performWindowsTabView() {
// Check cooldown for upward action
if (!checkVerticalCooldown(true)) {
return;
}
// Only perform if no other command is active or if continuing Windows+Tab
if (state.currentCommand == ActiveCommand::NONE ||
state.currentCommand == ActiveCommand::WINDOWS_TAB_UP) {
state.currentCommand = ActiveCommand::WINDOWS_TAB_UP;
// Windows + Tab
keybd_event(VK_LWIN, 0, 0, 0);
keybd_event(VK_TAB, 0, 0, 0);
keybd_event(VK_TAB, 0, KEYEVENTF_KEYUP, 0);
keybd_event(VK_LWIN, 0, KEYEVENTF_KEYUP, 0);
}
}
void performShowDesktopOrWindowsTab() {
// Check cooldown for downward action
if (!checkVerticalCooldown(false)) {
return;
}
// Only perform if no other command is active or if continuing the same command
if (state.currentCommand == ActiveCommand::NONE ||
state.currentCommand == ActiveCommand::SHOW_DESKTOP_OR_TAB_DOWN) {
state.currentCommand = ActiveCommand::SHOW_DESKTOP_OR_TAB_DOWN;
// Check if a window is focused
HWND focusedWindow = GetForegroundWindow();
if (focusedWindow != NULL && focusedWindow != GetDesktopWindow()) {
// Show desktop (Windows + D) if window is focused
keybd_event(VK_LWIN, 0, 0, 0);
keybd_event('D', 0, 0, 0);
keybd_event('D', 0, KEYEVENTF_KEYUP, 0);
keybd_event(VK_LWIN, 0, KEYEVENTF_KEYUP, 0);
} else {
// Windows + Tab if no window is focused
performWindowsTabView();
}
}
}
void startAltTab(bool goRight) {
// Only start if no other command is active or if we're in Alt+Tab mode
ActiveCommand newCommand = goRight ? ActiveCommand::ALT_TAB_RIGHT : ActiveCommand::ALT_TAB_LEFT;
// If we're already in Alt+Tab mode (either direction), just change direction
bool isAltTabActive = (state.currentCommand == ActiveCommand::ALT_TAB_RIGHT ||
state.currentCommand == ActiveCommand::ALT_TAB_LEFT);
if (state.currentCommand == ActiveCommand::NONE || isAltTabActive) {
// If not in Alt+Tab mode, start it
if (!state.altTabActive) {
keybd_event(VK_MENU, 0, 0, 0);
keybd_event(VK_TAB, 0, 0, 0);
keybd_event(VK_TAB, 0, KEYEVENTF_KEYUP, 0);
state.altTabActive = true;
}
// Press Right or Left arrow
keybd_event(goRight ? VK_RIGHT : VK_LEFT, 0, 0, 0);
keybd_event(goRight ? VK_RIGHT : VK_LEFT, 0, KEYEVENTF_KEYUP, 0);
state.currentCommand = newCommand;
}
}
void releaseAltTab() {
// Release Alt key if it's being held
if (state.altTabActive) {
keybd_event(VK_MENU, 0, KEYEVENTF_KEYUP, 0);
state.altTabActive = false;
}
if (state.currentCommand == ActiveCommand::ALT_TAB_RIGHT ||
state.currentCommand == ActiveCommand::ALT_TAB_LEFT) {
state.currentCommand = ActiveCommand::NONE;
}
}
void performAltTab(bool goRight = true) {
// Hold Alt and press Right/Left for switching
startAltTab(goRight);
}
// Smooth cursor movement
void moveCursorSmoothly(const POINT& from, const POINT& to) {
state.isReturningToOrigin = true;
for (int step = 1; step <= CURSOR_MOVE_STEPS; step++) {
if (!state.actionButtonDown) {
break; // Stop if action button is released
}
// Calculate intermediate position
POINT currentPos;
currentPos.x = from.x + ((to.x - from.x) * step) / CURSOR_MOVE_STEPS;
currentPos.y = from.y + ((to.y - from.y) * step) / CURSOR_MOVE_STEPS;
// Move cursor
SetCursorPos(currentPos.x, currentPos.y);
// Small delay for smooth movement
Sleep(CURSOR_MOVE_DELAY);
}
// Ensure we reach the exact destination
if (state.actionButtonDown) {
SetCursorPos(to.x, to.y);
}
state.isReturningToOrigin = false;
}
// Mouse movement handling
void handleMouseMovement(const POINT& currentPos) {
if (!state.actionButtonDown || state.isReturningToOrigin) return;
int deltaX = currentPos.x - state.initialPos.x;
int deltaY = currentPos.y - state.initialPos.y;
// Use same threshold for both horizontal and vertical movements
bool horizontalThresholdMet = std::abs(deltaX) > MOVEMENT_THRESHOLD;
bool verticalThresholdMet = std::abs(deltaY) > VERTICAL_THRESHOLD;
// Only trigger if movement exceeds threshold
if (horizontalThresholdMet || verticalThresholdMet) {
// Store current position
state.lastPos = currentPos;
// Determine primary direction of movement
// Changed to be more responsive to horizontal movement by checking it first
if (horizontalThresholdMet) {
// Horizontal movement
if (deltaX > 0) {
performVirtualDesktopSwitch(false); // Moving right now triggers Left
} else {
performVirtualDesktopSwitch(true); // Moving left now triggers Right
}
} else if (verticalThresholdMet) {
// Vertical movement
if (deltaY > 0) {
performShowDesktopOrWindowsTab(); // Down
} else {
performWindowsTabView(); // Up
}
}
// Reset initial position after action
state.initialPos = state.initialPos; // Keep the original position
}
}
// Cursor control
void lockCursor() {
if (!state.isLocked) {
GetCursorPos(&state.lockedPos);
state.isLocked = true;
}
SetCursorPos(state.lockedPos.x, state.lockedPos.y);
}
void unlockCursor() {
state.isLocked = false;
}
// Mouse speed control
void setMouseSpeed(int speed) {
SystemParametersInfo(SPI_SETMOUSESPEED, 0, (PVOID)speed, SPIF_SENDCHANGE);
}
// Mouse hook callback
LRESULT CALLBACK LowLevelMouseProc(int nCode, WPARAM wParam, LPARAM lParam) {
if (nCode == HC_ACTION) {
MSLLHOOKSTRUCT* mouseInfo = reinterpret_cast<MSLLHOOKSTRUCT*>(lParam);
switch (wParam) {
case WM_XBUTTONDOWN:
if (HIWORD(mouseInfo->mouseData) == XBUTTON2) { // Mouse Button 5
state.actionButtonDown = true;
GetCursorPos(&state.initialPos);
// Store and modify mouse speed only when action button is pressed
SystemParametersInfo(SPI_GETMOUSESPEED, 0, &state.originalMouseSpeed, 0);
setMouseSpeed(SLOW_MOUSE_SPEED);
}
break;
case WM_XBUTTONUP:
if (HIWORD(mouseInfo->mouseData) == XBUTTON2) { // Mouse Button 5
state.actionButtonDown = false;
// Get current position before moving
POINT currentPos;
GetCursorPos(¤tPos);
// Always return to initial position
moveCursorSmoothly(currentPos, state.initialPos);
unlockCursor();
releaseAltTab(); // Release any held Alt+Tab combinations
state.currentCommand = ActiveCommand::NONE; // Reset active command
// Restore original mouse speed
setMouseSpeed(state.originalMouseSpeed);
}
break;
case WM_MOUSEMOVE:
if (state.actionButtonDown && !state.isReturningToOrigin) {
POINT currentPos;
GetCursorPos(¤tPos);
handleMouseMovement(currentPos);
}
break;
case WM_MOUSEWHEEL:
if (state.actionButtonDown) {
SHORT wheelDelta = GET_WHEEL_DELTA_WPARAM(mouseInfo->mouseData);
// Determine scroll direction and use appropriate Alt+Tab variant
// Note: wheelDelta > 0 means scrolling up
performAltTab(wheelDelta > 0); // Up = Right, Down = Left
return 1; // Prevent the wheel event from being processed by other applications
}
break;
}
}
return CallNextHookEx(NULL, nCode, wParam, lParam);
}
// Function declarations for window procedure
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
void CreateTrayIcon(HWND hwnd);
void ShowContextMenu(HWND hwnd);
void AddToStartup();
// Add to Windows startup
void AddToStartup() {
TCHAR szPath[MAX_PATH];
GetModuleFileName(NULL, szPath, MAX_PATH);
HKEY hKey;
LPCTSTR keyPath = TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Run");
RegOpenKeyEx(HKEY_CURRENT_USER, keyPath, 0, KEY_SET_VALUE, &hKey);
RegSetValueEx(hKey, TEXT("MouseGestures"), 0, REG_SZ, (BYTE*)szPath, (strlen(szPath) + 1) * sizeof(TCHAR));
RegCloseKey(hKey);
}
// Create hidden window for system tray
HWND CreateHiddenWindow(HINSTANCE hInstance) {
wc.cbSize = sizeof(WNDCLASSEX);
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.lpszClassName = TEXT("MouseGesturesClass");
RegisterClassEx(&wc);
return CreateWindowEx(
0,
TEXT("MouseGesturesClass"),
TEXT("Mouse Gestures"),
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
NULL,
NULL,
hInstance,
NULL
);
}
// Create system tray icon
void CreateTrayIcon(HWND hwnd) {
nid.cbSize = sizeof(NOTIFYICONDATA);
nid.hWnd = hwnd;
nid.uID = ID_TRAYICON;
nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;
nid.uCallbackMessage = WM_TRAYICON;
// Load the icon from resources
HICON hIcon = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_ICON1));
if (hIcon == NULL) {
// Fallback to loading from file if resource loading fails
hIcon = (HICON)LoadImage(NULL, "app.ico", IMAGE_ICON, 0, 0, LR_LOADFROMFILE);
}
nid.hIcon = hIcon;
strcpy(nid.szTip, "Mouse Gestures (Right-click to exit)");
// Add the icon to the system tray
Shell_NotifyIcon(NIM_ADD, &nid);
}
// Show context menu
void ShowContextMenu(HWND hwnd) {
POINT pt;
GetCursorPos(&pt);
hPopMenu = CreatePopupMenu();
InsertMenu(hPopMenu, 0, MF_BYPOSITION | MF_STRING, ID_EXIT, TEXT("Exit"));
SetForegroundWindow(hwnd);
TrackPopupMenu(hPopMenu, TPM_BOTTOMALIGN | TPM_LEFTALIGN, pt.x, pt.y, 0, hwnd, NULL);
}
// Window procedure
LRESULT CALLBACK WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
switch (uMsg) {
case WM_TRAYICON:
if (lParam == WM_RBUTTONUP) {
ShowContextMenu(hwnd);
}
break;
case WM_COMMAND:
if (LOWORD(wParam) == ID_EXIT) {
DestroyWindow(hwnd);
}
break;
case WM_DESTROY:
// Remove the tray icon when the window is destroyed
Shell_NotifyIcon(NIM_DELETE, &nid);
PostQuitMessage(0);
break;
case WM_CREATE:
// Create the tray icon when the window is created
CreateTrayIcon(hwnd);
break;
}
return DefWindowProc(hwnd, uMsg, wParam, lParam);
}
// Windows entry point
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
// Create a mutex to ensure only one instance of the application runs
HANDLE hMutex = CreateMutex(NULL, TRUE, TEXT("MouseGesturesMutex"));
if (GetLastError() == ERROR_ALREADY_EXISTS) {
// If the mutex already exists, another instance is running
return 1;
}
// Create hidden window and system tray icon
hWnd = CreateHiddenWindow(hInstance);
if (!hWnd) {
MessageBoxA(NULL, "Failed to create window!", "Error", MB_ICONERROR);
return 1;
}
AddToStartup();
// Set up mouse hook
HHOOK mouseHook = SetWindowsHookEx(WH_MOUSE_LL, LowLevelMouseProc, NULL, 0);
if (mouseHook == NULL) {
MessageBoxA(NULL, "Failed to set the mouse hook!", "Error", MB_ICONERROR);
DestroyWindow(hWnd);
return 1;
}
// Get initial mouse speed
SystemParametersInfo(SPI_GETMOUSESPEED, 0, &state.originalMouseSpeed, 0);
// Message loop
MSG msg;
while (GetMessage(&msg, NULL, 0, 0) > 0) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
// Cleanup
setMouseSpeed(state.originalMouseSpeed);
UnhookWindowsHookEx(mouseHook);
// Release the mutex
ReleaseMutex(hMutex);
CloseHandle(hMutex);
return 0;
}