IDE: High-DPI icons. Issue #32454. Patch by FTurtle

git-svn-id: trunk@55932 -
This commit is contained in:
michl 2017-09-26 20:24:35 +00:00
parent 51367feff0
commit f5a9fce989
55 changed files with 103 additions and 8 deletions

32
.gitattributes vendored
View File

@ -7246,6 +7246,8 @@ images/items/item_keyboard.png -text svneol=unset#image/png
images/items/item_library.png -text svneol=unset#image/png
images/items/item_package.png -text svneol=unset#image/png
images/items/item_project.png -text svneol=unset#image/png
images/items/item_project_150.png -text
images/items/item_project_200.png -text
images/items/item_project_source.png -text
images/items/item_project_source_150.png -text
images/items/item_project_source_200.png -text
@ -7386,13 +7388,33 @@ images/menu/menu_pause_150.png -text
images/menu/menu_pause_200.png -text
images/menu/menu_project_add.png -text svneol=unset#image/png
images/menu/menu_project_close.png -text svneol=unset#image/png
images/menu/menu_project_close_150.png -text
images/menu/menu_project_close_200.png -text
images/menu/menu_project_from_file.png -text
images/menu/menu_project_from_file_150.png -text
images/menu/menu_project_from_file_200.png -text
images/menu/menu_project_inspector.png -text svneol=unset#image/png
images/menu/menu_project_inspector_150.png -text
images/menu/menu_project_inspector_200.png -text
images/menu/menu_project_new.png -text
images/menu/menu_project_new_150.png -text
images/menu/menu_project_new_200.png -text
images/menu/menu_project_open.png -text svneol=unset#image/png
images/menu/menu_project_open_150.png -text
images/menu/menu_project_open_200.png -text
images/menu/menu_project_open_recent.png -text
images/menu/menu_project_open_recent_150.png -text
images/menu/menu_project_open_recent_200.png -text
images/menu/menu_project_options.png -text svneol=unset#image/png
images/menu/menu_project_options_150.png -text
images/menu/menu_project_options_200.png -text
images/menu/menu_project_remove.png -text svneol=unset#image/png
images/menu/menu_project_save.png -text svneol=unset#image/png
images/menu/menu_project_saveas.png -text svneol=unset#image/png
images/menu/menu_project_save_150.png -text
images/menu/menu_project_save_200.png -text
images/menu/menu_project_save_as.png -text
images/menu/menu_project_save_as_150.png -text
images/menu/menu_project_save_as_200.png -text
images/menu/menu_quick_compile.png -text svneol=unset#image/png
images/menu/menu_redo.png -text svneol=unset#image/png
images/menu/menu_redo_150.png -text
@ -7512,7 +7534,11 @@ images/menu/menu_unindent_150.png -text
images/menu/menu_unindent_200.png -text
images/menu/menu_view_anchor_editor.png -text svneol=unset#image/png
images/menu/menu_view_code_browser.png -text
images/menu/menu_view_code_browser_150.png -text
images/menu/menu_view_code_browser_200.png -text
images/menu/menu_view_code_explorer.png -text svneol=unset#image/png
images/menu/menu_view_code_explorer_150.png -text
images/menu/menu_view_code_explorer_200.png -text
images/menu/menu_view_components.png -text
images/menu/menu_view_components_150.png -text
images/menu/menu_view_components_200.png -text
@ -7525,7 +7551,9 @@ images/menu/menu_view_inspector_200.png -text
images/menu/menu_view_messages.png -text
images/menu/menu_view_messages_150.png -text
images/menu/menu_view_messages_200.png -text
images/menu/menu_view_rectriction_browser.png -text
images/menu/menu_view_restriction_browser.png -text
images/menu/menu_view_restriction_browser_150.png -text
images/menu/menu_view_restriction_browser_200.png -text
images/menu/menu_view_search_results.png -text
images/menu/menu_view_search_results_150.png -text
images/menu/menu_view_search_results_200.png -text

View File

