2025-03-11 04:59:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
2025-03-11 05:42:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class QtLinearToIntenisityDialogClass;
|
|
|
|
}
|
|
|
|
|
2025-03-11 04:59:13 +00:00
|
|
|
|
|
|
|
class QtLinearToIntenisityDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QtLinearToIntenisityDialog(QWidget *parent = nullptr);
|
|
|
|
~QtLinearToIntenisityDialog();
|
|
|
|
|
2025-03-11 05:42:07 +00:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
void On_pushButtonInRasterTriggled();
|
|
|
|
void On_pushButtonSaveTriggled();
|
|
|
|
void On_radioButtonIntenistyTriggled();
|
|
|
|
void On_radioButtonAmpTriggled();
|
|
|
|
void onbtnaccepted();
|
|
|
|
void onbtnrejected();
|
2025-03-11 04:59:13 +00:00
|
|
|
private:
|
2025-03-11 05:42:07 +00:00
|
|
|
Ui::QtLinearToIntenisityDialogClass* ui;
|
2025-03-11 04:59:13 +00:00
|
|
|
};
|