program ImgMarkupTool; { [ImgMarkupTool] [1.7] Delphi 2005 April 2008 LICENSE The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at "http://www.mozilla.org/MPL/" Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is "[ImgMarkupTool.dpr]". The Initial Developer of the Original Code is Martin Holmes (Victoria, BC, Canada, "http://www.mholmes.com/"). Copyright (C) 2005-8 Martin Holmes and the University of Victoria Computing and Media Centre. The code was co-developed for university and personal projects, and rights are shared by Martin Holmes and the University of Victoria. All Rights Reserved. } {%ToDo 'ImgMarkupTool.todo'} uses Forms, Main in 'Main.pas' {ufrmMain}, dlgAnnCat in 'dlgAnnCat.pas' {ufrmAnnCat}, AnnotationCategories in 'AnnotationCategories.pas', Annotation in 'Annotation.pas', IMTDocument in 'IMTDocument.pas', dlgCategoryProperties in 'dlgCategoryProperties.pas' {ufrmCategoryProperties}, IMTDocGlobals in 'IMTDocGlobals.pas', XDOM_4_1 in '..\..\3rd_party_components\xdom\Xdom_4_1\XDOM_4_1.pas', StringFunctions in '..\StrFunc\StringFunctions.pas', FormState in '..\SavingState\FormState.pas', GenFunctions in '..\GenFunctions\GenFunctions.pas', TeiHeader in 'TeiHeader.pas' {ufrmTeiHeader}, RecentFiles in '..\RecentFiles\RecentFiles.pas', Translate in '..\Translate\Translate.pas' {ufrmTranslate}, XMLRoutines in '..\XML\XMLRoutines.pas', XMLGlobals in '..\XML\XMLGlobals.pas', Browsers in '..\Browsers\Browsers.pas', XMLUtilities in '..\XML\XMLUtilities.pas' {ufrmXMLUtilities}, SplashAbout in '..\SplashAbout\SplashAbout.pas', VersionInfo in '..\VersionInfo\VersionInfo.pas', mdhTranslate in '..\Translate\mdhTranslate.pas', Preferences in '..\Preferences\Preferences.pas' {ufrmPreferences}, libxslt in '..\..\3rd_party_components\libxml2\libxslt.pas', libxml2 in '..\..\3rd_party_components\libxml2\libxml2.pas', IntList in '..\mdhClasses\IntList.pas', dlgCategoryManager in 'dlgCategoryManager.pas' {ufrmCategoryManager: TTntForm}, mdhGraphics in '..\mdhGraphics\mdhGraphics.pas', mdhLibxml2 in '..\mdhLibxml2\mdhLibxml2.pas', FileFunctions in '..\FileFunc\FileFunctions.pas', ShBrowseU in '..\FileFunc\ShBrowseU.pas', mdhHelp in '..\mdhHelp\mdhHelp.pas', zipprogress in '..\zipfunc\zipprogress.pas' {udlgZipProgress: TTntForm}, zipmasterfunc in '..\zipmasterfunc\zipmasterfunc.pas' {ufrmZipMasterFunc: TTntForm}, IconsIncluder in '..\icons\IconsIncluder.pas' {IconsInc}, Thumbnail in 'Thumbnail.pas' {ufrmThumbnail: TTntForm}, mdhSpin in '..\mdhSpinEdit\mdhSpin.pas', Settings in 'Settings.pas' {ufrmSettings: TTntForm}, mdhReplaceDialog in '..\ReplaceDialog\mdhReplaceDialog.pas' {ufrmReplaceDialog: TTntForm}, IMTSearch in 'IMTSearch.pas', FileOverwriteConfirm in '..\FileOverwriteConfirm\FileOverwriteConfirm.pas' {ufrmFileOverwriteConfirm: TTntForm}, InsertTag in '..\mdhInsertTag\InsertTag.pas' {ufrmInsertTag: TTntForm}; {$R *.RES} begin Application.Initialize; Application.Title := 'Image Markup Tool'; Application.CreateForm(TufrmMain, ufrmMain); Application.CreateForm(TufrmAnnCat, ufrmAnnCat); Application.CreateForm(TufrmPreferences, ufrmPreferences); Application.CreateForm(TufrmCategoryProperties, ufrmCategoryProperties); Application.CreateForm(TufrmTeiHeader, ufrmTeiHeader); Application.CreateForm(TufrmTranslate, ufrmTranslate); Application.CreateForm(TufrmXMLUtilities, ufrmXMLUtilities); Application.CreateForm(TufrmCategoryManager, ufrmCategoryManager); Application.CreateForm(TufrmFileOverwriteConfirm, ufrmFileOverwriteConfirm); Application.CreateForm(TudlgZipProgress, udlgZipProgress); Application.CreateForm(TufrmZipMasterFunc, ufrmZipMasterFunc); Application.CreateForm(TIconsInc, IconsInc); Application.CreateForm(TufrmThumbnail, ufrmThumbnail); Application.CreateForm(TufrmSettings, ufrmSettings); Application.CreateForm(TufrmReplaceDialog, ufrmReplaceDialog); Application.CreateForm(TufrmInsertTag, ufrmInsertTag); Application.Run; end.