我有一个QML应用程序,我已经子类化了QApplication
,用QML创建我的主屏幕。我遇到的问题是点击关闭按钮,应用程序按预期关闭,但我想处理的情况是,如果一些服务正在运行,我想覆盖关闭按钮的行为。
我尝试重写closeEvent()
没有任何运气。谁能告诉我怎么处理这个问题?
UPDATE:这是我尝试的代码片段
class SingleApplication : public QApplication {
Q_OBJECT
public:
SingleApplication(int &argc, char **argv);
void closeEvent ( QCloseEvent * event )
{
event->ignore();
}
}
MAIN.cpp
#include "view.h"
#include <QDebug>
#include <QDesktopWidget>
#include "SingleApplication.h"
int main(int argc, char *argv[])
{
SingleApplication app(argc, argv);
if(!app.isRunning()) {
app.processEvents();
View view(QUrl("qrc:/qml/main.qml"));
#ifdef Q_OS_LINUX
view.setFlags(Qt::WindowMinimizeButtonHint|Qt::WindowCloseButtonHint);
#endif
view.setMaximumSize(QSize(1280,700));
view.setMinimumSize(QSize(1280,700));
// Centering the App to the middle of the screen
int width = view.frameGeometry().width();
int height = view.frameGeometry().height();
QDesktopWidget wid;
int screenWidth = wid.screen()->width();
int screenHeight = wid.screen()->height();
view.setGeometry((screenWidth/2)-(width/2),(screenHeight/2)-(height/2),width,height);
view.show();
return app.exec();
}
return 0;
}
没有QApplication::closeEvent。此虚函数属于QWidget。
使用QApplication表明您为QML UI拥有正常的QWidget容器(尽管您说UI是基于QML的)。你应该重写小部件closeEvent,例如:
class MyMainWidget : public QWidget // or is it QMainWindow?
{
// snip
private:
void closeEvent(QCloseEvent*);
}
void MyMainWidget::closeEvent(QCloseEvent* event)
{
// decide whether or not the event accepted
if (condition())
event->accept();
}
如果您的容器小部件还没有被覆盖(只是QWidget?),那么,现在您必须这样做。
你没有说你是否想要保持应用程序窗口运行。我猜你也想要这个