{----------------------------------------------------------------------------- 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/MPL-1.1.html Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is: JvWizardReg.PAS, released on 2002-01-24. The Initial Developer of the Original Code is William Yu Wei. Portions created by William Yu Wei are Copyright (C) 2002 William Yu Wei. All Rights Reserved. Contributor(s): Peter Thörnqvist - converted to JVCL naming conventions on 2003-07-11 You may retrieve the latest version of this file at the Project JEDI's JVCL home page, located at http://jvcl.delphi-jedi.org Description: Jv Wizard Component Editor History: Date(mm/dd/yy) Comments 01/24/2002 First Create 01/25/2002 TJvWizardAboutDialogProperty, Added by Known Issues: -----------------------------------------------------------------------------} // $Id: JvWizardReg.pas 12461 2009-08-14 17:21:33Z obones $ unit JvWizardReg; {$I jvcl.inc} interface procedure Register; implementation uses Classes, DesignIntf, DesignEditors, JvDsgnConsts, JvWizard, JvWizardRouteMapNodes, JvWizardRouteMapSteps, JvWizardRouteMapList, JvWizardEditorForm; {$R JvWizardReg.dcr} procedure Register; const cActivePage = 'ActivePage'; cPages = 'Pages'; begin RegisterComponents(RsPaletteWizard, [TJvWizard, TJvWizardRouteMapSteps, TJvWizardRouteMapNodes, TJvWizardRouteMapList]); RegisterClasses([TJvWizardCustomPage, TJvWizardWelcomePage, TJvWizardInteriorPage]); RegisterComponentEditor(TJvWizard, TJvWizardEditor); RegisterComponentEditor(TJvWizardCustomPage, TJvWizardEditor); RegisterComponentEditor(TJvWizardWelcomePage, TJvWizardEditor); RegisterComponentEditor(TJvWizardInteriorPage, TJvWizardEditor); RegisterPropertyEditor(TypeInfo(TJvWizardCustomPage), TJvWizard, cActivePage, TJvWizardActivePageProperty); RegisterPropertyEditor(TypeInfo(TJvWizardWelcomePage), TJvWizard, cActivePage, TJvWizardActivePageProperty); RegisterPropertyEditor(TypeInfo(TJvWizardInteriorPage), TJvWizard, cActivePage, TJvWizardActivePageProperty); // JvWizard Page List Editor RegisterPropertyEditor(TypeInfo(TJvWizardPageList), TJvWizard, cPages, TJvWizardPageListProperty); end; end.