FinInFiles panel crash fix #265

This commit is contained in:
Vadim Lopatin 2017-09-11 12:27:20 +03:00
parent bed5c024e6
commit 1b4718cf14
4 changed files with 20 additions and 6 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "==0.9.120",
"dlangui": "==0.9.121",
"dsymbol": "~>0.2.9",
"dcd": "~>0.9.1"
},

View File

@ -144,4 +144,4 @@ const Action ACTION_GO_TO_DEFINITION = (new Action(IDEActions.GoToDefinition, "
const Action ACTION_GET_COMPLETIONS = (new Action(IDEActions.GetCompletionSuggestions, "SHOW_COMPLETIONS"c, ""c, KeyCode.KEY_G, KeyFlag.Control|KeyFlag.Shift)).addAccelerator(KeyCode.SPACE, KeyFlag.Control).disableByDefault();
const Action ACTION_GET_PAREN_COMPLETION = (new Action(IDEActions.GetParenCompletion, "SHOW_PAREN_COMPLETION"c, ""c, KeyCode.SPACE, KeyFlag.Control|KeyFlag.Shift)).disableByDefault();
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindInFiles, "FIND_IN_FILES"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control | KeyFlag.Shift));
const Action ACTION_FIND_TEXT = (new Action(IDEActions.FindInFiles, "FIND_IN_FILES"c, "edit-find"c, KeyCode.KEY_F, KeyFlag.Control | KeyFlag.Shift)).disableByDefault();

View File

@ -887,6 +887,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
else
a.state = ACTION_STATE_DISABLE;
return true;
case IDEActions.FindInFiles:
a.state = currentWorkspace !is null ? ACTION_STATE_ENABLED : ACTION_STATE_DISABLE;
return true;
default:
return super.handleActionStateRequest(a);
}
@ -1094,8 +1097,12 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
setStartupProject(cast(Project)a.objectParam);
return true;
case IDEActions.FindInFiles:
Log.d("Opening Search Field");
import dlangide.ui.searchPanel;
Log.d("Opening Search In Files panel");
if (!currentWorkspace) {
Log.d("No workspace is opened");
return true;
}
import dlangide.ui.searchPanel;
int searchPanelIndex = _logPanel.getTabs.tabIndex("search");
SearchWidget searchPanel = null;
if(searchPanelIndex == -1) {

View File

@ -194,10 +194,11 @@ class SearchWidget : TabWidget {
_layout = new HorizontalLayout();
_layout.addChild(new TextWidget("FindLabel", "Find: "d));
_layout.layoutWidth = FILL_PARENT;
_findText = new EditLine();
_findText.padding(Rect(5,4,50,4));
_findText.layoutWidth(400);
_findText.layoutWidth = FILL_PARENT;
_findText.editorAction = &onEditorAction; // to handle Enter key press in editor
_layout.addChild(_findText);
@ -205,6 +206,8 @@ class SearchWidget : TabWidget {
goButton.click = &onFindButtonPressed;
_layout.addChild(goButton);
_layout.addChild(new HSpacer);
_searchScope = new ComboBox("searchScope", ["File"d, "Project"d, "Dependencies"d, "Everywhere"d]);
_searchScope.selectedItemIndex = 0;
_layout.addChild(_searchScope);
@ -257,6 +260,10 @@ class SearchWidget : TabWidget {
_resultLog.setTextToHighlight(""d, 0);
_resultLog.text = ""d;
if (currentWorkspace is null)
return false;
_matchedList = [];
_resultLogMatchIndex = 0;