public BoxModule(Ferda.Modules.BoxModulePrx iceBoxModulePrx, BoxModuleFactoryCreator madeInCreator, Helper helper, ModulesManager modulesManager) { this.iceBoxModulePrx = iceBoxModulePrx; this.madeInCreator = madeInCreator; this.iceIdentity = Ice.Util.identityToString( iceBoxModulePrx.ice_getIdentity()); this.helper = helper; this.modulesManager = modulesManager; this.managersLocatorI = this.helper.ManagersEngineI.ManagersLocatorI; foreach(PropertyInfo property in madeInCreator.Properties) { this.propertyNames.Add(property.name); } //string[] driver = this.MadeInCreator.PropertyDrivingLabel; //if (driver != null && driver.Length != 0) //{ // propertyDrivingLabel = driver[0]; //} }
/// <summary> /// Ice run /// </summary> /// <param name="boxModuleParam">BoxModuleParams</param> /// <param name="localePrefs">localeprefs</param> /// <param name="manager">Manager proxy</param> /// <param name="__current">Ice context</param> public override void run(Ferda.Modules.BoxModulePrx boxModuleParam, string[] localePrefs, ManagersEnginePrx manager, Ice.Current __current) { string locale; try { locale = localePrefs[0]; localizationString = locale; locale = "Ferda.FrontEnd.AddIns.ExplainTable.Localization_" + locale; resManager = new ResourceManager(locale, Assembly.GetExecutingAssembly()); } catch { } Ferda.Modules.Boxes.DataMiningCommon.DataMatrix.DataMatrixFunctionsPrx prx = Ferda.Modules.Boxes.DataMiningCommon.DataMatrix.DataMatrixFunctionsPrxHelper.checkedCast(boxModuleParam.getFunctions()); try { string label = manager.getProjectInformation().getUserLabel(Ice.Util.identityToString(boxModuleParam.ice_getIdentity())); Ferda.FrontEnd.AddIns.ExplainTable.ExplainTable control = new ExplainTable(localePrefs, prx.explain(), prx.getDataMatrixInfo(), ownerOfAddIn); this.ownerOfAddIn.ShowDockableControl(control, resManager.GetString("Explain") + " " + label); } catch (Ferda.Modules.NoConnectionInSocketError) { MessageBox.Show(resManager.GetString("BoxNotConnected"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } catch (Ferda.Modules.BadParamsError ex) { if (ex.restrictionType == Ferda.Modules.restrictionTypeEnum.DbConnectionString) { MessageBox.Show(resManager.GetString("BadConnectionString"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else if (ex.restrictionType == Ferda.Modules.restrictionTypeEnum.DbTable) { MessageBox.Show(resManager.GetString("NoDataMatrix"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } }
/// <summary> /// Run method /// </summary> /// <param name="boxModuleParam"></param> /// <param name="localePrefs">Locale prefs</param> /// <param name="manager">Manager proxy</param> /// <param name="__current">Ice context</param> public override void run(Ferda.Modules.BoxModulePrx boxModuleParam, string[] localePrefs, ManagersEnginePrx manager, Ice.Current __current) { string locale; try { locale = localePrefs[0]; localizationString = locale; locale = "Ferda.FrontEnd.AddIns.ColumnFr.Localization_" + locale; resManager = new ResourceManager(locale, Assembly.GetExecutingAssembly()); } catch { } Ferda.Modules.Boxes.DataMiningCommon.Column.ColumnFunctionsPrx prx = Ferda.Modules.Boxes.DataMiningCommon.Column.ColumnFunctionsPrxHelper.checkedCast(boxModuleParam.getFunctions()); Ferda.Modules.Boxes.DataMiningCommon.Attributes.Attribute.AttributeFunctionsPrx prx1 = Ferda.Modules.Boxes.DataMiningCommon.Attributes.Attribute.AttributeFunctionsPrxHelper.checkedCast(boxModuleParam.getFunctions()); try { ColumnInfo columnInfo = prx.getColumnInfo(); string label = manager.getProjectInformation().getUserLabel(Ice.Util.identityToString(boxModuleParam.ice_getIdentity())); Ferda.FrontEnd.AddIns.ColumnFrequency.ColumnFrequency control = new ColumnFrequency(localePrefs, columnInfo, ownerOfAddIn); this.ownerOfAddIn.ShowDockableControl(control, label + " " + resManager.GetString("ColumnFrequency")); } catch (Ferda.Modules.BadParamsError ex) { if (ex.restrictionType == Ferda.Modules.restrictionTypeEnum.DbConnectionString) { MessageBox.Show(resManager.GetString("BadConnectionString"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else if (ex.restrictionType == Ferda.Modules.restrictionTypeEnum.DbTable) { MessageBox.Show(resManager.GetString("NoDataMatrix"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else if (ex.restrictionType == Ferda.Modules.restrictionTypeEnum.DbColumn) { MessageBox.Show(resManager.GetString("BadColumnSelectExpression"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } //else { MessageBox.Show(resManager.GetString("InvalidParameters"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } catch (Ferda.Modules.NoConnectionInSocketError) { MessageBox.Show(resManager.GetString("BoxNotConnected"), resManager.GetString("Error"), MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } }