[UPDATE] "Switch to found results window" command now switches back to the current edit view if the focus is already on the found results.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@453 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
parent
c924a47560
commit
9deb93204d
@ -3238,7 +3238,7 @@ void Notepad_plus::command(int id)
|
|||||||
_findReplaceDlg.doDialog((id == IDM_SEARCH_FIND)?FIND_DLG:REPLACE_DLG, _isRTL);
|
_findReplaceDlg.doDialog((id == IDM_SEARCH_FIND)?FIND_DLG:REPLACE_DLG, _isRTL);
|
||||||
|
|
||||||
_pEditView->getGenericSelectedText(str, strSize);
|
_pEditView->getGenericSelectedText(str, strSize);
|
||||||
_findReplaceDlg.setSearchText(str, _pEditView->getCurrentBuffer()->getUnicodeMode() != uni8Bit);
|
_findReplaceDlg.setSearchText(str);
|
||||||
setFindReplaceFolderFilter(NULL, NULL);
|
setFindReplaceFolderFilter(NULL, NULL);
|
||||||
|
|
||||||
if (isFirstTime)
|
if (isFirstTime)
|
||||||
@ -3290,7 +3290,11 @@ void Notepad_plus::command(int id)
|
|||||||
}
|
}
|
||||||
case NPPM_INTERNAL_FOCUS_ON_FOUND_RESULTS:
|
case NPPM_INTERNAL_FOCUS_ON_FOUND_RESULTS:
|
||||||
{
|
{
|
||||||
_findReplaceDlg.focusOnFinder();
|
if (GetFocus() == _findReplaceDlg.getHFindResults())
|
||||||
|
// focus already on found results, switch to current edit view
|
||||||
|
switchEditViewTo(currentView());
|
||||||
|
else
|
||||||
|
_findReplaceDlg.focusOnFinder();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case IDM_SEARCH_VOLATILE_FINDNEXT :
|
case IDM_SEARCH_VOLATILE_FINDNEXT :
|
||||||
@ -7395,7 +7399,7 @@ LRESULT Notepad_plus::runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lPa
|
|||||||
_findReplaceDlg.doDialog(FIND_DLG, _isRTL);
|
_findReplaceDlg.doDialog(FIND_DLG, _isRTL);
|
||||||
|
|
||||||
_pEditView->getGenericSelectedText(str, strSize);
|
_pEditView->getGenericSelectedText(str, strSize);
|
||||||
_findReplaceDlg.setSearchText(str, _pEditView->getCurrentBuffer()->getUnicodeMode() != uni8Bit);
|
_findReplaceDlg.setSearchText(str);
|
||||||
if (isFirstTime)
|
if (isFirstTime)
|
||||||
changeDlgLang(_findReplaceDlg.getHSelf(), "Find");
|
changeDlgLang(_findReplaceDlg.getHSelf(), "Find");
|
||||||
_findReplaceDlg.launchFindInFilesDlg();
|
_findReplaceDlg.launchFindInFilesDlg();
|
||||||
@ -9390,7 +9394,6 @@ const TCHAR * Notepad_plus::fileSaveSession(size_t nbFile, TCHAR ** fileNames, c
|
|||||||
Session currentSession;
|
Session currentSession;
|
||||||
if ((nbFile) && (!fileNames))
|
if ((nbFile) && (!fileNames))
|
||||||
{
|
{
|
||||||
|
|
||||||
for (size_t i = 0 ; i < nbFile ; i++)
|
for (size_t i = 0 ; i < nbFile ; i++)
|
||||||
{
|
{
|
||||||
if (PathFileExists(fileNames[i]))
|
if (PathFileExists(fileNames[i]))
|
||||||
|
@ -323,7 +323,7 @@ public :
|
|||||||
void replaceAllInOpenedDocs();
|
void replaceAllInOpenedDocs();
|
||||||
void findAllIn(InWhat op);
|
void findAllIn(InWhat op);
|
||||||
|
|
||||||
void setSearchText(TCHAR * txt2find, bool isUTF8 = false) {
|
void setSearchText(TCHAR * txt2find) {
|
||||||
HWND hCombo = ::GetDlgItem(_hSelf, IDFINDWHAT);
|
HWND hCombo = ::GetDlgItem(_hSelf, IDFINDWHAT);
|
||||||
if (txt2find && txt2find[0])
|
if (txt2find && txt2find[0])
|
||||||
{
|
{
|
||||||
@ -396,6 +396,12 @@ public :
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
HWND getHFindResults() {
|
||||||
|
if (_pFinder)
|
||||||
|
return _pFinder->_scintView.getHSelf();
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
void updateFinderScintilla() {
|
void updateFinderScintilla() {
|
||||||
if (_pFinder && _pFinder->isCreated() && _pFinder->isVisible())
|
if (_pFinder && _pFinder->isCreated() && _pFinder->isVisible())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user