mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-07-30 00:45:38 +00:00
29 lines
409 B
C++
29 lines
409 B
C++
#ifndef TESTDIALOG_H
|
|
#define TESTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class TestDialog;
|
|
}
|
|
|
|
class TestDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TestDialog(QWidget *pParent = nullptr);
|
|
~TestDialog() override;
|
|
|
|
public slots:
|
|
void OnSpinBoxChanged(int NewValue);
|
|
void OnFind();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::TestDialog> ui;
|
|
};
|
|
|
|
#endif // TESTDIALOG_H
|