Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
628 B

3 years ago
  1. program deskewgui;
  2. uses
  3. {$IFDEF UNIX}
  4. {$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}
  7. clocale,
  8. {$ENDIF}
  9. Interfaces, // this includes the LCL widgetset
  10. Forms,
  11. { you can add units after this }
  12. DataModule, MainForm, AdvOptionsForm, AboutForm, Runner, Utils, Options,
  13. Config;
  14. {$R *.res}
  15. begin
  16. Application.Title := 'Deskew GUI';
  17. RequireDerivedFormResource:=True;
  18. Application.Initialize;
  19. Application.CreateForm(TModule, Module);
  20. Application.CreateForm(TFormMain, FormMain);
  21. Application.CreateForm(TFormAdvOptions, FormAdvOptions);
  22. Application.CreateForm(TFormAbout, FormAbout);
  23. Application.Run;
  24. end.