如何使用c ++移动鼠标

时间:2012-06-30 17:41:28

标签: c++ winapi mouse move

我想用c ++脚本移动鼠标光标。我在Parallels的Windows 7中使用Visual C ++ 2010 Express,我创建了一个控制台应用程序。

我知道SetCursorPos方法,但它不起作用(它什么都不做)。

我设法使用SendInput模拟点击,但实际上并没有移动鼠标。

这是我的代码:

#include <Windows.h>
#include <Tlhelp32.h>
#include <stdio.h>
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
#include <time.h>

void mouseLeftClick(const int x, const int y);

// window
HWND hWindow;

int main()
{
    // find window
    hWindow = FindWindow(NULL, "Calculadora");

    if (NULL == hWindow) {
        OutputDebugStringA("Couldn't find application.");
    }else{

        if (!SetForegroundWindow(hWindow)) {
            OutputDebugStringA("Couldn't set application to foreground.");
        }else{
            // click on 1
            mouseLeftClick(20 265));
            Sleep(500);
            // click on 2
            mouseLeftClick(60, 265);
            Sleep(500);
        }
    }
    return 0;
}

void mouseLeftClick(const int x, const int y)
{ 
    // get the window position
    RECT rect;
    GetWindowRect(hWindow, &rect);

    // calculate scale factor
    const double XSCALEFACTOR = 65535 / (GetSystemMetrics(SM_CXSCREEN) - 1);
    const double YSCALEFACTOR = 65535 / (GetSystemMetrics(SM_CYSCREEN) - 1);

    // get current position
    POINT cursorPos;
    GetCursorPos(&cursorPos);
    double cx = cursorPos.x * XSCALEFACTOR;
    double cy = cursorPos.y * YSCALEFACTOR;

    // calculate target position relative to application
    double nx = (x + rect.left) * XSCALEFACTOR;
    double ny = (y + rect.top) * YSCALEFACTOR;

    INPUT Input={0};
    Input.type = INPUT_MOUSE;

    Input.mi.dx = (LONG)nx;
    Input.mi.dy = (LONG)ny;

    // set move cursor directly and left click
    Input.mi.dwFlags = MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP;

    SendInput(1,&Input,sizeof(INPUT));
}

2 个答案:

答案 0 :(得分:7)

这种情况发生在Parallels中,因为SmartMouse是On或on Auto。 为了让Parallels VM中的程序使用SetCursorPos控制鼠标,您需要先隐藏光标。在进行任何鼠标移动之前,您可以使用ShowCursor(0);执行此操作,例如SetCursorPos。 现在,您可以在SmartMouse设置为“自动”或“关闭”时控制鼠标。

答案 1 :(得分:1)

我发现了问题。事实证明,Parallels有一个名为Smart Mouse的功能,允许您在OSX和Windows之间自由移动。一旦我将其停用,鼠标就会按预期移动。