2022-06-14 18:04:44 +08:00
|
|
|
#ifndef SYSTEMSETTINGFORM_H
|
|
|
|
|
#define SYSTEMSETTINGFORM_H
|
|
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
|
{
|
|
|
|
|
class SystemSettingForm;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-25 14:37:38 +08:00
|
|
|
class DiskInfoWorker;
|
|
|
|
|
|
2022-06-14 18:04:44 +08:00
|
|
|
class SystemSettingForm : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit SystemSettingForm(QWidget* aParent = nullptr);
|
|
|
|
|
~SystemSettingForm();
|
|
|
|
|
|
2023-08-24 15:11:18 +08:00
|
|
|
signals:
|
2024-05-28 13:55:32 +08:00
|
|
|
void mppsSettingsSaved(bool aIsOpen, const QString& aServerAETitle, const QString& aServerIP, int aServerPort);
|
2023-08-24 15:11:18 +08:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void processPacsSettingsResponsed(bool aResult, const QVariant& aMessage);
|
|
|
|
|
|
2022-06-14 18:04:44 +08:00
|
|
|
private:
|
|
|
|
|
Ui::SystemSettingForm* mUI;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // SYSTEMSETTINGFORM_H
|