SLOT在QMainWindow中被拒绝(),接受()

时间:2013-08-03 16:50:45

标签: qt

我是Qt编程的新手。我读过一本关于Qt GUI编程的书。我在创建对话框时遇到了麻烦。以下是示例代码:

// gotocell.h

#ifndef GOTOCELL_H
#define GOTOCELL_H

#include <QDialog>
#include <QtWidgets>

#include "ui_gotocell.h"

class GoToCellDialog : public QDialog, public Ui::GoToCellDialog
{
    Q_OBJECT
public:
    GoToCellDialog (QWidget *parent = 0);
private slots:
    void on_lineEdit_textChanged();
};

#endif // GOTOCELL_H

// gotocell.cpp

#include <QtWidgets>
#include "gotocell.h"
#include <QtWidgets>

GoToCellDialog::GoToCellDialog (QWidget *parent):
    QDialog (parent)
{
    setupUi(this);

    QRegExp regExp ("[A-Za-z][1-9][0-9]{0,2}");
    lineEdit->setValidator(new QRegExpValidator(regExp, this));

    connect (okButton, SIGNAL(clicked()), this, SLOT(accept()));
    connect (cancelButton, SIGNAL(clicked()), this, SLOT(reject()));
}

void GoToCellDialog::on_lineEdit_textChanged()
{
     okButton->setEnabled(lineEdit->hasAcceptableInput());
}

// main.cpp

#include "gotocell.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    GoToCellDialog *dialog = new GoToCellDialog;
    dialog->show();

    return a.exec();
}

但是当我编译时,在no known conversion for argument 1 from 'GoToCellDialog* const' to 'QMainWindow*'函数处出现错误:setupUi()。我想因为Qt Creator中的设计师创建了一个QMainWindow,而不是QDialog。所以我将GoToCellDialog类更改为QMainWindow。但在QMainWindow中没有名称被“接受”,“拒绝”的插槽。任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

如果要将对话框显示为主窗口,您有两种选择:  1.使整个主窗口以QDialog为基础  2.单独设计Dialog并将其设置为主窗口中央窗口小部件(QMainWindow-&gt; setCentralWidget())。

在这两种情况下,您仍然遇到“OK”和“Cancel”按钮的语义问题。通常,最好考虑应用程序的主窗口应包含的内容,并稍后设计对话框。