From e52d812401fd6d33c8dbf1a5c8085bc4629de72f Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Tue, 29 Aug 2017 10:47:11 +0300 Subject: [PATCH] add Menu / Show Home Screen command --- src/dlangide/ui/commands.d | 2 ++ src/dlangide/ui/frame.d | 7 +++++-- views/res/i18n/en.ini | 1 + views/res/i18n/ru.ini | 1 + 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/dlangide/ui/commands.d b/src/dlangide/ui/commands.d index 0d438d6..b0c3344 100644 --- a/src/dlangide/ui/commands.d +++ b/src/dlangide/ui/commands.d @@ -48,6 +48,7 @@ enum IDEActions : int { HelpViewHelp, WindowCloseDocument, WindowCloseAllDocuments, + WindowShowHomeScreen, CreateNewWorkspace, AddToCurrentWorkspace, //ProjectFolderAddItem, @@ -131,6 +132,7 @@ const Action ACTION_HELP_ABOUT = new Action(IDEActions.HelpAbout, "MENU_HELP_ABO const Action ACTION_HELP_VIEW_HELP = new Action(IDEActions.HelpViewHelp, "MENU_HELP_VIEW_HELP"c); const Action ACTION_WINDOW_CLOSE_DOCUMENT = new Action(IDEActions.WindowCloseDocument, "MENU_WINDOW_CLOSE_DOCUMENT"c, null, KeyCode.KEY_W, KeyFlag.Control); const Action ACTION_WINDOW_CLOSE_ALL_DOCUMENTS = new Action(IDEActions.WindowCloseAllDocuments, "MENU_WINDOW_CLOSE_ALL_DOCUMENTS"c); +const Action ACTION_WINDOW_SHOW_HOME_SCREEN = new Action(IDEActions.WindowShowHomeScreen, "MENU_WINDOW_SHOW_HOME_SCREEN"c); const Action ACTION_CREATE_NEW_WORKSPACE = new Action(IDEActions.CreateNewWorkspace, "OPTION_CREATE_NEW_WORKSPACE"c); const Action ACTION_ADD_TO_CURRENT_WORKSPACE = new Action(IDEActions.AddToCurrentWorkspace, "OPTION_ADD_TO_CURRENT_WORKSPACE"c); diff --git a/src/dlangide/ui/frame.d b/src/dlangide/ui/frame.d index 2a88f96..afb6be1 100644 --- a/src/dlangide/ui/frame.d +++ b/src/dlangide/ui/frame.d @@ -731,8 +731,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL MenuItem windowItem = new MenuItem(new Action(3, "MENU_WINDOW"c)); //windowItem.add(new Action(30, "MENU_WINDOW_PREFERENCES")); - windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT); - windowItem.add(ACTION_WINDOW_CLOSE_ALL_DOCUMENTS); + windowItem.add(ACTION_WINDOW_CLOSE_DOCUMENT, ACTION_WINDOW_CLOSE_ALL_DOCUMENTS, ACTION_WINDOW_SHOW_HOME_SCREEN); MenuItem helpItem = new MenuItem(new Action(4, "MENU_HELP"c)); helpItem.add(ACTION_HELP_VIEW_HELP); helpItem.add(ACTION_HELP_ABOUT); @@ -831,6 +830,7 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL case IDEActions.FileOpen: case IDEActions.WindowCloseDocument: case IDEActions.WindowCloseAllDocuments: + case IDEActions.WindowShowHomeScreen: case IDEActions.FileOpenWorkspace: // disable when background operation in progress if (!_currentBackgroundOperation) @@ -1033,6 +1033,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL closeAllDocuments(); }); return true; + case IDEActions.WindowShowHomeScreen: + showHomeScreen(); + return true; case IDEActions.FileOpenWorkspace: // Already specified workspace if (!a.stringParam.empty) { diff --git a/views/res/i18n/en.ini b/views/res/i18n/en.ini index 1f22da7..30ffe6f 100644 --- a/views/res/i18n/en.ini +++ b/views/res/i18n/en.ini @@ -86,6 +86,7 @@ MENU_WINDOW=&Window MENU_WINDOW_PREFERENCES=&Preferences MENU_WINDOW_CLOSE_DOCUMENT=Close document MENU_WINDOW_CLOSE_ALL_DOCUMENTS=Close all documents +MENU_WINDOW_SHOW_HOME_SCREEN=Show home screen MENU_HELP=&Help MENU_HELP_VIEW_HELP=&View help diff --git a/views/res/i18n/ru.ini b/views/res/i18n/ru.ini index 408d04e..f46d17a 100644 --- a/views/res/i18n/ru.ini +++ b/views/res/i18n/ru.ini @@ -86,6 +86,7 @@ MENU_WINDOW=&Окно MENU_WINDOW_PREFERENCES=&Настройки MENU_WINDOW_CLOSE_DOCUMENT=Закрыть документ MENU_WINDOW_CLOSE_ALL_DOCUMENTS=Закрыть все документы +MENU_WINDOW_SHOW_HOME_SCREEN=Домашняя страница MENU_HELP=&Справка MENU_HELP_VIEW_HELP=&Просмотр справки