28 lines
535 B
C++
28 lines
535 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include "ui_QSARLookTableSimualtionGUI.h"
|
|
|
|
class QSARLookTableSimualtionGUI : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QSARLookTableSimualtionGUI(QWidget *parent = nullptr);
|
|
~QSARLookTableSimualtionGUI();
|
|
|
|
private:
|
|
Ui::QSARLookTableSimualtionGUIClass ui;
|
|
|
|
|
|
public slots:
|
|
void onOrbitBtnClicked(bool) ;
|
|
void onDEMBtnClicked(bool) ;
|
|
void onSateParamsBtnClicked(bool) ;
|
|
void onIncBtnClicked(bool) ;
|
|
void onLkTblBtnClicked(bool) ;
|
|
void acpRjBtnAccepted();
|
|
void acpRjBtnRejected();
|
|
|
|
};
|