@ -1134,7 +1134,7 @@ begin
CreateMenuItem(ParentMI,itmViewFPDocEditor,'itmViewFPDocEditor',lisFPDocEditor);
CreateMenuItem(ParentMI,itmViewCodeBrowser,'itmViewCodeBrowser',lisMenuViewCodeBrowser, 'menu_view_code_browser');
CreateMenuItem(ParentMI,itmSourceUnitDependencies,'itmSourceUnitDependencies',lisMenuViewUnitDependencies);
CreateMenuItem(ParentMI,itmViewRestrictionBrowser,'itmViewRestrictionBrowser',lisMenuViewRestrictionBrowser, 'menu_view_rectriction_browser');
CreateMenuItem(ParentMI,itmViewRestrictionBrowser,'itmViewRestrictionBrowser',lisMenuViewRestrictionBrowser, 'menu_view_restriction_browser');
CreateMenuItem(ParentMI,itmViewComponents,'itmViewComponents',lisMenuViewComponents, 'menu_view_components');
CreateMenuItem(ParentMI,itmJumpHistory,'itmJumpHistory',lisMenuViewJumpHistory);
CreateMenuItem(ParentMI,itmMacroListView,'itmMacroListView',lisMenuMacroListView);
@ -1266,19 +1266,19 @@ begin
with MainIDEBar do begin
CreateMenuSeparatorSection(mnuProject,itmProjectNewSection,'itmProjectNewSection');
ParentMI:=itmProjectNewSection;
CreateMenuItem(ParentMI,itmProjectNew,'itmProjectNew',lisMenuNewProject, 'item_project');
CreateMenuItem(ParentMI,itmProjectNew,'itmProjectNew',lisMenuNewProject, 'menu_project_new');
CreateMenuItem(ParentMI,itmProjectNewFromFile,'itmProjectNewFromFile',lisMenuNewProjectFromFile, 'menu_project_from_file');
CreateMenuSeparatorSection(mnuProject,itmProjectOpenSection,'itmProjectOpenSection');
ParentMI:=itmProjectOpenSection;
CreateMenuItem(ParentMI,itmProjectOpen,'itmProjectOpen',lisMenuOpenProject,'menu_project_open');
CreateMenuSubSection(ParentMI,itmProjectRecentOpen,'itmProjectRecentOpen',lisMenuOpenRecentProject);
CreateMenuSubSection(ParentMI,itmProjectRecentOpen,'itmProjectRecentOpen',lisMenuOpenRecentProject,'menu_project_open_recent');
CreateMenuItem(ParentMI,itmProjectClose,'itmProjectClose',lisMenuCloseProject, 'menu_project_close');
CreateMenuSeparatorSection(mnuProject,itmProjectSaveSection,'itmProjectSaveSection');
ParentMI:=itmProjectSaveSection;
CreateMenuItem(ParentMI,itmProjectSave,'itmProjectSave',lisMenuSaveProject, 'menu_project_save');
CreateMenuItem(ParentMI,itmProjectSaveAs,'itmProjectSaveAs',lisMenuSaveProjectAs, 'menu_project_saveas');
CreateMenuItem(ParentMI,itmProjectSaveAs,'itmProjectSaveAs',lisMenuSaveProjectAs, 'menu_project_save_as');
CreateMenuItem(ParentMI, itmProjectResaveFormsWithI18n, 'itmProjectResaveFo'
+'rmsWithI18n', lisMenuResaveFormsWithI18n);
CreateMenuItem(ParentMI,itmProjectPublish,'itmProjectPublish',lisMenuPublishProject);

View File

@ -88,6 +88,9 @@ items directory:
item_form.png
item_form_150.png
item_form_200.png
item_project.png
item_project_150.png
item_project_200.png
item_project_source.png
item_project_source_150.png
item_project_source_200.png
@ -181,6 +184,33 @@ menu_new_unit_200.png
menu_pause.png
menu_pause_150.png
menu_pause_200.png
menu_project_close.png
menu_project_close_150.png
menu_project_close_200.png
menu_project_from_file.png
menu_project_from_file_150.png
menu_project_from_file_200.png
menu_project_inspector.png
menu_project_inspector_150.png
menu_project_inspector_200.png
menu_project_new.png
menu_project_new_150.png
menu_project_new_200.png
menu_project_open.png
menu_project_open_150.png
menu_project_open_200.png
menu_project_open_recent.png
menu_project_open_recent_150.png
menu_project_open_recent_200.png
menu_project_options.png
menu_project_options_150.png
menu_project_options_200.png
menu_project_save.png
menu_project_save_150.png
menu_project_save_200.png
menu_project_save_as.png
menu_project_save_as_150.png
menu_project_save_as_200.png
menu_redo.png
menu_redo_150.png
menu_redo_200.png
@ -284,6 +314,12 @@ menu_undo_200.png
menu_unindent.png
menu_unindent_150.png
menu_unindent_200.png
menu_view_code_browser.png
menu_view_code_browser_150.png
menu_view_code_browser_200.png
menu_view_code_explorer.png
menu_view_code_explorer_150.png
menu_view_code_explorer_200.png
menu_view_components.png
menu_view_components_150.png
menu_view_components_200.png
@ -296,6 +332,9 @@ menu_view_inspector_200.png
menu_view_messages.png
menu_view_messages_150.png
menu_view_messages_200.png
menu_view_restriction_browser.png
menu_view_restriction_browser_150.png
menu_view_restriction_browser_200.png
menu_view_search_results.png
menu_view_search_results_150.png
menu_view_search_results_200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 680 B

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 358 B

