将工具以菜单项的方式集成进处理软件界面中
parent
4f55e92660
commit
7635f3ceef
|
@ -1 +1 @@
|
||||||
Subproject commit 2a424bd634f51a58043494bc074fe5687e65c921
|
Subproject commit 458be41d96524bbdad14aaa0b6184a5de387e7e5
|
|
@ -0,0 +1,115 @@
|
||||||
|
#include "QOrthSlrRaster.h"
|
||||||
|
#include <QtWidgets>
|
||||||
|
#include <QFileDialog>
|
||||||
|
#include "QToolProcessBarDialog.h"
|
||||||
|
#include "BaseTool.h"
|
||||||
|
#include "FileOperator.h"
|
||||||
|
#include "GF3CalibrationAndGeocodingClass.h"
|
||||||
|
|
||||||
|
|
||||||
|
QOrthSlrRaster::QOrthSlrRaster(QWidget *parent)
|
||||||
|
: QDialog(parent)
|
||||||
|
{
|
||||||
|
ui.setupUi(this);
|
||||||
|
|
||||||
|
connect(ui.pushButtonAdd, SIGNAL(clicked(bool)), this, SLOT(onpushButtonAddClicked(bool)));
|
||||||
|
connect(ui.pushButtonRemove, SIGNAL(clicked(bool)), this, SLOT(onpushButtonRemoveClicked(bool)));
|
||||||
|
connect(ui.pushButtonDEMSelect, SIGNAL(clicked(bool)), this, SLOT(onpushButtonWorkSpaceClicked(bool)));
|
||||||
|
connect(ui.pushButtonWorkSpace, SIGNAL(clicked(bool)), this, SLOT(pushButtonDEMSelectClicked(bool)));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
QOrthSlrRaster::~QOrthSlrRaster()
|
||||||
|
{}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::accept()
|
||||||
|
{
|
||||||
|
QToolProcessBarDialog* processdialog = new QToolProcessBarDialog(this);
|
||||||
|
processdialog->show();
|
||||||
|
processdialog->showProcess(0.0, u8"正射影像生成");
|
||||||
|
QVector<QString> infile(ui.listWidgetMetaxml->count());
|
||||||
|
QString outworkdirstring = ui.lineEditWorkDir->text();
|
||||||
|
QString inlooktablePath = ui.lineEditDEM->text();
|
||||||
|
for (long i = 0; i < ui.listWidgetMetaxml->count(); i++) {
|
||||||
|
infile[i] = ui.listWidgetMetaxml->item(i)->text();
|
||||||
|
processdialog->showToolInfo(u8"输入影像:\t" + infile[i]);
|
||||||
|
processdialog->showToolInfo(u8"输入查找表:\t" + inlooktablePath);
|
||||||
|
processdialog->showToolInfo(u8"输出工作空间:\t" + outworkdirstring);
|
||||||
|
QString outname = getFileNameWidthoutExtend(infile[i])+"_orth.tif";
|
||||||
|
processdialog->showToolInfo(u8"正射文件名:\t" + outname);
|
||||||
|
QString outstring = JoinPath(outworkdirstring, outname);
|
||||||
|
|
||||||
|
if (GF3OrthSLC(infile[i], inlooktablePath, outstring) == SUCCESS) {
|
||||||
|
processdialog->showToolInfo(u8"正射生成成功");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
processdialog->showToolInfo(u8"正射生成失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
processdialog->close();
|
||||||
|
}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::reject()
|
||||||
|
{
|
||||||
|
this->close();
|
||||||
|
}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::onpushButtonAddClicked(bool)
|
||||||
|
{
|
||||||
|
QStringList fileNames = QFileDialog::getOpenFileNames(
|
||||||
|
this, // 父窗口
|
||||||
|
tr(u8"选择xml文件"), // 标题
|
||||||
|
QString(), // 默认路径
|
||||||
|
tr(u8"xml Files (*.xml);;All Files (*)") // 文件过滤器
|
||||||
|
);
|
||||||
|
|
||||||
|
// 如果用户选择了文件
|
||||||
|
if (!fileNames.isEmpty()) {
|
||||||
|
QString message = "选择的文件有:\n";
|
||||||
|
for (const QString& fileName : fileNames) {
|
||||||
|
this->ui.listWidgetMetaxml->addItem(fileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
QMessageBox::information(this, tr(u8"没有选择文件"), tr(u8"没有选择任何文件。"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::onpushButtonRemoveClicked(bool)
|
||||||
|
{
|
||||||
|
QList<QListWidgetItem*> selectedItems = this->ui.listWidgetMetaxml->selectedItems();
|
||||||
|
for (QListWidgetItem* item : selectedItems) {
|
||||||
|
delete this->ui.listWidgetMetaxml->takeItem(this->ui.listWidgetMetaxml->row(item));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::onpushButtonWorkSpaceClicked(bool)
|
||||||
|
{
|
||||||
|
QString fileName = QFileDialog::getExistingDirectory(this, u8"选择工作空间路径", "");
|
||||||
|
|
||||||
|
if (!fileName.isEmpty()) {
|
||||||
|
this->ui.lineEditWorkDir->setText(fileName);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
QMessageBox::information(this, u8"没有选择文件夹", u8"没有选择任何文件夹");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void QOrthSlrRaster::pushButtonDEMSelectClicked(bool)
|
||||||
|
{
|
||||||
|
QString fileName = QFileDialog::getOpenFileName(
|
||||||
|
this, // 父窗口
|
||||||
|
tr(u8"选择tif文件"), // 标题
|
||||||
|
QString(), // 默认路径
|
||||||
|
tr(u8"tif Files (*.tif);;All Files (*)") // 文件过滤器
|
||||||
|
);
|
||||||
|
|
||||||
|
// 如果用户选择了文件
|
||||||
|
if (!fileName.isEmpty()) {
|
||||||
|
QString message = "选择的文件有:\n";
|
||||||
|
ui.lineEditDEM->setText(fileName);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
QMessageBox::information(this, tr(u8"没有选择文件"), tr(u8"没有选择任何文件。"));
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,25 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <QDialog>
|
||||||
|
#include "ui_QOrthSlrRaster.h"
|
||||||
|
|
||||||
|
class QOrthSlrRaster : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
QOrthSlrRaster(QWidget *parent = nullptr);
|
||||||
|
~QOrthSlrRaster();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::QOrthSlrRasterClass ui;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void accept();
|
||||||
|
void reject();
|
||||||
|
void onpushButtonAddClicked(bool);
|
||||||
|
void onpushButtonRemoveClicked(bool);
|
||||||
|
void onpushButtonWorkSpaceClicked(bool);
|
||||||
|
void pushButtonDEMSelectClicked(bool);
|
||||||
|
|
||||||
|
};
|
|
@ -0,0 +1,234 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>QOrthSlrRasterClass</class>
|
||||||
|
<widget class="QDialog" name="QOrthSlrRasterClass">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>600</width>
|
||||||
|
<height>400</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>根据查找表正射图像</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QListWidget" name="listWidgetMetaxml">
|
||||||
|
<property name="selectionMode">
|
||||||
|
<enum>QAbstractItemView::MultiSelection</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame_2">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButtonAdd">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButtonRemove">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>删除</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="verticalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>20</width>
|
||||||
|
<height>40</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame_4">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>LookTable路径:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEditDEM">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButtonDEMSelect">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QFrame" name="frame_3">
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>输出地址:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEditWorkDir">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButtonWorkSpace">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>30</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>选择</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>0</width>
|
||||||
|
<height>32</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>QOrthSlrRasterClass</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>299</x>
|
||||||
|
<y>374</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>299</x>
|
||||||
|
<y>199</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>QOrthSlrRasterClass</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>299</x>
|
||||||
|
<y>374</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>299</x>
|
||||||
|
<y>199</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
|
@ -1,24 +1,20 @@
|
||||||
#include "QRDOrthProcessClass.h"
|
#include "QRDOrthProcessClass.h"
|
||||||
#include <QtWidgets>
|
#include <QtWidgets>
|
||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
|
#include "QToolProcessBarDialog.h"
|
||||||
|
#include <GF3CalibrationAndGeocodingClass.h>
|
||||||
QRDOrthProcessClass::QRDOrthProcessClass(QWidget *parent)
|
QRDOrthProcessClass::QRDOrthProcessClass(QWidget *parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent)
|
||||||
{
|
{
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
|
|
||||||
|
connect(ui.pushButtonAdd,SIGNAL(clicked(bool)),this,SLOT(onpushButtonAddClicked(bool)));
|
||||||
QListWidget* listWidgetMetaxml;
|
connect(ui.pushButtonRemove,SIGNAL(clicked(bool)),this,SLOT(onpushButtonRemoveClicked(bool)));
|
||||||
|
connect(ui.pushButtonDEMSelect,SIGNAL(clicked(bool)),this,SLOT(onpushButtonWorkSpaceClicked(bool)));
|
||||||
|
connect(ui.pushButtonWorkSpace, SIGNAL(clicked(bool)), this, SLOT(pushButtonDEMSelectClicked(bool)));
|
||||||
QPushButton* pushButtonAdd;
|
// QDialogButtonBox* buttonBox;
|
||||||
QPushButton* pushButtonRemove;
|
//QLineEdit* lineEditDEM;
|
||||||
QLineEdit* lineEditDEM;
|
//QLineEdit* lineEditWorkDir;
|
||||||
QPushButton* pushButtonDEMSelect;
|
|
||||||
QHBoxLayout* horizontalLayout_2;
|
|
||||||
QLineEdit* lineEditWorkDir;
|
|
||||||
QPushButton* pushButtonWorkSpace;
|
|
||||||
QDialogButtonBox* buttonBox;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -27,6 +23,34 @@ QRDOrthProcessClass::~QRDOrthProcessClass()
|
||||||
|
|
||||||
void QRDOrthProcessClass::accept()
|
void QRDOrthProcessClass::accept()
|
||||||
{
|
{
|
||||||
|
QToolProcessBarDialog* processdialog = new QToolProcessBarDialog(this);
|
||||||
|
processdialog->show();
|
||||||
|
processdialog->showProcess(0.0, u8"查找表生成");
|
||||||
|
QVector<QString> infile(ui.listWidgetMetaxml->count());
|
||||||
|
QString outstring = ui.lineEditWorkDir->text();
|
||||||
|
QString indemPath = ui.lineEditDEM->text();
|
||||||
|
double gridx = ui.lineEdit_gridx->text().toDouble();
|
||||||
|
double gridy = ui.lineEdit_gridy->text().toDouble();
|
||||||
|
for (long i = 0; i < ui.listWidgetMetaxml->count(); i++) {
|
||||||
|
infile[i] = ui.listWidgetMetaxml->item(i)->text();
|
||||||
|
processdialog->showToolInfo(u8"输入参数:\t"+ infile[i]);
|
||||||
|
processdialog->showToolInfo(u8"输入DEM:\t"+ indemPath);
|
||||||
|
processdialog->showToolInfo(u8"输出工作空间:\t"+outstring);
|
||||||
|
processdialog->showToolInfo(u8"网格X:\t"+ ui.lineEdit_gridx->text());
|
||||||
|
processdialog->showToolInfo(u8"网格Y:\t"+ ui.lineEdit_gridy->text());
|
||||||
|
|
||||||
|
if (GF3RDProcess(infile[i], indemPath, outstring, gridx, gridy) == SUCCESS) {
|
||||||
|
processdialog->showToolInfo(u8"正射表生成成功");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
processdialog->showToolInfo(u8"正射表生成失败");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
processdialog->close();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>正射代码</string>
|
<string>生成正射查找表</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||||
<item>
|
<item>
|
||||||
|
@ -107,13 +107,22 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lineEdit_gridx">
|
<widget class="QDoubleSpinBox" name="lineEdit_gridx">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
<height>30</height>
|
<height>30</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>100000000000000000.000000000000000</double>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<double>1.000000000000000</double>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<double>10.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
@ -130,15 +139,37 @@
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLineEdit" name="lineEdit_gridy">
|
<widget class="QDoubleSpinBox" name="lineEdit_gridy">
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>0</width>
|
<width>0</width>
|
||||||
<height>30</height>
|
<height>30</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>100000000000000000.000000000000000</double>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<double>1.000000000000000</double>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<double>10.000000000000000</double>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>600</width>
|
<width>600</width>
|
||||||
<height>400</height>
|
<height>394</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
#include "QToolProcessBarDialog.h"
|
|
||||||
|
|
||||||
QToolProcessBarDialog::QToolProcessBarDialog(QWidget *parent)
|
|
||||||
: QDialog(parent)
|
|
||||||
{
|
|
||||||
ui.setupUi(this);
|
|
||||||
ui.progressBar->setRange(0, 100);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
QToolProcessBarDialog::~QToolProcessBarDialog()
|
|
||||||
{}
|
|
||||||
|
|
||||||
void QToolProcessBarDialog::showProcess(double precent, QString tip)
|
|
||||||
{
|
|
||||||
ui.progressBar->setValue(std::ceil(precent * 100));
|
|
||||||
ui.labelTip->setText(tip);
|
|
||||||
this->update();
|
|
||||||
}
|
|
||||||
|
|
||||||
void QToolProcessBarDialog::showToolInfo(QString tip)
|
|
||||||
{
|
|
||||||
ui.textEditTip->append("\n"+tip);
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QDialog>
|
|
||||||
#include "ui_QToolProcessBarDialog.h"
|
|
||||||
#include "ImageOperatorBase.h"
|
|
||||||
class QToolProcessBarDialog : public QDialog, public ShowProessAbstract
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
QToolProcessBarDialog(QWidget *parent = nullptr);
|
|
||||||
~QToolProcessBarDialog();
|
|
||||||
|
|
||||||
private:
|
|
||||||
Ui::QToolProcessBarDialogClass ui;
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual void showProcess(double precent, QString tip) override;
|
|
||||||
virtual void showToolInfo(QString tip) override;
|
|
||||||
};
|
|
|
@ -1,73 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<ui version="4.0">
|
|
||||||
<class>QToolProcessBarDialogClass</class>
|
|
||||||
<widget class="QDialog" name="QToolProcessBarDialogClass">
|
|
||||||
<property name="geometry">
|
|
||||||
<rect>
|
|
||||||
<x>0</x>
|
|
||||||
<y>0</y>
|
|
||||||
<width>600</width>
|
|
||||||
<height>400</height>
|
|
||||||
</rect>
|
|
||||||
</property>
|
|
||||||
<property name="windowTitle">
|
|
||||||
<string>QToolProcessBarDialog</string>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
|
||||||
<item>
|
|
||||||
<widget class="QWidget" name="widget" native="true">
|
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
|
||||||
<item row="1" column="2">
|
|
||||||
<widget class="QPushButton" name="OKpushButton">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>120</width>
|
|
||||||
<height>26</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="maximumSize">
|
|
||||||
<size>
|
|
||||||
<width>120</width>
|
|
||||||
<height>26</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>退出</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="1" column="0">
|
|
||||||
<widget class="QLabel" name="labelTip">
|
|
||||||
<property name="text">
|
|
||||||
<string>提示</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item row="2" column="0" colspan="2">
|
|
||||||
<widget class="QProgressBar" name="progressBar">
|
|
||||||
<property name="value">
|
|
||||||
<number>24</number>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QGroupBox" name="groupBox">
|
|
||||||
<property name="title">
|
|
||||||
<string/>
|
|
||||||
</property>
|
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
||||||
<item>
|
|
||||||
<widget class="QTextEdit" name="textEditTip"/>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
|
||||||
<resources/>
|
|
||||||
<connections/>
|
|
||||||
</ui>
|
|
|
@ -1,6 +1,11 @@
|
||||||
#include "RasterProcessTool.h"
|
#include "RasterProcessTool.h"
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include "QMergeRasterProcessDialog.h"
|
#include "QMergeRasterProcessDialog.h"
|
||||||
|
#include "QImportGF3StripL1ADataset.h"
|
||||||
|
#include "QComplex2AmpPhase.h"
|
||||||
|
#include "QRDOrthProcessClass.h"
|
||||||
|
#include "QOrthSlrRaster.h"
|
||||||
|
|
||||||
|
|
||||||
RasterProcessTool::RasterProcessTool(QWidget *parent)
|
RasterProcessTool::RasterProcessTool(QWidget *parent)
|
||||||
: QMainWindow(parent)
|
: QMainWindow(parent)
|
||||||
|
@ -8,13 +13,40 @@ RasterProcessTool::RasterProcessTool(QWidget *parent)
|
||||||
ui.setupUi(this);
|
ui.setupUi(this);
|
||||||
QObject::connect(this->ui.actionmergeRaster, SIGNAL(triggered()), this, SLOT(onactionmergeRasterTriggered()));
|
QObject::connect(this->ui.actionmergeRaster, SIGNAL(triggered()), this, SLOT(onactionmergeRasterTriggered()));
|
||||||
|
|
||||||
|
QObject::connect(this->ui.actionImportGF3Strip, SIGNAL(triggered()), this, SLOT(onactionImportGF3StripTriggered()));
|
||||||
|
QObject::connect(this->ui.actioncomplex2amporphase, SIGNAL(triggered()), this, SLOT(onactioncomplex2amporphaseTriggered()));
|
||||||
|
QObject::connect(this->ui.actionlooktableCreate, SIGNAL(triggered()), this, SLOT(onactionlooktableCreateTriggered()));
|
||||||
|
QObject::connect(this->ui.actionorthinterpRaster, SIGNAL(triggered()), this, SLOT(onactionorthinterpRasterTriggered()));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RasterProcessTool::~RasterProcessTool()
|
RasterProcessTool::~RasterProcessTool()
|
||||||
{}
|
{}
|
||||||
|
|
||||||
|
void RasterProcessTool::onactionImportGF3StripTriggered()
|
||||||
|
{
|
||||||
|
QImportGF3StripL1ADataset* dialog = new QImportGF3StripL1ADataset(this);
|
||||||
|
dialog->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RasterProcessTool::onactioncomplex2amporphaseTriggered()
|
||||||
|
{
|
||||||
|
QComplex2AmpPhase* dialog = new QComplex2AmpPhase(this);
|
||||||
|
dialog->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RasterProcessTool::onactionlooktableCreateTriggered()
|
||||||
|
{
|
||||||
|
QRDOrthProcessClass* dialog = new QRDOrthProcessClass(this);
|
||||||
|
dialog->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
void RasterProcessTool::onactionorthinterpRasterTriggered()
|
||||||
|
{
|
||||||
|
QOrthSlrRaster* dialog = new QOrthSlrRaster(this);
|
||||||
|
dialog->show();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void RasterProcessTool::onactionmergeRasterTriggered()
|
void RasterProcessTool::onactionmergeRasterTriggered()
|
||||||
|
|
|
@ -13,9 +13,11 @@ public:
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
|
|
||||||
void onactionmergeRasterTriggered();
|
void onactionmergeRasterTriggered();
|
||||||
|
void onactionImportGF3StripTriggered();
|
||||||
|
void onactioncomplex2amporphaseTriggered();
|
||||||
|
void onactionlooktableCreateTriggered();
|
||||||
|
void onactionorthinterpRasterTriggered();
|
||||||
private:
|
private:
|
||||||
Ui::RasterProcessToolClass ui;
|
Ui::RasterProcessToolClass ui;
|
||||||
};
|
};
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>761</width>
|
<width>761</width>
|
||||||
<height>22</height>
|
<height>23</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<widget class="QMenu" name="menurasterProcessTool">
|
<widget class="QMenu" name="menurasterProcessTool">
|
||||||
|
@ -29,7 +29,17 @@
|
||||||
</property>
|
</property>
|
||||||
<addaction name="actionmergeRaster"/>
|
<addaction name="actionmergeRaster"/>
|
||||||
</widget>
|
</widget>
|
||||||
|
<widget class="QMenu" name="menuGF3ToolBox">
|
||||||
|
<property name="title">
|
||||||
|
<string>GF3ToolBox</string>
|
||||||
|
</property>
|
||||||
|
<addaction name="actionImportGF3Strip"/>
|
||||||
|
<addaction name="actioncomplex2amporphase"/>
|
||||||
|
<addaction name="actionlooktableCreate"/>
|
||||||
|
<addaction name="actionorthinterpRaster"/>
|
||||||
|
</widget>
|
||||||
<addaction name="menurasterProcessTool"/>
|
<addaction name="menurasterProcessTool"/>
|
||||||
|
<addaction name="menuGF3ToolBox"/>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QToolBar" name="mainToolBar">
|
<widget class="QToolBar" name="mainToolBar">
|
||||||
<attribute name="toolBarArea">
|
<attribute name="toolBarArea">
|
||||||
|
@ -45,6 +55,26 @@
|
||||||
<string>mergeRaster</string>
|
<string>mergeRaster</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionImportGF3Strip">
|
||||||
|
<property name="text">
|
||||||
|
<string>ImportGF3Strip</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actioncomplex2amporphase">
|
||||||
|
<property name="text">
|
||||||
|
<string>complex2amporphase</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionlooktableCreate">
|
||||||
|
<property name="text">
|
||||||
|
<string>looktableCreate</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
|
<action name="actionorthinterpRaster">
|
||||||
|
<property name="text">
|
||||||
|
<string>orthinterpRaster</string>
|
||||||
|
</property>
|
||||||
|
</action>
|
||||||
</widget>
|
</widget>
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
<resources>
|
<resources>
|
||||||
|
|
|
@ -108,6 +108,8 @@
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ClCompile Include="BaseLibraryCPP\QToolProcessBarDialog.cpp" />
|
||||||
|
<ClCompile Include="GF3ProcessToolbox\QOrthSlrRaster.cpp" />
|
||||||
<ClCompile Include="QSimulationRTPCGUI.cpp" />
|
<ClCompile Include="QSimulationRTPCGUI.cpp" />
|
||||||
<ClCompile Include="SimulationSAR\RTPCProcessCls.cpp" />
|
<ClCompile Include="SimulationSAR\RTPCProcessCls.cpp" />
|
||||||
<ClCompile Include="SimulationSAR\SARSatelliteSimulationAbstractCls.cpp" />
|
<ClCompile Include="SimulationSAR\SARSatelliteSimulationAbstractCls.cpp" />
|
||||||
|
@ -116,14 +118,15 @@
|
||||||
<ClCompile Include="SimulationSAR\SigmaDatabase.cpp" />
|
<ClCompile Include="SimulationSAR\SigmaDatabase.cpp" />
|
||||||
<QtRcc Include="Imageshow\qcustomplot.qrc" />
|
<QtRcc Include="Imageshow\qcustomplot.qrc" />
|
||||||
<QtRcc Include="RasterProcessTool.qrc" />
|
<QtRcc Include="RasterProcessTool.qrc" />
|
||||||
|
<QtUic Include="BaseLibraryCPP\QToolProcessBarDialog.ui" />
|
||||||
<QtUic Include="GF3ProcessToolbox\QComplex2AmpPhase.ui" />
|
<QtUic Include="GF3ProcessToolbox\QComplex2AmpPhase.ui" />
|
||||||
<QtUic Include="GF3ProcessToolbox\QImportGF3StripL1ADataset.ui" />
|
<QtUic Include="GF3ProcessToolbox\QImportGF3StripL1ADataset.ui" />
|
||||||
|
<QtUic Include="GF3ProcessToolbox\QOrthSlrRaster.ui" />
|
||||||
<QtUic Include="GF3ProcessToolbox\QRDOrthProcessClass.ui" />
|
<QtUic Include="GF3ProcessToolbox\QRDOrthProcessClass.ui" />
|
||||||
<QtUic Include="Imageshow\ImageShowDialogClass.ui" />
|
<QtUic Include="Imageshow\ImageShowDialogClass.ui" />
|
||||||
<QtUic Include="Imageshow\qcustomplot.ui" />
|
<QtUic Include="Imageshow\qcustomplot.ui" />
|
||||||
<QtUic Include="QMergeRasterProcessDialog.ui" />
|
<QtUic Include="QMergeRasterProcessDialog.ui" />
|
||||||
<QtUic Include="QSimulationRTPCGUI.ui" />
|
<QtUic Include="QSimulationRTPCGUI.ui" />
|
||||||
<QtUic Include="QToolProcessBarDialog.ui" />
|
|
||||||
<QtUic Include="RasterProcessTool.ui" />
|
<QtUic Include="RasterProcessTool.ui" />
|
||||||
<QtMoc Include="RasterProcessTool.h" />
|
<QtMoc Include="RasterProcessTool.h" />
|
||||||
<ClCompile Include="BaseLibraryCPP\BaseTool.cpp" />
|
<ClCompile Include="BaseLibraryCPP\BaseTool.cpp" />
|
||||||
|
@ -149,7 +152,6 @@
|
||||||
<ClCompile Include="Imageshow\ImageShowDialogClass.cpp" />
|
<ClCompile Include="Imageshow\ImageShowDialogClass.cpp" />
|
||||||
<ClCompile Include="Imageshow\qcustomplot.cpp" />
|
<ClCompile Include="Imageshow\qcustomplot.cpp" />
|
||||||
<ClCompile Include="QMergeRasterProcessDialog.cpp" />
|
<ClCompile Include="QMergeRasterProcessDialog.cpp" />
|
||||||
<ClCompile Include="QToolProcessBarDialog.cpp" />
|
|
||||||
<ClCompile Include="RasterProcessTool.cpp" />
|
<ClCompile Include="RasterProcessTool.cpp" />
|
||||||
<ClCompile Include="main.cpp" />
|
<ClCompile Include="main.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -160,6 +162,8 @@
|
||||||
<ClInclude Include="BaseLibraryCPP\FileOperator.h" />
|
<ClInclude Include="BaseLibraryCPP\FileOperator.h" />
|
||||||
<ClInclude Include="BaseLibraryCPP\GeoOperator.h" />
|
<ClInclude Include="BaseLibraryCPP\GeoOperator.h" />
|
||||||
<QtMoc Include="QSimulationRTPCGUI.h" />
|
<QtMoc Include="QSimulationRTPCGUI.h" />
|
||||||
|
<QtMoc Include="GF3ProcessToolbox\QOrthSlrRaster.h" />
|
||||||
|
<QtMoc Include="BaseLibraryCPP\QToolProcessBarDialog.h" />
|
||||||
<ClInclude Include="SimulationSAR\RTPCProcessCls.h" />
|
<ClInclude Include="SimulationSAR\RTPCProcessCls.h" />
|
||||||
<ClInclude Include="SimulationSAR\SARSatelliteSimulationAbstractCls.h" />
|
<ClInclude Include="SimulationSAR\SARSatelliteSimulationAbstractCls.h" />
|
||||||
<ClInclude Include="SimulationSAR\SARSimulationTaskSetting.h" />
|
<ClInclude Include="SimulationSAR\SARSimulationTaskSetting.h" />
|
||||||
|
@ -180,7 +184,6 @@
|
||||||
<ClInclude Include="GF3ProcessToolbox\WGS84_J2000.h" />
|
<ClInclude Include="GF3ProcessToolbox\WGS84_J2000.h" />
|
||||||
<QtMoc Include="Imageshow\qcustomplot.h" />
|
<QtMoc Include="Imageshow\qcustomplot.h" />
|
||||||
<QtMoc Include="Imageshow\ImageShowDialogClass.h" />
|
<QtMoc Include="Imageshow\ImageShowDialogClass.h" />
|
||||||
<QtMoc Include="QToolProcessBarDialog.h" />
|
|
||||||
<QtMoc Include="QMergeRasterProcessDialog.h" />
|
<QtMoc Include="QMergeRasterProcessDialog.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -82,9 +82,6 @@
|
||||||
<ClCompile Include="QMergeRasterProcessDialog.cpp">
|
<ClCompile Include="QMergeRasterProcessDialog.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="QToolProcessBarDialog.cpp">
|
|
||||||
<Filter>Source Files</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Imageshow\ImageShowDialogClass.cpp">
|
<ClCompile Include="Imageshow\ImageShowDialogClass.cpp">
|
||||||
<Filter>Imageshow</Filter>
|
<Filter>Imageshow</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
@ -136,6 +133,12 @@
|
||||||
<ClCompile Include="QSimulationRTPCGUI.cpp">
|
<ClCompile Include="QSimulationRTPCGUI.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="GF3ProcessToolbox\QOrthSlrRaster.cpp">
|
||||||
|
<Filter>GF3ProcessToolbox</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="BaseLibraryCPP\QToolProcessBarDialog.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="BaseLibraryCPP\BaseConstVariable.h">
|
<ClInclude Include="BaseLibraryCPP\BaseConstVariable.h">
|
||||||
|
@ -203,9 +206,6 @@
|
||||||
<QtMoc Include="QMergeRasterProcessDialog.h">
|
<QtMoc Include="QMergeRasterProcessDialog.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
<QtMoc Include="QToolProcessBarDialog.h">
|
|
||||||
<Filter>Header Files</Filter>
|
|
||||||
</QtMoc>
|
|
||||||
<QtMoc Include="Imageshow\ImageShowDialogClass.h">
|
<QtMoc Include="Imageshow\ImageShowDialogClass.h">
|
||||||
<Filter>Imageshow</Filter>
|
<Filter>Imageshow</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
|
@ -224,14 +224,17 @@
|
||||||
<QtMoc Include="QSimulationRTPCGUI.h">
|
<QtMoc Include="QSimulationRTPCGUI.h">
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</QtMoc>
|
</QtMoc>
|
||||||
|
<QtMoc Include="GF3ProcessToolbox\QOrthSlrRaster.h">
|
||||||
|
<Filter>GF3ProcessToolbox</Filter>
|
||||||
|
</QtMoc>
|
||||||
|
<QtMoc Include="BaseLibraryCPP\QToolProcessBarDialog.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</QtMoc>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<QtUic Include="QMergeRasterProcessDialog.ui">
|
<QtUic Include="QMergeRasterProcessDialog.ui">
|
||||||
<Filter>Form Files</Filter>
|
<Filter>Form Files</Filter>
|
||||||
</QtUic>
|
</QtUic>
|
||||||
<QtUic Include="QToolProcessBarDialog.ui">
|
|
||||||
<Filter>Form Files</Filter>
|
|
||||||
</QtUic>
|
|
||||||
<QtUic Include="Imageshow\ImageShowDialogClass.ui">
|
<QtUic Include="Imageshow\ImageShowDialogClass.ui">
|
||||||
<Filter>Imageshow</Filter>
|
<Filter>Imageshow</Filter>
|
||||||
</QtUic>
|
</QtUic>
|
||||||
|
@ -250,5 +253,11 @@
|
||||||
<QtUic Include="QSimulationRTPCGUI.ui">
|
<QtUic Include="QSimulationRTPCGUI.ui">
|
||||||
<Filter>Form Files</Filter>
|
<Filter>Form Files</Filter>
|
||||||
</QtUic>
|
</QtUic>
|
||||||
|
<QtUic Include="GF3ProcessToolbox\QOrthSlrRaster.ui">
|
||||||
|
<Filter>GF3ProcessToolbox</Filter>
|
||||||
|
</QtUic>
|
||||||
|
<QtUic Include="BaseLibraryCPP\QToolProcessBarDialog.ui">
|
||||||
|
<Filter>Form Files</Filter>
|
||||||
|
</QtUic>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
Loading…
Reference in New Issue