0

我正在使用 C++ 在 QT 4.8.4 中编程。我想要一个下拉菜单,我可以在其中选择一个选项,然后它将运行一个 exe,并将菜单上的选定项目作为 exe 的选项。

这是我的代码:

#ifndef GUI_H
#define GUI_H

#include <QDialog>
#include <QtGui>

class QLabel;
class QLineEdit;
class QPushButton;

class gui : public QDialog
{
    Q_OBJECT

public:
    gui(QWidget *parent = 0);

public slots:
    void gui::on_go_clicked();

private:
    QLabel *label1;
    QLabel *label2;
    QLineEdit *lineEdit;
    QPushButton *goButton;
    QComboBox cb;
};

#endif

和 .cpp 文件:

#include <QtGui>
#include <QApplication>
#include <QComboBox>

#include "gui.h"

#include <vector>

gui::gui(QWidget *parent) : QDialog(parent)
{
    label1 = new QLabel(tr("Insert Name (Optional):"));
    label2 = new QLabel(tr("Class Name (Required):"));
    lineEdit = new QLineEdit;

    goButton = new QPushButton(tr("&Go"));
    goButton->setDefault(true);
    connect(goButton, SIGNAL(clicked()), this, SLOT(on_go_clicked()));

    QComboBox *cb = new QComboBox();
    cb->addItem("Hello", "1");
    cb->addItem("Test", "2");

    QHBoxLayout *hLayout1 = new QHBoxLayout;
    hLayout1->addWidget(label1);
    hLayout1->addWidget(lineEdit);

    QHBoxLayout *hLayout2 = new QHBoxLayout;
    hLayout2->addWidget(label2);
    hLayout2->addWidget(cb);

    QHBoxLayout *hLayout3 = new QHBoxLayout;
    hLayout3->addWidget(goButton);
    hLayout3->addStretch();

    QVBoxLayout *vLayout = new QVBoxLayout;
    vLayout->addLayout(hLayout1);
    vLayout->addLayout(hLayout2);
    vLayout->addWidget(cb);
    vLayout->addLayout(hLayout3);

    setLayout(vLayout);
    setWindowTitle(tr("TEST"));
    setFixedHeight(sizeHint().height());
}

void gui::on_go_clicked()
{
    QMessageBox::information(this, "ASDF", cb.currentText());
}

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    gui *stuff = new gui;
    stuff->show();
    return app.exec();
}

现在我只是想弄清楚如何使用 QComboBox,它不起作用。我的代码可以编译,但是当我运行它时,我得到“Object::connect: No such slot gui::on_go_clicked()”

我正在按照教程所说的去做。我不知道为什么这不起作用。

4

3 回答 3

4

删除gui::

class gui : public QDialog{
    Q_OBJECT

...

public slots:
    void gui::on_go_clicked();
         ^^^^^
         Remove it
于 2013-08-15T20:22:35.033 回答
1

我想知道为什么你的代码甚至可以编译。没有“会员 on_go_clicked 的额外资格”。从标题中的 on_go_clicked 中删除 gui::。

于 2013-08-15T20:20:55.427 回答
1

您有两个引用的 QComboBox 对象。

首先是在班级层面:

class gui : public QDialog{
    Q_OBJECT

public:
    gui(QWidget *parent = 0);

public slots:
    void gui::on_go_clicked();

private:
    QLabel *label1;
    QLabel *label2;
    QLineEdit *lineEdit;
    QPushButton *goButton;
    QComboBox cb;           // <<<=== class-level automatic object
};

第二个是存在于构造函数中的本地指向 QComboBox 对象的指针

gui::gui(QWidget *parent) : QDialog(parent){

  ...

  QComboBox *cb = new QComboBox();  // <<<=== function-level pointer using the same name 
                                    //        as the class-level automatic object

要解决此问题,您可以将类级对象更改为指针,然后将对象创建更改为简单的赋值,而不是声明和初始化。

cb = new QComboBox();

此外,完成此操作后,您需要修改插槽,以便使用指针取消引用运算符来访问text()函数

void gui::on_go_clicked(){
  QMessageBox::information(this, "ASDF", cb->currentText());
}
于 2013-08-16T11:11:27.023 回答