mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 07:29:34 +02:00
cody: fixed icon
git-svn-id: trunk@42980 -
This commit is contained in:
parent
3674b3d5bf
commit
4470449f12
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -844,11 +844,13 @@ components/codetools/h2pastool.pas svneol=native#text/plain
|
||||
components/codetools/ide/Makefile svneol=native#text/plain
|
||||
components/codetools/ide/Makefile.compiled svneol=native#text/plain
|
||||
components/codetools/ide/Makefile.fpc svneol=native#text/plain
|
||||
components/codetools/ide/README.txt svneol=native#text/plain
|
||||
components/codetools/ide/addassignmethoddlg.lfm svneol=native#text/plain
|
||||
components/codetools/ide/addassignmethoddlg.pas svneol=native#text/plain
|
||||
components/codetools/ide/addwithblockdlg.lfm svneol=native#text/plain
|
||||
components/codetools/ide/addwithblockdlg.pas svneol=native#text/plain
|
||||
components/codetools/ide/cody.lpk svneol=native#text/plain
|
||||
components/codetools/ide/cody.lrs svneol=native#text/plain
|
||||
components/codetools/ide/cody.pas svneol=native#text/pascal
|
||||
components/codetools/ide/codycopydeclaration.pas svneol=native#text/plain
|
||||
components/codetools/ide/codyctrls.pas svneol=native#text/plain
|
||||
@ -877,6 +879,7 @@ components/codetools/ide/newidewnddlg.lfm svneol=native#text/plain
|
||||
components/codetools/ide/newidewnddlg.pas svneol=native#text/plain
|
||||
components/codetools/ide/ppulistdlg.lfm svneol=native#text/plain
|
||||
components/codetools/ide/ppulistdlg.pas svneol=native#text/pascal
|
||||
components/codetools/ide/tcodytreeview.png -text svneol=unset#image/png
|
||||
components/codetools/ide/templateidedockablewindow.lfm svneol=native#text/plain
|
||||
components/codetools/ide/templateidedockablewindow.pas svneol=native#text/plain
|
||||
components/codetools/identcompletiontool.pas svneol=native#text/pascal
|
||||
|
4
components/codetools/ide/README.txt
Normal file
4
components/codetools/ide/README.txt
Normal file
@ -0,0 +1,4 @@
|
||||
How to update icons:
|
||||
|
||||
../../../tools/lazres cody.lrs tcodytreeview.png
|
||||
|
14
components/codetools/ide/cody.lrs
Normal file
14
components/codetools/ide/cody.lrs
Normal file
@ -0,0 +1,14 @@
|
||||
LazarusResources.Add('tcodytreeview','PNG',[
|
||||
#137'PNG'#13#10#26#10#0#0#0#13'IHDR'#0#0#0#24#0#0#0#24#8#6#0#0#0#224'w='#248#0
|
||||
+#0#0#230'IDATx^'#205#150'!'#18#194'0'#16'E'#211'L'#29#18#135#224#0#136'`q5'
|
||||
+#152#128#233'E@'#231#8#213#229'"U('#12'p'#131#8'n'#129#196' '#8#179#162#221
|
||||
+'L+'#150'Lvg'#248'3'#233'D'#229#245#255#252#206#182#8'!(I'#149#240'p'#238#196
|
||||
+'N'#177#214#168#170#170#10#173#4#180#183#235#216#1#170'i'#14','#128#251#245
|
||||
+'6'#236'E'#28'|T'#136#29'L'#213#181#179'a_'#31'_'#153#151#156' c'#204#4#224
|
||||
+#189'O'#0#224'[C'#179#240'N'#240'0^'#7#0#217',\'#12#230#2'`'#163#186#214#17
|
||||
+'Q'#161'3'#18'@'#196#149#18'UzM'#1#242'~,'#161'a'#176#248#1#224#224'|y'#170
|
||||
+#221'v>'#142#171'_'#185'5'#197'K'#174'WD'#254#9#14' '#22'h'#18#17'K'#6#128
|
||||
+#138#5#163#145'o'#17#13#144#248#232#244#143#13#234#29#252'c'#139#132'U'#142
|
||||
+''''#17#12#11'N'#233'xH'#195#225#220#18#255'm'#249#2#151'TeJ'#211#8#27#6#0#0
|
||||
+#0#0'IEND'#174'B`'#130
|
||||
]);
|
@ -84,7 +84,6 @@ var
|
||||
CmdCatCodeTools: TIDECommandCategory;
|
||||
CmdCatFileMenu: TIDECommandCategory;
|
||||
PPUListCommand: TIDECommand;
|
||||
TVIconRes: TLResource;
|
||||
ShowCodeNodeInfoCommand: TIDECommand;
|
||||
CmdCatView: TIDECommandCategory;
|
||||
ViewCodyWindowCommand: TIDECommand;
|
||||
@ -180,8 +179,6 @@ begin
|
||||
{$ENDIF};
|
||||
|
||||
// Components - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
TVIconRes:=LazarusResources.Find('TTreeView');
|
||||
LazarusResources.Add(TCodyTreeView.ClassName,TVIconRes.ValueType,TVIconRes.Value);
|
||||
RegisterComponents('LazControls',[TCodyTreeView]);
|
||||
|
||||
// Windows - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
@ -200,5 +197,8 @@ begin
|
||||
SourceEditorManagerIntf.RegisterCopyPasteEvent(@Cody.SrcEditCopyPaste);
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I cody.lrs}
|
||||
|
||||
end.
|
||||
|
||||
|
BIN
components/codetools/ide/tcodytreeview.png
Normal file
BIN
components/codetools/ide/tcodytreeview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 287 B |
Loading…
Reference in New Issue
Block a user