mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 22:58:50 +02:00
ide: icons for some windows titles
git-svn-id: trunk@46069 -
This commit is contained in:
parent
8db03dc81d
commit
428a961779
5
.gitattributes
vendored
5
.gitattributes
vendored
@ -6004,6 +6004,11 @@ images/states/state_unknown.png -text svneol=unset#image/png
|
||||
images/states/state_warning.png -text svneol=unset#image/png
|
||||
images/template.png -text svneol=unset#image/png
|
||||
images/vase_trans.xpm -text svneol=native#image/x-xpixmap
|
||||
images/windows/win_formeditor.ico -text
|
||||
images/windows/win_main.ico -text
|
||||
images/windows/win_messages.ico -text
|
||||
images/windows/win_objectinspector.ico -text
|
||||
images/windows/win_sourceeditor.ico -text
|
||||
install/lazarus-mime.xml svneol=native#text/plain
|
||||
install/lazarus.desktop svneol=native#text/plain
|
||||
install/man/Makefile svneol=native#text/plain
|
||||
|
@ -98,7 +98,10 @@ procedure TMessagesView.FormCreate(Sender: TObject);
|
||||
begin
|
||||
IDEMessagesWindow:=Self;
|
||||
Caption:=lisMenuViewMessages;
|
||||
|
||||
try
|
||||
IDEMessagesWindow.Icon.LoadFromResourceName(HInstance, 'WIN_MESSAGES');
|
||||
except
|
||||
end;
|
||||
MessagesFrame1.MessagesCtrl.OnOpenMessage:=@OnOpenMessage;
|
||||
MessagesFrame1.MessagesCtrl.OnOptionsChanged:=@OnMsgCtrlOptsChanged;
|
||||
|
||||
|
@ -11188,6 +11188,11 @@ begin
|
||||
ObjectInspector1.PropertyEditorHook:=GlobalDesignHook;
|
||||
if FormEditor1<>nil then
|
||||
FormEditor1.Obj_Inspector := ObjectInspector1;
|
||||
|
||||
try
|
||||
ObjectInspector1.Icon.LoadFromResourceName(HInstance, 'WIN_OBJECTINSPECTOR');
|
||||
except
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TMainIDE.OnApplicationUserInput(Sender: TObject; Msg: Cardinal);
|
||||
|
@ -496,6 +496,10 @@ begin
|
||||
inherited CreateNew(TheOwner, 1);
|
||||
AllowDropFiles:=true;
|
||||
OnDropFiles:=@MainIDEBarDropFiles;
|
||||
try
|
||||
Icon.LoadFromResourceName(HInstance, 'WIN_MAIN');
|
||||
except
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TMainIDEBar.HideIDE;
|
||||
|
@ -5717,6 +5717,11 @@ begin
|
||||
Application.AddOnMinimizeHandler(@OnApplicationDeactivate);
|
||||
|
||||
FStopBtnIdx := IDEImages.LoadImage(16, 'menu_stop');
|
||||
|
||||
try
|
||||
Icon.LoadFromResourceName(HInstance, 'WIN_SOURCEEDITOR');
|
||||
except
|
||||
end;
|
||||
end;
|
||||
|
||||
destructor TSourceNotebook.Destroy;
|
||||
|
Binary file not shown.
@ -252,3 +252,8 @@ packages/pkg_unit.png
|
||||
packages/pkg_package_autoinstall.png
|
||||
packages/pkg_add.png
|
||||
ide_icon48x48.png
|
||||
windows/win_objectinspector.ico
|
||||
windows/win_messages.ico
|
||||
windows/win_sourceeditor.ico
|
||||
windows/win_main.ico
|
||||
windows/win_formeditor.ico
|
||||
|
BIN
images/windows/win_formeditor.ico
Normal file
BIN
images/windows/win_formeditor.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
images/windows/win_main.ico
Normal file
BIN
images/windows/win_main.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
images/windows/win_messages.ico
Normal file
BIN
images/windows/win_messages.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
images/windows/win_objectinspector.ico
Normal file
BIN
images/windows/win_objectinspector.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
images/windows/win_sourceeditor.ico
Normal file
BIN
images/windows/win_sourceeditor.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
Loading…
Reference in New Issue
Block a user