2025-02-02 09:10:37 +00:00
|
|
|
#pragma once
|
2025-02-07 11:47:41 +00:00
|
|
|
#include "simulationsartool_global.h"
|
2025-02-02 09:10:37 +00:00
|
|
|
#include <QDialog>
|
|
|
|
|
2025-02-07 11:47:41 +00:00
|
|
|
namespace Ui {
|
|
|
|
class QSARLookTableSimualtionGUIClass;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SIMULATIONSARTOOL_EXPORT QSARLookTableSimualtionGUI : public QDialog
|
2025-02-02 09:10:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QSARLookTableSimualtionGUI(QWidget *parent = nullptr);
|
|
|
|
~QSARLookTableSimualtionGUI();
|
|
|
|
|
|
|
|
private:
|
2025-02-07 11:47:41 +00:00
|
|
|
Ui::QSARLookTableSimualtionGUIClass* ui;
|
2025-02-02 09:10:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void onOrbitBtnClicked(bool) ;
|
|
|
|
void onDEMBtnClicked(bool) ;
|
|
|
|
void onSateParamsBtnClicked(bool) ;
|
|
|
|
void onIncBtnClicked(bool) ;
|
|
|
|
void onLkTblBtnClicked(bool) ;
|
|
|
|
void acpRjBtnAccepted();
|
|
|
|
void acpRjBtnRejected();
|
|
|
|
|
|
|
|
};
|