lazarus-ccr/applications/fpbrowser/fpbrowser.dpr
sekelsenmat 2822429864 fpbrowser: Fixes the about dialog
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2123 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-11-10 20:57:07 +00:00

36 lines
884 B
ObjectPascal

program fpbrowser;
{$define FPBROWSER_TURBOPOWERIPRO}
{.$define FPBROWSER_THTMLCOMP}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Interfaces,
Forms,
printer4lazarus, turbopoweripro, customdrawn, laz_synapse,
mainform {Form1},
Submit in 'Submit.pas' {SubmitForm},
dlgabout in 'Htmlabt.pas' {AboutBox},
(* Fontdlg in 'Fontdlg.pas' {FontForm},
PreviewForm in 'PreviewForm.pas' {PreviewForm},
Gopage in 'Gopage.pas' {GoPageForm},
PrintStatusForm in 'PrintStatusForm.pas' {PrnStatusForm},
*)
ImgForm in 'ImgForm.pas', pageloader, browsermodules,
{$ifdef FPBROWSER_THTMLCOMP}
viewer_thtmlcomp,
{$endif}
{$ifdef FPBROWSER_TURBOPOWERIPRO}
viewer_ipro,
{$endif}
browserviewer, mod_braille, browserconstants;
begin
Application.Initialize;
Application.CreateForm(TformBrowser, formBrowser);
Application.CreateForm(TSubmitForm, SubmitForm);
Application.Run;
end.