Following part of code in c++ should probably generate and send a message that left-click was performed.
The only problem is : error : 'INPUT' does not name a type.
#include <sstream>
#include <string>
#include <windows.h>
#define ID_BUTTON 1
#define ID_BUTTON2 2
const LPCSTR classname = "Moja Klasa";
bool Przyc = false;
HWND MainWindow;
HWND Button, Button2, Button3;
HWND TextBox;
INPUT Click;
LRESULT CALLBACK WindowEventProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
case WM_LBUTTONDOWN:
{
Przyc = true;
SendMessage (MainWindow, WM_MOUSEMOVE, wParam, lParam);
}
break;
case WM_LBUTTONUP:
Przyc = false;
SetCursorPos(600,600);
break;
case WM_MOUSEMOVE:
if (Przyc)
{
ZeroMemory (&Click, sizeof(INPUT));
Click.type = INPUT_MOUSE;
Click.mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
SendInput (1, &Click, sizeof(INPUT));
std::stringstream ss;
ss << LOWORD(lParam) << " : " << HIWORD(lParam);
std::string x = ss.str();
SetWindowText(MainWindow,x.c_str());
HDC hdc = GetDC (MainWindow);
SetPixel (hdc, LOWORD(lParam), HIWORD(lParam), RGB (255, 0, 0));
ReleaseDC (MainWindow, hdc);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_COMMAND:
switch(wParam)
{
case ID_BUTTON:
MessageBox(MainWindow,"Nacisn¹³eœ przycisk!", "xD", MB_ICONINFORMATION);
break;
case ID_BUTTON2:
DWORD dlugosc = GetWindowTextLength (TextBox);
LPSTR bufor = (LPSTR) GlobalAlloc(GPTR, dlugosc+1);
GetWindowText(TextBox, bufor, dlugosc+1);
MessageBox(MainWindow,bufor, bufor, MB_ICONASTERISK);
SetWindowText(TextBox,"");
if (IsDlgButtonChecked(MainWindow, ID_BUTTON) == BST_CHECKED)
CheckDlgButton(MainWindow, ID_BUTTON, BST_UNCHECKED);
else
CheckDlgButton(MainWindow, ID_BUTTON, BST_CHECKED);
break;
}
break;
default:
return DefWindowProc(hWindow, uMsg, wParam, lParam);
}
return 0;
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR lpszCmdLine, int nCmdShow)
{
ZeroMemory(&BasicWindowClass, sizeof(WNDCLASSEX));
BasicWindowClass.cbSize = sizeof(WNDCLASSEX);
BasicWindowClass.hInstance = hInstance;
BasicWindowClass.lpszClassName = classname;
BasicWindowClass.lpfnWndProc = WindowEventProc;
BasicWindowClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
BasicWindowClass.hCursor = LoadCursor(NULL, IDC_ARROW);
BasicWindowClass.hbrBackground = (HBRUSH) (COLOR_WINDOW);
if (!RegisterClassEx(&BasicWindowClass))
{
MessageBox(NULL, "No memory!", NULL, MB_ICONEXCLAMATION | MB_OK);
return 1;
}
MainWindow = CreateWindowEx(NULL,
classname,
"Labirynth",
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
0,
0,
GetSystemMetrics(SM_CXSCREEN)/2,
GetSystemMetrics(SM_CYSCREEN)/2,
NULL,
NULL,
hInstance,
NULL);
Button = CreateWindowEx(NULL,"BUTTON","Przycisk",WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX, 100, 100, 100, 30, MainWindow, (HMENU)ID_BUTTON, hInstance, NULL);
Button2 = CreateWindowEx(WS_EX_CLIENTEDGE,"BUTTON","2nd Przycisk",WS_CHILD | WS_VISIBLE, 400, 100, 100, 100, MainWindow, (HMENU)ID_BUTTON2, hInstance, NULL);
TextBox = CreateWindowEx(WS_EX_CLIENTEDGE,"EDIT",NULL, WS_CHILD | WS_VISIBLE | WS_BORDER |
WS_VSCROLL | ES_AUTOVSCROLL | ES_MULTILINE, 200, 100, 100, 150, MainWindow, NULL, hInstance, NULL);
HWND hStatic = CreateWindowEx(0, "STATIC", NULL, WS_CHILD | WS_VISIBLE |
SS_LEFT, 250, 300, 150, 200, MainWindow, NULL, hInstance, NULL);
SetWindowText (hStatic, "Napis");
MSG Action;
while (GetMessage(&Action,NULL,0,0))
{
TranslateMessage(&Action);
DispatchMessage(&Action);
}
return Action.wParam;
}
I think it is a matter of some not included header files, but what else should be included, other than <windows.h>?
Don't try to see any point in program, it's just a bunch of random WinAPI features (i'm just trying to learn it). ;)
INPUTis defined inWindows.h– Seth Carnegie Aug 28 '11 at 17:21Windows.h. – Codo Aug 28 '11 at 17:24extern) – Seth Carnegie Aug 28 '11 at 17:28#undef INPUTafter the #include lines? – Karel Petranek Aug 28 '11 at 18:55