55 lines
999 B
C++
55 lines
999 B
C++
#ifndef SYSTEMSETTINGFORM_H
|
|
#define SYSTEMSETTINGFORM_H
|
|
|
|
#include <QWidget>
|
|
class QPushButton;
|
|
class QVBoxLayout;
|
|
class SelectDialog;
|
|
class QLineEdit;
|
|
class ImageSwitch;
|
|
class IPAddress;
|
|
|
|
class systemSettingForm : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit systemSettingForm(QWidget* parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
//QVBoxLayout* layout = nullptr;
|
|
SelectDialog* sd_protocal = nullptr;
|
|
SelectDialog* sd_filter = nullptr;
|
|
|
|
void loadServersInfo();
|
|
void saveServersInfo();
|
|
|
|
QLineEdit* pacs_Name;
|
|
QLineEdit* recon_IP;
|
|
QLineEdit* daq_AE;
|
|
QLineEdit* recon_Port;
|
|
QLineEdit* local_Port;
|
|
QLineEdit* daq_Port;
|
|
|
|
QLineEdit* wl_Name;
|
|
QLineEdit* pacs_AE;
|
|
QLineEdit* recon_AE;
|
|
QLineEdit* daq_IP;
|
|
QLineEdit* wl_Port;
|
|
QLineEdit* wl_IP;
|
|
QLineEdit* pacs_Port;
|
|
QLineEdit* recon_Name;
|
|
QLineEdit* pacs_IP;
|
|
QLineEdit* wl_AE;
|
|
QLineEdit* daq_Name;
|
|
|
|
IPAddress* local_IP;
|
|
IPAddress* local_Mask;
|
|
IPAddress* local_Gate;
|
|
ImageSwitch* swt_verify;
|
|
};
|
|
|
|
#endif // SYSTEMSETTINGFORM_H
|