15 virtual int Load(
const QString &szFile)
override;
16 virtual int Save(
const QString &szFile)
override;
18 bool getTlsSecurity()
const;
19 void setTlsSecurity(
bool newTlsSecurity);
20 bool getRdpSecurity()
const;
21 void setRdpSecurity(
bool newRdpSecurity);
22 bool getNlaSecurity()
const;
23 void setNlaSecurity(
bool newNlaSecurity);
24 bool getNlaExtSecurity()
const;
25 void setNlaExtSecurity(
bool newNlaExtSecurity);
26 const QString &getSamFile()
const;
27 void setSamFile(
const QString &newSamFile);
29 bool getAuthentication()
const;
30 void setAuthentication(
bool newAuthentication);
32 bool getMayView()
const;
33 void setMayView(
bool newMayView);
34 bool getMayInteract()
const;
35 void setMayInteract(
bool newMayInteract);
38 void sigTlsSecurityChanged();
39 void sigRdpSecurityChanged();
40 void sigNlaecurityChanged();
41 void sigNlaExtSecurityChanged();
42 void sigSamFileChanged();
44 void sigAuthenticationChanged();
46 void sigMayViewChanged();
47 void sigMayInteractChanged();
53 bool m_bNlaExtSecurity;
56 bool m_bAuthentication;
61 Q_PROPERTY(
bool TlsSecurity READ getTlsSecurity WRITE setTlsSecurity)
62 Q_PROPERTY(
bool RdpSecurity READ getRdpSecurity WRITE setRdpSecurity)
63 Q_PROPERTY(
bool NlaSecurity READ getNlaSecurity WRITE setNlaSecurity)
64 Q_PROPERTY(
bool NlaExtSecurity READ getNlaExtSecurity WRITE setNlaExtSecurity NOTIFY sigNlaExtSecurityChanged)
65 Q_PROPERTY(
bool Authentication READ getAuthentication WRITE setAuthentication NOTIFY sigAuthenticationChanged)
66 Q_PROPERTY(QString SamFile READ getSamFile WRITE setSamFile NOTIFY sigSamFileChanged)
67 Q_PROPERTY(
bool MayView READ getMayView WRITE setMayView NOTIFY sigMayViewChanged)
68 Q_PROPERTY(
bool MayInteract READ getMayInteract WRITE setMayInteract NOTIFY sigMayInteractChanged)