存储qdialog中的变量以在qmainwindow中使用

时间:2012-08-30 10:45:25

标签: qt store qdialog qmainwindow

我已经创建了一个dialog.h,dialog.cpp和一个dialog.ui,我在对话框中有qlineedit,还有ok和cancel按钮,我想存储那些在主窗口中使用的行标题信息在另一个文件中。这是我的对话框代码。

#include <QtGui/QApplication>
#include "dialog.h"
#include "ui_dialog.h"

void Dialog::startplanevolume()
{
    if (xMax==0)
    {
        ui->label_17->setText("Error: Can't start, invalid \nmeasures");
    }
    else
    {
        this->accept();        
    }
}

// Define the length of the volume
void Dialog::bmprange()
{
// Getting some proprieties for the lenght of the volume
QString XMAX=ui->lineEdit->text();
xMax=XMAX.toDouble();

if (xMax==0)
{
    ui->label_17->setText("Error: invalid measures");
}
else
{
    ui->label_17->setText("Valid measures");
}
}

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::Dialog)
{
    ui->setupUi(this);

  // Control volume measures
    // Making the lineedit objects only accept numbers
    ui->lineEdit->setValidator(new QIntValidator(this));
    connect(ui->lineEdit, SIGNAL(textChanged(QString)), this, SLOT(bmprange()));


  // Start planevolume
    connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(startplanevolume()));
    connect(ui->pushButton_2, SIGNAL(clicked()), this, SLOT(hide()));

}

Dialog::~Dialog()
{
    delete ui;
}

void Dialog::changeEvent(QEvent *e)
{
    QDialog::changeEvent(e);
    switch (e->type()) {
    case QEvent::LanguageChange:
        ui->retranslateUi(this);
        break;
    default:
        break;
    }
}

如何在mainwindow.cpp中使用xMax的值?

这是我的dialog.h

#ifndef DIALOG_H
#define DIALOG_H

#include <QDialog>

namespace Ui {
    class Dialog;
}

class Dialog : public QDialog {
    Q_OBJECT
public:
    Dialog(QWidget *parent = 0);
    ~Dialog();

protected:
    void changeEvent(QEvent *e);

private:
    Ui::Dialog *ui;
    double xMax, yMax, zMax, xMMax, yMMax, zMMax, list[6];

public slots:
    void bmprange();
    void startplanevolume();

};

#endif // DIALOG_H

这是我的main.cpp

#include <QtGui/QApplication>

#include "planevolume.h"
#include "dialog.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    Dialog *dialog= new Dialog;

    if (dialog->exec())
    {
        planevolume mainwindow;
        mainwindow.show();
        return app.exec();
    }

return 0;
}

所以我想用xMax来计算planevolume.cpp中的东西,主窗口

2 个答案:

答案 0 :(得分:1)

我认为你可以在对话框中创建一个getter函数。关闭对话框后,您可以使用创建的getter函数访问该变量。

您可以将返回的变量作为参数提供给主窗口(planvolume.cpp)。

我希望有所帮助。

编辑:

在dialog.h / dialog.cpp中添加一个函数:

double Dialog::getXMax()
{
     return xMax;
}

之后,您可以访问main.cpp中的变量:

Dialog *dialog= new Dialog;

if (dialog->exec())
{
    double xMax = dialog->getXMax();
    planevolume mainwindow;
    mainwindow.show();
    return app.exec();
}

答案 1 :(得分:1)

虽然您可以将xMax声明为Dialog的公共成员并且只是使用它,但更优雅和OO样式的方法是编写在public区域中声明的“getter”函数您的Dialog班级:

(...)
public:
    Dialog(QWidget *parent = 0);
    ~Dialog();
    double getxMax() { return xMax; }
(...)

您还需要在setter类中使用planevolume函数,该函数也在public区域中声明为:

void setxMax(double xMax);

这个函数的主体将负责使用xMax的值做任何必要的事情。

最后,在您的main()函数中,您将执行以下操作:

if (dialog->exec())
{
    planevolume mainwindow;
    mainwindow.setxMax(dialog->getxMax());   // This passes xMax to main window
    mainwindow.show();
    return app.exec();
}

或者,您可以将show()的{​​{1}}函数重载为

planevolume

在这种情况下,您不需要planevolume::show(double xMax) { // Do whatever you want with XMax show(); // And call original show function } 功能,只需调用

即可
setter