After

Width:  |  Height:  |  Size: 517 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 474 B

After

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 586 B

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

View File

@ -217,6 +217,8 @@ items/item_keyboard.png
items/item_library.png
items/item_package.png
items/item_project.png
items/item_project_150.png
items/item_project_200.png
items/item_project_source.png
items/item_project_source_150.png
items/item_project_source_200.png
@ -336,13 +338,33 @@ menu/menu_pause_150.png
menu/menu_pause_200.png
menu/menu_project_add.png
menu/menu_project_close.png
menu/menu_project_close_150.png
menu/menu_project_close_200.png
menu/menu_project_from_file.png
menu/menu_project_from_file_150.png
menu/menu_project_from_file_200.png
menu/menu_project_inspector.png
menu/menu_project_inspector_150.png
menu/menu_project_inspector_200.png
menu/menu_project_new.png
menu/menu_project_new_150.png
menu/menu_project_new_200.png
menu/menu_project_open.png
menu/menu_project_open_150.png
menu/menu_project_open_200.png
menu/menu_project_open_recent.png
menu/menu_project_open_recent_150.png
menu/menu_project_open_recent_200.png
menu/menu_project_options.png
menu/menu_project_options_150.png
menu/menu_project_options_200.png
menu/menu_project_remove.png
menu/menu_project_save.png
menu/menu_project_saveas.png
menu/menu_project_save_150.png
menu/menu_project_save_200.png
menu/menu_project_save_as.png
menu/menu_project_save_as_150.png
menu/menu_project_save_as_200.png
menu/menu_quick_compile.png
menu/menu_redo.png
menu/menu_redo_150.png
@ -462,7 +484,11 @@ menu/menu_unindent_150.png
menu/menu_unindent_200.png
menu/menu_view_anchor_editor.png
menu/menu_view_code_browser.png
menu/menu_view_code_browser_150.png
menu/menu_view_code_browser_200.png
menu/menu_view_code_explorer.png
menu/menu_view_code_explorer_150.png
menu/menu_view_code_explorer_200.png
menu/menu_view_components.png
menu/menu_view_components_150.png
menu/menu_view_components_200.png
@ -475,7 +501,9 @@ menu/menu_view_inspector_200.png
menu/menu_view_messages.png
menu/menu_view_messages_150.png
menu/menu_view_messages_200.png
menu/menu_view_rectriction_browser.png
menu/menu_view_restriction_browser.png
menu/menu_view_restriction_browser_150.png
menu/menu_view_restriction_browser_200.png
menu/menu_view_search_results.png
menu/menu_view_search_results_150.png
menu/menu_view_search_results_200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 736 B

After

Width:  |  Height:  |  Size: 763 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 663 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 786 B

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 730 B

After

Width:  |  Height:  |  Size: 672 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 720 B

After

Width:  |  Height:  |  Size: 626 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1010 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 760 B

After

Width:  |  Height:  |  Size: 477 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 985 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1009 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 816 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 365 B

After

Width:  |  Height:  |  Size: 616 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 951 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 B

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 498 B

After

Width:  |  Height:  |  Size: 957 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 665 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 710 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 299 B

After

Width:  |  Height:  |  Size: 305 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 402 B

After

Width:  |  Height:  |  Size: 402 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 515 B

After

Width:  |  Height:  |  Size: 568 B