using FastReport.Data;
using FastReport.Dialog;
using FastReport.Utils;
using FastReport.Wizards;
namespace FastReport
{
///
/// The FastReport.dll assembly initializer.
///
public sealed class AssemblyInitializerDesignExt : AssemblyInitializerBase
{
#region Public Constructors
///
/// Registers all standard objects, wizards, export filters.
///
public AssemblyInitializerDesignExt()
{
RegisterObjects();
RegisterMethods();
}
#endregion Public Constructors
#region Private Methods
private void RegisterObjects()
{
// data items
#if !COMMUNITY
#if !MONO
RegisteredObjects.InternalAddConnection(typeof(MsAccessDataConnection));
RegisteredObjects.InternalAddConnection(typeof(OleDbDataConnection));
RegisteredObjects.InternalAddConnection(typeof(OdbcDataConnection));
#endif
#endif
RegisteredObjects.InternalAddConnection(typeof(MsSqlDataConnection));
#if !COMMUNITY
RegisteredObjects.InternalAdd(typeof(MaskedTextBoxControl), "DialogPage", 147, 13);
RegisteredObjects.InternalAdd(typeof(NumericUpDownControl), "DialogPage", 146, 14);
RegisteredObjects.InternalAdd(typeof(PanelControl), "DialogPage", 144, 15);
RegisteredObjects.InternalAdd(typeof(GridControl), "DialogPage", 122, 16);
RegisteredObjects.InternalAdd(typeof(DataSelectorControl), "DialogPage", 128, 17);
RegisteredObjects.InternalAdd(typeof(ListViewControl), "DialogPage", 203, 18);
RegisteredObjects.InternalAdd(typeof(RichTextBoxControl), "DialogPage", 205, 19);
RegisteredObjects.InternalAdd(typeof(TreeViewControl), "DialogPage", 204, 20);
#endif
// wizards
RegisteredObjects.AddWizard(typeof(BlankReportWizard), 134, "Wizards,BlankReport", ItemWizardEnum.Report);
RegisteredObjects.AddWizard(typeof(InheritedReportWizard), 134, "Wizards,InheritedReport", ItemWizardEnum.Report);
RegisteredObjects.AddWizard(typeof(StandardReportWizard), 133, "Wizards,StandardReport", ItemWizardEnum.Report);
RegisteredObjects.AddWizard(typeof(LabelWizard), 133, "Wizards,Label", ItemWizardEnum.Report);
RegisteredObjects.AddWizard(typeof(ControlIdentificationSignWizard), 133, "Wizards,CISWizard", ItemWizardEnum.Report);
RegisteredObjects.AddWizard(typeof(NewPageWizard), 135, "Wizards,NewPage", ItemWizardEnum.ReportItem);
#if !COMMUNITY
RegisteredObjects.AddWizard(typeof(NewDialogWizard), 136, "Wizards,NewDialog", ItemWizardEnum.ReportItem);
#endif
RegisteredObjects.AddWizard(typeof(NewDataSourceWizard), 137, "Wizards,NewDataSource", ItemWizardEnum.ReportItem);
RegisteredObjects.AddWizard(typeof(FastM1nesweeperWizard), 250, "Wizards,FastM1nesweeper", ItemWizardEnum.Game);
// export categories
//RegisteredObjects.AddExportCategory("Uncategorized", "");
//RegisteredObjects.AddExportCategory("Office", "Export,ExportGroups,Office", 190);
//RegisteredObjects.AddExportCategory("XML", "Export,ExportGroups,XML", 191);
//RegisteredObjects.AddExportCategory("Web", "Export,ExportGroups,Web", 246);
//RegisteredObjects.AddExportCategory("Image", "Export,ExportGroups,Image", 103);
//RegisteredObjects.AddExportCategory("DataBase", "Export,ExportGroups,DataBase", 53);
//RegisteredObjects.AddExportCategory("Print", "Export,ExportGroups,Print", 195);
//RegisteredObjects.AddExportCategory("Other", "Export,ExportGroups,Other");
//options.RegisterCategories();
#if !COMMUNITY
// clouds
//RegisteredObjects.AddCloud(typeof(FtpStorageClient), "Cloud,Ftp,Name");
//RegisteredObjects.AddCloud(typeof(BoxStorageClient), "Cloud,Box,Name", 238);
//RegisteredObjects.AddCloud(typeof(DropboxStorageClient), "Cloud,Dropbox,Name", 238);
//RegisteredObjects.AddCloud(typeof(FastCloudStorageClient), "Cloud,FastCloud,Name", 238);
//RegisteredObjects.AddCloud(typeof(GoogleDriveStorageClient), "Cloud,GoogleDrive,Name", 238);
//RegisteredObjects.AddCloud(typeof(SkyDriveStorageClient), "Cloud,SkyDrive,Name", 238);
ExportsOptions options = ExportsOptions.GetInstance();
options.RegisterClouds();
// messengers
//RegisteredObjects.AddMessenger(typeof(XmppMessenger), "Messaging,Xmpp,Name");
//options.RegisterMessengers();
#endif
}
private void RegisterMethods()
{
// Does nothing
}
#endregion Private Methods
}
}