[NEW_FEATURE] Automatic Backup System (in progress).

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1210 f5eea248-9336-0410-98b8-ebc06183d4e3
remotes/trunk
Don Ho 11 years ago
parent 4a794ac8b1
commit 9b341806ae

@ -4270,52 +4270,32 @@ void Notepad_plus::getCurrentOpenedFiles(Session & session, bool /*includUntitle
Buffer * buf = MainFileManager->getBufferByID(bufID); Buffer * buf = MainFileManager->getBufferByID(bufID);
if (!buf->isUntitled()) if (PathFileExists(buf->getFullPathName()))
{ {
// if the file doesn't exist, it could be redirected generic_string languageName = getLangFromMenu(buf);
// So we turn Wow64 off const TCHAR *langName = languageName.c_str();
bool isWow64Off = false; sessionFileInfo sfi(buf->getFullPathName(), langName, buf->getEncoding(), buf->getPosition(editView), buf->getBackupFileName().c_str(), int(buf->getLastModifiedTimestamp()));
NppParameters *pNppParam = NppParameters::getInstance();
if (!PathFileExists(buf->getFullPathName()))
{
pNppParam->safeWow64EnableWow64FsRedirection(FALSE);
isWow64Off = true;
}
if (PathFileExists(buf->getFullPathName()))
{
generic_string languageName = getLangFromMenu(buf);
const TCHAR *langName = languageName.c_str();
sessionFileInfo sfi(buf->getFullPathName(), langName, buf->getEncoding(), buf->getPosition(editView), buf->getBackupFileName().c_str(), int(buf->getLastModifiedTimestamp()));
_invisibleEditView.execute(SCI_SETDOCPOINTER, 0, buf->getDocument()); _invisibleEditView.execute(SCI_SETDOCPOINTER, 0, buf->getDocument());
int maxLine = _invisibleEditView.execute(SCI_GETLINECOUNT); int maxLine = _invisibleEditView.execute(SCI_GETLINECOUNT);
for (int j = 0 ; j < maxLine ; ++j)
{
if ((_invisibleEditView.execute(SCI_MARKERGET, j)&(1 << MARK_BOOKMARK)) != 0)
{
sfi.marks.push_back(j);
}
}
if (i == activeIndex) for (int j = 0 ; j < maxLine ; ++j)
{ {
editView->getCurrentFoldStates(sfi._foldStates); if ((_invisibleEditView.execute(SCI_MARKERGET, j)&(1 << MARK_BOOKMARK)) != 0)
}
else
{ {
sfi._foldStates = buf->getHeaderLineState(editView); sfi.marks.push_back(j);
} }
viewFiles->push_back(sfi);
} }
// We enable Wow64 system, if it was disabled if (i == activeIndex)
if (isWow64Off) {
editView->getCurrentFoldStates(sfi._foldStates);
}
else
{ {
pNppParam->safeWow64EnableWow64FsRedirection(TRUE); sfi._foldStates = buf->getHeaderLineState(editView);
isWow64Off = false;
} }
viewFiles->push_back(sfi);
} }
} }
} }

Loading…
Cancel
Save