protected override void ShowEvent(QShowEvent arg1) { interceptor.Invoke("showEvent#", "showEvent(QShowEvent*)", typeof(void), typeof(QShowEvent), arg1); }
protected virtual void ShowEvent(QShowEvent arg1) { }
protected override void ShowEvent(QShowEvent e) { interceptor.Invoke("showEvent#", "showEvent(QShowEvent*)", typeof(void), typeof(QShowEvent), e); }
/// <summary> /// This event is raised when the window is shown. /// </summary> protected override void ShowEvent(QShowEvent arg1) { base.ShowEvent(arg1); // Load the main menu. this.SetMainMenu(ActionWrapper.GetMainMenu(Central.Manager.MenuManager.MainMenu)); // Load the tool bar. this.SetToolBar(ActionWrapper.GetToolBar(Central.Manager.MenuManager.ToolBar)); // Set up the workspace. Central.Manager.ToolsManager = new Moai.Platform.Linux.Tools.Manager(); //Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.ErrorListTool)); //Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.ImmediateWindowTool)); Central.Manager.ToolsManager.Show(typeof(Moai.Platform.Linux.Tools.SolutionExplorerTool)); // Show the start page. this.ShowDock(new Moai.Platform.Linux.Designers.Start.Designer(), ToolPosition.Document); }