如何在重新运行程序时禁用禁用按钮

时间:2011-05-13 18:56:49

标签: qt

我创造了很多qpushbutton来代表电影院的座位。用户购买座椅后,我禁用了这些座椅。我想要做的就是看到以前禁用的按钮被禁用。我将此禁用按钮保存到txt文件并读取其名称,但我无法将其指定为我的小部件Qpushbuttons。有办法解决吗?

2 个答案:

答案 0 :(得分:1)

这不是一个按钮问题,因为它是一个数据结构问题。你应该以某种方式将你的按钮/座位连接到一个数据结构,这有助于记录可用和预留的座位。关闭程序后,将数据写入文件或数据库,随后可以在打开应用程序时再次读取该数据。然后,您可以再次禁用保留座位的按钮。

答案 1 :(得分:1)

我已经用Qt做了一些简单的例子,我希望这会对你有所帮助:

// list of all seats in order (true means seat is taken, false seat is still free)
QList<bool> seats;

// set some test values
seats.append(true);
seats.append(true);
seats.append(false);
seats.append(true);

// file where the seats will be stored
QFile file("seats.dat");

// save to file
file.open(QIODevice::WriteOnly);
QDataStream out(&file);
out << seats;
file.close();

// remove all seats (just for testing)
seats.clear();

// read from file
file.open(QIODevice::ReadOnly);
QDataStream in(&file);
in >> seats;
file.close();

// simple debug output off all seats
qDebug() << seats;

// you could set the buttons enabled state like this
QList<QPushButton*> buttons; // list of your buttons in the same order as the seat list of course
for (int i = 0; i < seats.count(); ++i)
    buttons[i]->setEnabled(!seats.at(i)); // disables all seats which are already taken

这当然只是一个简单的解决方案,使用QDataStream来序列化完整的座位列表,但是如果你不熟悉Qt / C ++,你可以解决这个问题