mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-24 00:27:06 +02:00
Tools: GLazRes, a new GUI version of LazRes. Issue #21694, patch from Bart Broersma
git-svn-id: trunk@41122 -
This commit is contained in:
parent
4276260f19
commit
32757eca71
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -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
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
19
tools/glazres/glazres.lpr
Normal 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.
|
||||
|
Loading…
Reference in New Issue
Block a user