我正在使用类构建我的第一个c ++项目(试图获得更多经验),现在我陷入困境。我需要确定从我的计算器应用程序中按下了哪个按钮。我设置项目的方式是:
Windows.cpp
// Windows.cpp
#include <Windows.h>
#include <wchar.h>
#include "Resource.h"
#include "Application.h"
int WINAPI wWinMain(...)
{
// after register class and create/show/update window ( winMain() )
Application App(hwnd);
App.Go();
// Main message loop, etc.
MSG msg;
ZeroMemory(&msg,sizeof(msg));
while(msg.message != WM_QUIT)
{
if(PeekMessage(&msg,NULL,0,0,PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return 0;
}
Application.h
#pragma once
#include "Calculator.h"
class Application
{
public:
Application(HWND hwnd);
~Application();
void Go();
private:
void Run();
private:
Calculator calc;
};
Application.cpp:
// Application.cpp
#include "Application.h"
Application::Application(HWND hwnd)
: calc(hwnd)
{}
Application::~Application()
{}
void Application::Go()
{
calc.Initiate(); // This function shows all my button controls for my calculator
Run();
}
void Application::Run()
{
// This is where i want to determine which button was pressed(if any)
if(buttonONEwasPRESSED) { /* do stuff */ } // etc
}
我考虑过向Calculator类添加一个函数来确定是否按下了一个按钮,但是我不确定如何访问wm_command,或者是否有另一种方法。然后我可以调用calc.IsButtonPressed()。
答案 0 :(得分:0)
你被卡住了,因为你想知道按下了哪个按钮。这让我想起了一些处理用户输入的控制台程序。
这不是如何使用GUI。您应该做的是编写按>>按钮时要执行的操作。那是event drived programming
。
使用标准的Win32应用程序,按下按钮的“事件”为WM_COMMAND
。
通过在WM_MESSAGE_X和OnMessageX成员函数之间轻松映射将HWND映射到C ++类,请参阅示例https://stackoverflow.com/a/20356046/1374704