mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 05:59:19 +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/states/state_warning.png -text svneol=unset#image/png
|
||||||
images/template.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/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-mime.xml svneol=native#text/plain
|
||||||
install/lazarus.desktop svneol=native#text/plain
|
install/lazarus.desktop svneol=native#text/plain
|
||||||
install/man/Makefile svneol=native#text/plain
|
install/man/Makefile svneol=native#text/plain
|
||||||
|
@ -98,7 +98,10 @@ procedure TMessagesView.FormCreate(Sender: TObject);
|
|||||||
begin
|
begin
|
||||||
IDEMessagesWindow:=Self;
|
IDEMessagesWindow:=Self;
|
||||||
Caption:=lisMenuViewMessages;
|
Caption:=lisMenuViewMessages;
|
||||||
|
try
|
||||||
|
IDEMessagesWindow.Icon.LoadFromResourceName(HInstance, 'WIN_MESSAGES');
|
||||||
|
except
|
||||||
|
end;
|
||||||
MessagesFrame1.MessagesCtrl.OnOpenMessage:=@OnOpenMessage;
|
MessagesFrame1.MessagesCtrl.OnOpenMessage:=@OnOpenMessage;
|
||||||
MessagesFrame1.MessagesCtrl.OnOptionsChanged:=@OnMsgCtrlOptsChanged;
|
MessagesFrame1.MessagesCtrl.OnOptionsChanged:=@OnMsgCtrlOptsChanged;
|
||||||
|
|
||||||
|
@ -11188,6 +11188,11 @@ begin
|
|||||||
ObjectInspector1.PropertyEditorHook:=GlobalDesignHook;
|
ObjectInspector1.PropertyEditorHook:=GlobalDesignHook;
|
||||||
if FormEditor1<>nil then
|
if FormEditor1<>nil then
|
||||||
FormEditor1.Obj_Inspector := ObjectInspector1;
|
FormEditor1.Obj_Inspector := ObjectInspector1;
|
||||||
|
|
||||||
|
try
|
||||||
|
ObjectInspector1.Icon.LoadFromResourceName(HInstance, 'WIN_OBJECTINSPECTOR');
|
||||||
|
except
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainIDE.OnApplicationUserInput(Sender: TObject; Msg: Cardinal);
|
procedure TMainIDE.OnApplicationUserInput(Sender: TObject; Msg: Cardinal);
|
||||||
|
@ -496,6 +496,10 @@ begin
|
|||||||
inherited CreateNew(TheOwner, 1);
|
inherited CreateNew(TheOwner, 1);
|
||||||
AllowDropFiles:=true;
|
AllowDropFiles:=true;
|
||||||
OnDropFiles:=@MainIDEBarDropFiles;
|
OnDropFiles:=@MainIDEBarDropFiles;
|
||||||
|
try
|
||||||
|
Icon.LoadFromResourceName(HInstance, 'WIN_MAIN');
|
||||||
|
except
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TMainIDEBar.HideIDE;
|
procedure TMainIDEBar.HideIDE;
|
||||||
|
@ -5717,6 +5717,11 @@ begin
|
|||||||
Application.AddOnMinimizeHandler(@OnApplicationDeactivate);
|
Application.AddOnMinimizeHandler(@OnApplicationDeactivate);
|
||||||
|
|
||||||
FStopBtnIdx := IDEImages.LoadImage(16, 'menu_stop');
|
FStopBtnIdx := IDEImages.LoadImage(16, 'menu_stop');
|
||||||
|
|
||||||
|
try
|
||||||
|
Icon.LoadFromResourceName(HInstance, 'WIN_SOURCEEDITOR');
|
||||||
|
except
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
destructor TSourceNotebook.Destroy;
|
destructor TSourceNotebook.Destroy;
|
||||||
|
Binary file not shown.
@ -252,3 +252,8 @@ packages/pkg_unit.png
|
|||||||
packages/pkg_package_autoinstall.png
|
packages/pkg_package_autoinstall.png
|
||||||
packages/pkg_add.png
|
packages/pkg_add.png
|
||||||
ide_icon48x48.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