我是Qt的新手(主要使用Objective-C),所以我可能遇到了noob问题。从QDialog
窗口,我尝试打开QMainWindow
,如下所示:
this->close();
SQLWindow window;
window.receivePath(path); //Path for the .sqlite file
window.show()
QDialog
关闭,我看到了一个新窗口的一瞥,但它也关闭了。以下是QMainWindow
部分:
SQLWindow::SQLWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::SQLWindow)
{
ui->setupUi(this);
this->initialSetup();
}
SQLWindow::~SQLWindow()
{
delete ui;
}
void SQLWindow::initialSetup()
{
ui->tableView->setSortingEnabled(true);
ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers);
}
void SQLWindow::receivePath(QString path)
{
this->openDatabase(path);
}
void SQLWindow::openDatabase(QString path)
{
//Opening database just fine
}
您的窗口是一个局部变量,它在函数结束时被销毁,因此析构函数会关闭它。您可以使用new SQLWindow
在堆上创建SQLWindow
,例如使用此处所示的Qt::WA_DeleteOnClose
属性。
或者,一个更好的设计可能是将对话框和窗口都创建为main
函数的局部变量,并让主函数通过从对话框到SQLWindow
的路径,那么就不需要new
了。