tooltips for toolbar buttons

This commit is contained in:
Vadim Lopatin 2015-02-12 15:24:47 +03:00
parent 8bcf603b27
commit e185c2a935
3 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,7 @@ enum IDEActions : int {
FileClose,
FileExit,
EditPreferences,
BuildConfigurations,
BuildWorkspace,
RebuildWorkspace,
CleanWorkspace,
@ -59,6 +60,7 @@ const Action ACTION_FILE_EXIT = new Action(IDEActions.FileExit, "MENU_FILE_EXIT"
const Action ACTION_WORKSPACE_BUILD = new Action(IDEActions.BuildWorkspace, "MENU_BUILD_WORKSPACE_BUILD"c);
const Action ACTION_WORKSPACE_REBUILD = new Action(IDEActions.RebuildWorkspace, "MENU_BUILD_WORKSPACE_REBUILD"c);
const Action ACTION_WORKSPACE_CLEAN = new Action(IDEActions.CleanWorkspace, "MENU_BUILD_WORKSPACE_CLEAN"c);
const Action ACTION_BUILD_CONFIGURATIONS = new Action(IDEActions.BuildConfigurations, "MENU_BUILD_CONFIGURATIONS"c);
const Action ACTION_PROJECT_BUILD = new Action(IDEActions.BuildProject, "MENU_BUILD_PROJECT_BUILD"c, "run-build", KeyCode.F7, 0);
const Action ACTION_PROJECT_REBUILD = new Action(IDEActions.RebuildProject, "MENU_BUILD_PROJECT_REBUILD"c, "run-build-clean", KeyCode.F7, KeyFlag.Control);
const Action ACTION_PROJECT_CLEAN = new Action(IDEActions.CleanProject, "MENU_BUILD_PROJECT_CLEAN"c, null);

View File

@ -374,7 +374,7 @@ class IDEFrame : AppFrame {
}
return true;
};
cbBuildConfiguration.action = ACTION_PROJECT_BUILD;
cbBuildConfiguration.action = ACTION_BUILD_CONFIGURATIONS;
tb.addControl(cbBuildConfiguration);
tb.addButtons(ACTION_PROJECT_BUILD);

View File

@ -23,6 +23,7 @@ MENU_EDIT_TOGGLE_LINE_COMMENT=Toggle line comment
MENU_EDIT_TOGGLE_BLOCK_COMMENT=Toggle block comment
MENU_EDIT_ADVANCED=Advanced...
MENU_EDIT_PREFERENCES=&Preferences
MENU_BUILD_CONFIGURATIONS=Build configurations
MENU_BUILD=&BUILD
MENU_BUILD_WORKSPACE_BUILD=Build Workspace
MENU_BUILD_WORKSPACE_REBUILD=Rebuild Workspace