gpt4 book ai didi

c++ - 等到按下按钮(QT)

转载 作者:行者123 更新时间:2023-11-30 02:53:35 25 4
gpt4 key购买 nike

这是我在 SO 上的第一篇文章 ^_^

我正在尝试实现 letter scramble game用QT框架。主要部分已经完成,但现在我惊呆了 - 我无法弄清楚如何让程序等待在游戏中按下按钮。

请帮帮我。提前致谢

这是我的游戏周期的伪代码:

//initialize grid, score, time

// accept words until timer expires
while (true) {

// draw the current state of the grid

// log board

// get current time

// report score

// check for game's end

// report time remaining

// prompt for word and converting it to char*
//HOW TO WAIT UNTILL BUTTON PRESSED????!!!!

// check whether to scramble grid

// or to look for word on grid and in dictionary
}

附言由于这是我在这里的第一篇文章,我将不胜感激有关如何更正确地撰写问题的任何建议。

最佳答案

在我看来,您缺少的是 Qt 基于 event-driven programming . Qt 提供您向用户显示的小部件/对象,例如按钮、窗口、 Controller 等。例如,QPushButton 对象能够接收各种事件,例如单击鼠标按钮或按下键盘键等。

对于事件,Qt 提供了一种插槽/信号机制来接收这些事件并对其作出 react 。因此,例如,在 QPushButton 的情况下,有一个名为“按下”的信号。当用户点击按钮时,它的按下信号被发射。作为开发人员,您可以将按下的信号连接到插槽,这是您定义的函数。

例如,在派生自 QObject 的名为 MyClass 的类中:-

QPushButton button("Select"); // create a QPushButton object
connect(button, SIGNAL(pressed()), this, SLOT(buttonPressed()));

connect 语句将按钮的“按下”信号连接到名为“buttonPressed”的槽函数。然后您将定义该函数:-

void MyClass::buttonPressed()
{
// handle the button pressed event....
}

因此,您实际上没有任何调用来等待按钮被按下,因为框架是这样设计的,您不需要将所有内容都放在 while(true) 循环中。

关于c++ - 等到按下按钮(QT),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17858847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com