Difference between revisions of "How to add icons my package components"

From Free Pascal wiki
Jump to navigationJump to search
Line 8: Line 8:
 
We use lazres.exe to create Lazarus resource file .lrs from .png files:
 
We use lazres.exe to create Lazarus resource file .lrs from .png files:
  
    c:\lazarus\tools\lazres.exe my_icons.lrs *.png
+
  c:\lazarus\tools\lazres.exe my_icons.lrs *.png
  
 
Into package my_pkg we add file my_icons.lrs (tab "Add file", type LRS).
 
Into package my_pkg we add file my_icons.lrs (tab "Add file", type LRS).
 
At least one unit in package must have "initialization" in which we must write
 
At least one unit in package must have "initialization" in which we must write
  
    {$I my_icons.lrs}
+
  {$I my_icons.lrs}
  
After installing package, component pallete must have two icons.
+
Also write "uses LResources" in this unit.

Revision as of 13:30, 25 July 2015

We have package "my_pkg" with components TComp1, TComp2 and want to add icons for components to IDE component pallete.

First we have to make .png 24x24 files: tcomp1.png, tcomp2.png. If you want to get them from Delphi package, you can use the free "XN Resource Editor" to export icons from .dcr files.

Now we need app "lazres". It's located in "tools" subfolder of IDE folder. Compile it under Windows: "c:\lazarus\tools\lazres.lpi" to lazres.exe. We use lazres.exe to create Lazarus resource file .lrs from .png files:

 c:\lazarus\tools\lazres.exe my_icons.lrs *.png

Into package my_pkg we add file my_icons.lrs (tab "Add file", type LRS). At least one unit in package must have "initialization" in which we must write

 {$I my_icons.lrs}

Also write "uses LResources" in this unit.