203c55548f
Description: 检测到图片为空,则不启动 Log: 与程序启动有关 Bug: https://pms.uniontech.com/zentao/bug-view-85086.html Change-Id: Icd4a7b78328e2568a239e03dd44f77fb841795ba
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2020 ~ 2021 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: He MingYang Hao<hemingyang@uniontech.com>
|
|
*
|
|
* Maintainer: He MingYang <hemingyang@uniontech.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "mainwindow.h"
|
|
#include "mainwidget.h"
|
|
#include "service/dbusocr_adaptor.h"
|
|
|
|
#include <QLabel>
|
|
#include <QDBusConnection>
|
|
|
|
#include <DTitlebar>
|
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
: DMainWindow(parent)
|
|
{
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
if (!m_mainWidget) {
|
|
m_mainWidget = new MainWidget(this);
|
|
}
|
|
this->setCentralWidget(m_mainWidget);
|
|
this->resize(840, 550);
|
|
this->setMinimumSize(840, 550);
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
bool MainWindow::openFile(const QString &filePaths)
|
|
{
|
|
//更改打开判断文件是否是图片文件
|
|
return m_mainWidget->openImage(filePaths);;
|
|
}
|
|
|
|
bool MainWindow::openImage(const QImage &image, const QString &name)
|
|
{
|
|
m_mainWidget->openImage(image, name);
|
|
return true;
|
|
}
|