2024-11-25 17:51:20 +00:00
|
|
|
#pragma once
|
2025-02-07 11:47:41 +00:00
|
|
|
#include "simulationsartool_global.h"
|
2024-11-25 17:51:20 +00:00
|
|
|
#include <QMainWindow>
|
2025-02-07 11:47:41 +00:00
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class QImageSARRFPCClass;
|
|
|
|
}
|
|
|
|
|
2024-11-25 17:51:20 +00:00
|
|
|
|
2025-02-07 11:47:41 +00:00
|
|
|
class SIMULATIONSARTOOL_EXPORT QImageSARRFPC : public QDialog
|
2024-11-25 17:51:20 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2025-01-02 10:53:33 +00:00
|
|
|
QImageSARRFPC(QWidget *parent = nullptr);
|
|
|
|
~QImageSARRFPC();
|
2024-11-25 17:51:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
2024-11-25 17:58:26 +00:00
|
|
|
|
2024-11-25 17:51:20 +00:00
|
|
|
void onpushButtonRPClieck();
|
|
|
|
void onpushButtonTPClieck();
|
|
|
|
void onpushButtonEchoClieck();
|
|
|
|
void onpushButtongpxmlClieck();
|
|
|
|
void onpushButtonTaskxmlClieck();
|
|
|
|
void onpushButtondemClieck();
|
2025-01-15 12:47:38 +00:00
|
|
|
void onpushButtonSloperClieck();
|
2024-11-25 17:51:20 +00:00
|
|
|
void onpushButtonlandcoverClieck();
|
2025-01-15 12:47:38 +00:00
|
|
|
|
2024-11-25 17:51:20 +00:00
|
|
|
|
|
|
|
void onBtnaccept();
|
|
|
|
void onBtnReject();
|
|
|
|
|
|
|
|
private:
|
2025-02-07 11:47:41 +00:00
|
|
|
Ui::QImageSARRFPCClass* ui;
|
2024-11-25 17:51:20 +00:00
|
|
|
};
|