Tools: GLazRes, a new GUI version of LazRes. Issue #21694, patch from Bart Broersma

git-svn-id: trunk@41122 -
This commit is contained in:
juha 2013-05-11 08:15:48 +00:00
parent 4276260f19
commit 32757eca71
3 changed files with 21 additions and 0 deletions

2
.gitattributes vendored
View File

@ -7756,6 +7756,8 @@ tools/debugserver/frmoptions.pp svneol=native#text/pascal
tools/delete_non_svn_files.pl svneol=native#text/plain
tools/find_missing_lpl_files.sh svneol=native#text/plain
tools/getallpofiles.sh -text svneol=native#application/x-sh
tools/glazres/glazres.ico -text svneol=unset#image/ico
tools/glazres/glazres.lpr svneol=native#text/pascal
tools/iconvtable.lpi svneol=native#text/plain
tools/iconvtable.pas svneol=native#text/plain
tools/install/README.txt svneol=native#text/plain

BIN
tools/glazres/glazres.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

19
tools/glazres/glazres.lpr Normal file
View File

@ -0,0 +1,19 @@
program glazres;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, glazresmain;
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TGLazResForm, GLazResForm);
Application.Run;
end.