2022-07-09 10:46:07 +01:00
|
|
|
|
|
|
|
void CSandMan::OnFileToRecover(const QString& BoxName, const QString& FilePath, const QString& BoxPath, quint32 ProcessId)
|
|
|
|
{
|
|
|
|
CSandBoxPtr pBox = theAPI->GetBoxByName(BoxName);
|
|
|
|
if ((!pBox.isNull() && pBox.objectCast<CSandBoxPlus>()->IsRecoverySuspended()) || IsDisableRecovery())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (theConf->GetBool("Options/InstantRecovery", true))
|
|
|
|
{
|
|
|
|
CRecoveryWindow* pWnd = ShowRecovery(pBox, false);
|
|
|
|
|
|
|
|
//if (!theConf->GetBool("Options/AlwaysOnTop", false)) {
|
|
|
|
// SetWindowPos((HWND)pWnd->winId(), HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
// QTimer::singleShot(100, this, [pWnd]() {
|
|
|
|
// SetWindowPos((HWND)pWnd->winId(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
|
|
|
|
// });
|
|
|
|
//}
|
|
|
|
|
2022-09-23 10:16:59 +01:00
|
|
|
if (pWnd)
|
|
|
|
pWnd->AddFile(FilePath, BoxPath);
|
2022-07-09 10:46:07 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
m_pPopUpWindow->AddFileToRecover(FilePath, BoxPath, pBox, ProcessId);
|
|
|
|
}
|
|
|
|
|
2023-02-03 07:00:11 +00:00
|
|
|
bool CSandMan::OpenRecovery(const CSandBoxPtr& pBox, bool& DeleteSnapshots, bool bCloseEmpty)
|
2022-07-09 10:46:07 +01:00
|
|
|
{
|
|
|
|
auto pBoxEx = pBox.objectCast<CSandBoxPlus>();
|
|
|
|
if (!pBoxEx) return false;
|
|
|
|
if (pBoxEx->m_pRecoveryWnd != NULL) {
|
2022-12-21 09:14:31 +00:00
|
|
|
if (pBoxEx->m_pRecoveryWnd->IsDeleteDialog())
|
|
|
|
return false;
|
2022-07-09 10:46:07 +01:00
|
|
|
pBoxEx->m_pRecoveryWnd->close();
|
|
|
|
}
|
|
|
|
|
2022-12-21 09:14:31 +00:00
|
|
|
CRecoveryWindow* pRecoveryWnd = pBoxEx->m_pRecoveryWnd = new CRecoveryWindow(pBox, false, this);
|
2023-02-01 21:16:41 +00:00
|
|
|
connect(this, SIGNAL(Closed()), pBoxEx->m_pRecoveryWnd, SLOT(close()));
|
2022-12-21 09:14:31 +00:00
|
|
|
if (pBoxEx->m_pRecoveryWnd->FindFiles() == 0 && bCloseEmpty) {
|
|
|
|
delete pBoxEx->m_pRecoveryWnd;
|
|
|
|
pBoxEx->m_pRecoveryWnd = NULL;
|
2022-07-09 10:46:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
2022-12-21 09:14:31 +00:00
|
|
|
else {
|
|
|
|
connect(pBoxEx->m_pRecoveryWnd, &CRecoveryWindow::Closed, [pBoxEx]() {
|
|
|
|
pBoxEx->m_pRecoveryWnd = NULL;
|
|
|
|
});
|
|
|
|
if (pBoxEx->m_pRecoveryWnd->exec() != 1)
|
|
|
|
return false;
|
|
|
|
}
|
2023-02-03 07:00:11 +00:00
|
|
|
DeleteSnapshots = pRecoveryWnd->IsDeleteSnapshots();
|
2022-07-09 10:46:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CRecoveryWindow* CSandMan::ShowRecovery(const CSandBoxPtr& pBox, bool bFind)
|
|
|
|
{
|
|
|
|
auto pBoxEx = pBox.objectCast<CSandBoxPlus>();
|
2022-07-31 19:05:22 +01:00
|
|
|
if (!pBoxEx) return NULL;
|
2022-07-09 10:46:07 +01:00
|
|
|
if (pBoxEx->m_pRecoveryWnd == NULL) {
|
|
|
|
pBoxEx->m_pRecoveryWnd = new CRecoveryWindow(pBox, bFind == false);
|
2023-02-01 21:16:41 +00:00
|
|
|
connect(this, SIGNAL(Closed()), pBoxEx->m_pRecoveryWnd, SLOT(close()));
|
2022-07-09 10:46:07 +01:00
|
|
|
connect(pBoxEx->m_pRecoveryWnd, &CRecoveryWindow::Closed, [pBoxEx]() {
|
|
|
|
pBoxEx->m_pRecoveryWnd = NULL;
|
|
|
|
});
|
|
|
|
pBoxEx->m_pRecoveryWnd->show();
|
|
|
|
}
|
2022-12-21 09:14:31 +00:00
|
|
|
else if(bFind) { // We don't want to force window in front on instant recovery
|
2022-07-09 10:46:07 +01:00
|
|
|
pBoxEx->m_pRecoveryWnd->setWindowState((pBoxEx->m_pRecoveryWnd->windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
|
2022-12-21 09:14:31 +00:00
|
|
|
SetForegroundWindow((HWND)pBoxEx->m_pRecoveryWnd->winId());
|
|
|
|
}
|
2022-07-09 10:46:07 +01:00
|
|
|
if(bFind)
|
|
|
|
pBoxEx->m_pRecoveryWnd->FindFiles();
|
|
|
|
return pBoxEx->m_pRecoveryWnd;
|
|
|
|
}
|
|
|
|
|
2023-07-01 17:54:53 +01:00
|
|
|
QStringList CSandMan::GetFileCheckers(const CSandBoxPtr& pBox)
|
2023-01-25 11:54:41 +00:00
|
|
|
{
|
|
|
|
QStringList Checkers;
|
2023-07-01 17:54:53 +01:00
|
|
|
|
2023-07-30 13:28:35 +01:00
|
|
|
if (!theGUI->GetAddonManager()->GetAddon("FileChecker", CAddonManager::eInstalled).isNull())
|
|
|
|
Checkers.append(pBox->Expand("powershell -exec bypass -nop -File \"%SbieHome%\\addons\\FileChecker\\CheckFile.ps1\" -bin"));
|
2023-07-01 17:54:53 +01:00
|
|
|
|
2023-01-25 11:54:41 +00:00
|
|
|
if (!pBox.isNull()) {
|
|
|
|
foreach(const QString & Value, pBox->GetTextList("OnFileRecovery", true, false, true)) {
|
|
|
|
Checkers.append(pBox->Expand(Value));
|
|
|
|
}
|
|
|
|
}
|
2023-07-01 17:54:53 +01:00
|
|
|
|
|
|
|
return Checkers;
|
|
|
|
}
|
|
|
|
|
|
|
|
SB_PROGRESS CSandMan::CheckFiles(const QString& BoxName, const QStringList& Files)
|
|
|
|
{
|
|
|
|
CSbieProgressPtr pProgress = CSbieProgressPtr(new CSbieProgress());
|
|
|
|
CSandBoxPtr pBox = theAPI->GetBoxByName(BoxName);
|
|
|
|
QtConcurrent::run(CSandMan::CheckFilesAsync, pProgress, BoxName, Files, GetFileCheckers(pBox));
|
2023-01-25 11:54:41 +00:00
|
|
|
return SB_PROGRESS(OP_ASYNC, pProgress);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandMan::CheckFilesAsync(const CSbieProgressPtr& pProgress, const QString& BoxName, const QStringList& Files, const QStringList& Checkers)
|
|
|
|
{
|
|
|
|
int FailCount = 0;
|
|
|
|
for (QStringList::const_iterator I = Files.begin(); I != Files.end(); ++I)
|
|
|
|
{
|
|
|
|
if (pProgress->IsCanceled()) break;
|
|
|
|
|
|
|
|
QString BoxPath = *I;
|
|
|
|
QString FileName = BoxPath.mid(BoxPath.lastIndexOf("\\") + 1);
|
|
|
|
|
|
|
|
pProgress->ShowMessage(tr("Checking file %1").arg(FileName));
|
|
|
|
|
|
|
|
foreach(const QString & Value, Checkers) {
|
|
|
|
QString Output;
|
|
|
|
int ret = CSbieUtils::ExecCommandEx(Value + " \"" + BoxPath + "\"", &Output, 15000); // 15 sec timeout
|
|
|
|
if (ret != 0) {
|
|
|
|
FailCount++;
|
|
|
|
QMetaObject::invokeMethod(theGUI, "ShowMessage", Qt::BlockingQueuedConnection, // show this message using the GUI thread
|
2023-04-04 14:39:07 +01:00
|
|
|
Q_ARG(QString, tr("The file %1 failed a security check!\n\n%2").arg(BoxPath).arg(Output)),
|
2023-01-25 11:54:41 +00:00
|
|
|
Q_ARG(int, QMessageBox::Warning)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FailCount == 0) {
|
|
|
|
QMetaObject::invokeMethod(theGUI, "ShowMessage", Qt::BlockingQueuedConnection, // show this message using the GUI thread
|
|
|
|
Q_ARG(QString, tr("All files passed the checks")),
|
|
|
|
Q_ARG(int, QMessageBox::Information)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
pProgress->Finish(SB_OK);
|
|
|
|
}
|
|
|
|
|
2023-05-08 20:33:50 +01:00
|
|
|
SB_PROGRESS CSandMan::RecoverFiles(const QString& BoxName, const QList<QPair<QString, QString>>& FileList, QWidget* pParent, int Action)
|
2022-07-09 10:46:07 +01:00
|
|
|
{
|
|
|
|
CSbieProgressPtr pProgress = CSbieProgressPtr(new CSbieProgress());
|
2023-01-25 11:54:41 +00:00
|
|
|
CSandBoxPtr pBox = theAPI->GetBoxByName(BoxName);
|
2023-07-01 17:54:53 +01:00
|
|
|
QtConcurrent::run(CSandMan::RecoverFilesAsync, qMakePair(pProgress, pParent), BoxName, FileList, GetFileCheckers(pBox), Action);
|
2022-07-09 10:46:07 +01:00
|
|
|
return SB_PROGRESS(OP_ASYNC, pProgress);
|
|
|
|
}
|
|
|
|
|
2023-05-08 20:33:50 +01:00
|
|
|
void CSandMan::RecoverFilesAsync(QPair<const CSbieProgressPtr&,QWidget*> pParam, const QString& BoxName, const QList<QPair<QString, QString>>& FileList, const QStringList& Checkers, int Action)
|
2022-07-09 10:46:07 +01:00
|
|
|
{
|
2023-05-08 20:33:50 +01:00
|
|
|
const CSbieProgressPtr& pProgress = pParam.first;
|
|
|
|
QWidget* pParent = pParam.second;
|
|
|
|
|
2022-07-09 10:46:07 +01:00
|
|
|
SB_STATUS Status = SB_OK;
|
|
|
|
|
|
|
|
int OverwriteOnExist = -1;
|
2023-01-25 11:54:41 +00:00
|
|
|
int RecoverCheckFailed = -1;
|
2022-07-09 10:46:07 +01:00
|
|
|
|
|
|
|
QStringList Unrecovered;
|
|
|
|
for (QList<QPair<QString, QString>>::const_iterator I = FileList.begin(); I != FileList.end(); ++I)
|
|
|
|
{
|
2023-01-25 11:54:41 +00:00
|
|
|
if (pProgress->IsCanceled()) break;
|
|
|
|
|
2022-07-09 10:46:07 +01:00
|
|
|
QString BoxPath = I->first;
|
|
|
|
QString RecoveryPath = I->second;
|
|
|
|
QString FileName = BoxPath.mid(BoxPath.lastIndexOf("\\") + 1);
|
|
|
|
QString RecoveryFolder = RecoveryPath.left(RecoveryPath.lastIndexOf("\\") + 1);
|
|
|
|
|
2023-01-25 11:54:41 +00:00
|
|
|
if (!Checkers.isEmpty()) {
|
|
|
|
|
|
|
|
pProgress->ShowMessage(tr("Checking file %1").arg(FileName));
|
|
|
|
|
|
|
|
//bool bNoGui = true;
|
|
|
|
//if (GetKeyState(VK_CONTROL) & 0x8000)
|
|
|
|
// bNoGui = false;
|
|
|
|
|
|
|
|
int ret = 0;
|
|
|
|
foreach(const QString & Value, Checkers) {
|
|
|
|
QString Output;
|
|
|
|
ret = CSbieUtils::ExecCommandEx(Value + " \"" + BoxPath + "\"", &Output, 15000); // 15 sec timeout
|
|
|
|
if (ret != 0) {
|
|
|
|
|
|
|
|
int Recover = RecoverCheckFailed;
|
|
|
|
if (Recover == -1)
|
|
|
|
{
|
|
|
|
bool forAll = false;
|
|
|
|
int retVal = 0;
|
|
|
|
QMetaObject::invokeMethod(theGUI, "ShowQuestion", Qt::BlockingQueuedConnection, // show this question using the GUI thread
|
|
|
|
Q_RETURN_ARG(int, retVal),
|
2023-05-08 21:10:46 +01:00
|
|
|
Q_ARG(QString, tr("The file %1 failed a security check, do you want to recover it anyway?\n\n%2").arg(BoxPath).arg(Output)),
|
2023-01-25 11:54:41 +00:00
|
|
|
Q_ARG(QString, tr("Do this for all files!")),
|
|
|
|
Q_ARG(bool*, &forAll),
|
|
|
|
Q_ARG(int, QDialogButtonBox::Yes | QDialogButtonBox::No),
|
|
|
|
Q_ARG(int, QDialogButtonBox::No),
|
2023-05-08 20:33:50 +01:00
|
|
|
Q_ARG(int, QMessageBox::Warning),
|
|
|
|
Q_ARG(QWidget*, pParent)
|
2023-01-25 11:54:41 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
Recover = retVal == QDialogButtonBox::Yes ? 1 : 0;
|
|
|
|
if (forAll)
|
|
|
|
RecoverCheckFailed = Recover;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Recover == 1)
|
|
|
|
ret = 0;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret != 0)
|
|
|
|
continue; // Do not recover this file
|
|
|
|
}
|
|
|
|
|
2022-07-09 10:46:07 +01:00
|
|
|
pProgress->ShowMessage(tr("Recovering file %1 to %2").arg(FileName).arg(RecoveryFolder));
|
|
|
|
|
|
|
|
QDir().mkpath(RecoveryFolder);
|
|
|
|
if (QFile::exists(RecoveryPath))
|
|
|
|
{
|
|
|
|
int Overwrite = OverwriteOnExist;
|
|
|
|
if (Overwrite == -1)
|
|
|
|
{
|
|
|
|
bool forAll = false;
|
|
|
|
int retVal = 0;
|
|
|
|
QMetaObject::invokeMethod(theGUI, "ShowQuestion", Qt::BlockingQueuedConnection, // show this question using the GUI thread
|
|
|
|
Q_RETURN_ARG(int, retVal),
|
|
|
|
Q_ARG(QString, tr("The file %1 already exists, do you want to overwrite it?").arg(RecoveryPath)),
|
|
|
|
Q_ARG(QString, tr("Do this for all files!")),
|
|
|
|
Q_ARG(bool*, &forAll),
|
|
|
|
Q_ARG(int, QDialogButtonBox::Yes | QDialogButtonBox::No),
|
2022-09-29 17:28:48 +01:00
|
|
|
Q_ARG(int, QDialogButtonBox::No),
|
2023-05-08 20:33:50 +01:00
|
|
|
Q_ARG(int, QMessageBox::Question),
|
|
|
|
Q_ARG(QWidget*, pParent)
|
2022-07-09 10:46:07 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
Overwrite = retVal == QDialogButtonBox::Yes ? 1 : 0;
|
|
|
|
if (forAll)
|
|
|
|
OverwriteOnExist = Overwrite;
|
|
|
|
}
|
|
|
|
if (Overwrite == 1)
|
|
|
|
QFile::remove(RecoveryPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::rename(BoxPath, RecoveryPath))
|
|
|
|
Unrecovered.append(BoxPath);
|
|
|
|
else {
|
|
|
|
QMetaObject::invokeMethod(theGUI, "OnFileRecovered", Qt::BlockingQueuedConnection, // show this question using the GUI thread
|
|
|
|
Q_ARG(QString, BoxName),
|
|
|
|
Q_ARG(QString, RecoveryPath),
|
|
|
|
Q_ARG(QString, BoxPath)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Unrecovered.isEmpty())
|
|
|
|
Status = SB_ERR(SB_Message, QVariantList () << (tr("Failed to recover some files: \n") + Unrecovered.join("\n")));
|
|
|
|
else if(FileList.count() == 1 && Action != 0)
|
|
|
|
{
|
|
|
|
std::wstring path = FileList.first().second.toStdWString();
|
|
|
|
switch (Action)
|
|
|
|
{
|
|
|
|
case 1: // open
|
|
|
|
ShellExecute(NULL, NULL, path.c_str(), NULL, NULL, SW_SHOWNORMAL);
|
|
|
|
break;
|
|
|
|
case 2: // explore
|
|
|
|
ShellExecute(NULL, NULL, L"explorer.exe", (L"/select,\"" + path + L"\"").c_str(), NULL, SW_SHOWNORMAL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pProgress->Finish(Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandMan::AddFileRecovered(const QString& BoxName, const QString& FilePath)
|
|
|
|
{
|
2022-07-11 18:30:09 +01:00
|
|
|
CPanelWidgetEx* pRecoveryLog = m_pRecoveryLog;
|
|
|
|
if (pRecoveryLog == NULL) {
|
|
|
|
pRecoveryLog = m_pRecoveryLogWnd->m_pRecoveryLog;
|
|
|
|
if (!pRecoveryLog) return;
|
|
|
|
}
|
2022-07-09 10:46:07 +01:00
|
|
|
|
|
|
|
QTreeWidgetItem* pItem = new QTreeWidgetItem(); // Time|Box|FilePath
|
|
|
|
pItem->setText(0, QDateTime::currentDateTime().toString("hh:mm:ss.zzz"));
|
|
|
|
pItem->setText(1, BoxName);
|
|
|
|
pItem->setText(2, FilePath);
|
2022-07-11 18:30:09 +01:00
|
|
|
pRecoveryLog->GetTree()->addTopLevelItem(pItem);
|
2022-07-09 10:46:07 +01:00
|
|
|
|
2022-07-11 18:30:09 +01:00
|
|
|
pRecoveryLog->GetView()->verticalScrollBar()->setValue(pRecoveryLog->GetView()->verticalScrollBar()->maximum());
|
2022-07-09 10:46:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CSandMan::OnFileRecovered(const QString& BoxName, const QString& FilePath, const QString& BoxPath)
|
|
|
|
{
|
|
|
|
AddFileRecovered(BoxName, FilePath);
|
|
|
|
|
|
|
|
CSandBoxPtr pBox = theAPI->GetBoxByName(BoxName);
|
|
|
|
if (pBox)
|
|
|
|
pBox.objectCast<CSandBoxPlus>()->UpdateSize();
|
|
|
|
}
|
2022-07-11 18:30:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CRecoveryLogWnd
|
|
|
|
|
|
|
|
CRecoveryLogWnd::CRecoveryLogWnd(QWidget *parent)
|
|
|
|
: QDialog(parent)
|
|
|
|
{
|
|
|
|
Qt::WindowFlags flags = windowFlags();
|
|
|
|
flags |= Qt::CustomizeWindowHint;
|
|
|
|
//flags &= ~Qt::WindowContextHelpButtonHint;
|
|
|
|
//flags &= ~Qt::WindowSystemMenuHint;
|
|
|
|
//flags &= ~Qt::WindowMinMaxButtonsHint;
|
|
|
|
//flags |= Qt::WindowMinimizeButtonHint;
|
|
|
|
//flags &= ~Qt::WindowCloseButtonHint;
|
|
|
|
flags &= ~Qt::WindowContextHelpButtonHint;
|
|
|
|
//flags &= ~Qt::WindowSystemMenuHint;
|
|
|
|
setWindowFlags(flags);
|
|
|
|
|
|
|
|
this->setWindowTitle(tr("Sandboxie-Plus - Recovery Log"));
|
|
|
|
|
|
|
|
QGridLayout* pLayout = new QGridLayout();
|
2022-09-29 17:28:48 +01:00
|
|
|
//pLayout->setContentsMargins(3,3,3,3);
|
2022-07-11 18:30:09 +01:00
|
|
|
|
|
|
|
m_pRecoveryLog = new CPanelWidgetEx();
|
2022-07-31 19:05:22 +01:00
|
|
|
m_pRecoveryLog->GetTree()->setItemDelegate(new CTreeItemDelegate());
|
2022-07-11 18:30:09 +01:00
|
|
|
|
2022-07-29 09:24:32 +01:00
|
|
|
m_pRecoveryLog->GetTree()->setAlternatingRowColors(theConf->GetBool("Options/AltRowColors", false));
|
|
|
|
|
2022-07-11 18:30:09 +01:00
|
|
|
//m_pRecoveryLog->GetView()->setItemDelegate(theGUI->GetItemDelegate());
|
|
|
|
((QTreeWidgetEx*)m_pRecoveryLog->GetView())->setHeaderLabels(tr("Time|Box Name|File Path").split("|"));
|
|
|
|
|
|
|
|
QAction* pAction = new QAction(tr("Cleanup Recovery Log"));
|
|
|
|
connect(pAction, SIGNAL(triggered()), m_pRecoveryLog->GetTree(), SLOT(clear()));
|
|
|
|
m_pRecoveryLog->GetMenu()->insertAction(m_pRecoveryLog->GetMenu()->actions()[0], pAction);
|
|
|
|
m_pRecoveryLog->GetMenu()->insertSeparator(m_pRecoveryLog->GetMenu()->actions()[0]);
|
|
|
|
|
|
|
|
m_pRecoveryLog->GetView()->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|
|
|
m_pRecoveryLog->GetView()->setSortingEnabled(false);
|
|
|
|
|
|
|
|
connect(m_pRecoveryLog->GetTree(), SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)), this, SLOT(OnDblClick(QTreeWidgetItem*)));
|
|
|
|
|
2022-07-27 17:59:30 +01:00
|
|
|
pLayout->addWidget(new QLabel(tr("The following files were recently recovered and moved out of a sandbox.")), 0, 0);
|
2022-07-11 18:30:09 +01:00
|
|
|
pLayout->addWidget(m_pRecoveryLog, 1, 0);
|
|
|
|
this->setLayout(pLayout);
|
|
|
|
|
|
|
|
restoreGeometry(theConf->GetBlob("RecoveryLogWindow/Window_Geometry"));
|
|
|
|
}
|
|
|
|
|
|
|
|
CRecoveryLogWnd::~CRecoveryLogWnd()
|
|
|
|
{
|
|
|
|
theConf->SetBlob("RecoveryLogWindow/Window_Geometry", saveGeometry());
|
|
|
|
}
|
|
|
|
|
|
|
|
void CRecoveryLogWnd::closeEvent(QCloseEvent *e)
|
|
|
|
{
|
|
|
|
emit Closed();
|
|
|
|
//this->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CRecoveryLogWnd::OnDblClick(QTreeWidgetItem* pItem)
|
|
|
|
{
|
|
|
|
ShellExecute(NULL, NULL, L"explorer.exe", (L"/select,\"" + pItem->text(2).toStdWString() + L"\"").c_str(), NULL, SW_SHOWNORMAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CSandMan::OnRecoveryLog()
|
|
|
|
{
|
|
|
|
if (!m_pRecoveryLogWnd->isVisible()) {
|
|
|
|
bool bAlwaysOnTop = theConf->GetBool("Options/AlwaysOnTop", false);
|
|
|
|
m_pRecoveryLogWnd->setWindowFlag(Qt::WindowStaysOnTopHint, bAlwaysOnTop);
|
|
|
|
SafeShow(m_pRecoveryLogWnd);
|
|
|
|
}
|
2022-12-07 16:32:40 +00:00
|
|
|
}
|