^1.13.4
This commit is contained in:
parent
8b7df9bdc0
commit
6e3e7c81a7
|
@ -104,9 +104,8 @@ void COptionsWindow::CreateAdvanced()
|
|||
connect(ui.chkShowHostProcTmpl, SIGNAL(clicked(bool)), this, SLOT(OnShowHostProcTmpl()));
|
||||
connect(ui.chkConfidential, SIGNAL(clicked(bool)), this, SLOT(OnConfidentialChanged()));
|
||||
connect(ui.chkLessConfidential, SIGNAL(clicked(bool)), this, SLOT(OnLessConfidentialChanged()));
|
||||
connect(ui.chkProtectWindow, SIGNAL(clicked(bool)), this, SLOT(OnProtectChanged()));
|
||||
connect(ui.chkBlockCapture, SIGNAL(clicked(bool)), this, SLOT(OnCaptureChanged()));
|
||||
//connect(ui.chkLockWhenClose, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
|
||||
connect(ui.chkProtectWindow, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
|
||||
connect(ui.chkBlockCapture, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
|
||||
connect(ui.chkNotifyProtect, SIGNAL(clicked(bool)), this, SLOT(OnAdvancedChanged()));
|
||||
|
||||
connect(ui.treeInjectDll, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(OnToggleInjectDll(QTreeWidgetItem *, int)));
|
||||
|
@ -1247,31 +1246,3 @@ void COptionsWindow::SaveDebug()
|
|||
DbgOption.Changed = false;
|
||||
}
|
||||
}
|
||||
|
||||
void COptionsWindow::OnCaptureChanged()
|
||||
{
|
||||
if (ui.chkBlockCapture->checkState()) {
|
||||
ui.chkProtectWindow->setChecked(FALSE);
|
||||
ui.chkProtectWindow->setCheckable(FALSE);
|
||||
ui.chkProtectWindow->setEnabled(FALSE);
|
||||
}
|
||||
else {
|
||||
ui.chkProtectWindow->setCheckable(TRUE);
|
||||
ui.chkProtectWindow->setEnabled(TRUE);
|
||||
}
|
||||
OnAdvancedChanged();
|
||||
}
|
||||
|
||||
void COptionsWindow::OnProtectChanged()
|
||||
{
|
||||
if (ui.chkProtectWindow->checkState()) {
|
||||
ui.chkBlockCapture->setChecked(FALSE);
|
||||
ui.chkBlockCapture->setCheckable(FALSE);
|
||||
ui.chkBlockCapture->setEnabled(FALSE);
|
||||
}
|
||||
else {
|
||||
ui.chkBlockCapture->setCheckable(TRUE);
|
||||
ui.chkBlockCapture->setEnabled(TRUE);
|
||||
}
|
||||
OnAdvancedChanged();
|
||||
}
|
||||
|
|
|
@ -232,8 +232,6 @@ private slots:
|
|||
void OnAccessChanged();
|
||||
void OnSysSvcChanged();
|
||||
void OnAdvancedChanged();
|
||||
void OnProtectChanged();
|
||||
void OnCaptureChanged();
|
||||
void OnOpenCOM();
|
||||
void OnIsolationChanged();
|
||||
void OnDebugChanged();
|
||||
|
|
Loading…
Reference in New Issue