打开第二个窗口后隐藏主窗口?另外,当第二个窗口被用户关闭时,主窗口如何重新出现?
Posted
技术标签:
【中文标题】打开第二个窗口后隐藏主窗口?另外,当第二个窗口被用户关闭时,主窗口如何重新出现?【英文标题】:hiding the main Window after opening the secondWindow?Also, when the secondWindow is closed by the user, how can the main window reappear? 【发布时间】:2018-12-27 06:11:20 【问题描述】:基本上,当通过主窗口中的按钮打开第二个窗口时,主窗口将关闭。当第二个窗口关闭时,主窗口会重新出现。
QWidget *wdg = new QWidget;
wdg->show();
hide();
我把它放在 mainwindow.cpp 的类下 我试过用这个..但它似乎没有做任何事情?
这是我到目前为止的代码。一切正常,但我只是不知道如何在第二个窗口打开时隐藏窗口,当第二个窗口关闭时,主窗口将重新出现。
主窗口.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui
class MainWindow;
class MainWindow : public QMainWindow
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_pushButton_clicked();
public:
void show();
private:
Ui::MainWindow *ui;
;
#endif // MAINWINDOW_H
secwindow.h
#ifndef SECWINDOW_H
#define SECWINDOW_H
#include <QDialog>
namespace Ui
class SecWindow;
class SecWindow : public QDialog
Q_OBJECT
public:
explicit SecWindow(QWidget *parent = nullptr);
~SecWindow();
private:
Ui::SecWindow *ui;
;
#endif // SECWINDOW_H
源代码
main.cpp
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
主窗口.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QMessageBox>
#include <QPixmap>
#include "secwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
ui->setupUi(this);
QPixmap pix("C:/Users/Charlene/Downloads/Charlene Back-up/MAPUA/2nd Term/Object Oriented Programming/GOW-Gui/GOW-GUI/intro pic/intro.png");
ui->label->setPixmap(pix.scaled(230,250,Qt::KeepAspectRatio));
MainWindow::~MainWindow()
delete ui;
void MainWindow::on_pushButton_clicked() // Modal approach..mainwindow cannot be moved when secwindow is displayed.
SecWindow secwindow;
secwindow.setModal(true); //it'll set the secwindow
secwindow.exec(); //shows secwindow when button is pressed
secwindow.cpp
#include "secwindow.h"
#include "ui_secwindow.h"
SecWindow::SecWindow(QWidget *parent) :
QDialog(parent),
ui(new Ui::SecWindow)
ui->setupUi(this);
SecWindow::~SecWindow()
delete ui;
编辑:
@Serhiy Kulish
到目前为止我添加的内容:
secWindow.h
class Dialog : public QDialog
Dialog();
;
主窗口.cpp
#include <QDialog>
void MainWindow::show()
Dialog *dialog = new Dialog(this); //Error:no matching constructor for initialization of 'Diaolog'
connect(dialog, SIGNAL(accepted()), this, SLOT(show()));
connect(dialog, SIGNAL(rejected()), this, SLOT(show()));
dialog->show();
hide();
这些是我目前遇到的错误。
【问题讨论】:
【参考方案1】:添加您自己的派生自QDialog
的类。然后将信号accepted
和rejected
与MainWindow::show()
连接起来。
Dialog *dialog = new Dialog(this);
connect(dialog, SIGNAL(accepted()), this, SLOT(show()));
connect(dialog, SIGNAL(rejected()), this, SLOT(show()));
dialog->show();
hide();
它在 Windows 10 上运行良好。 另外,取决于您可能需要的操作系统
QApplication a(argc, argv);
a.setQuitOnLastWindowClosed(false);
在main.cpp
中防止应用关闭。但在这种情况下,您必须手动退出应用程序
【讨论】:
澄清一下,我会把它添加到我的 MainWindow.cpp 中,对吧? @Kuushie118 是的,因为hide()
表示MainWindow::hide()
先生,我会在 MainWindow 类的公共槽中声明 show() 吗?我有一个错误说:C++ 需要所有声明的类型说明符。另外,从 QDialog 派生是什么意思?
我必须创建一个类对话框吗?以上是关于打开第二个窗口后隐藏主窗口?另外,当第二个窗口被用户关闭时,主窗口如何重新出现?的主要内容,如果未能解决你的问题,请参考以下文章