Author: cwittich Date: Thu May 28 17:03:35 2009 New Revision: 41179 URL: http://svn.reactos.org/svn/reactos?rev=41179&view=rev Log: add missing files
Added: trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.Designer.cs (with props) trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.cs (with props) Added: trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.Designer.cs URL: http://svn.reactos.org/svn/reactos/trunk/tools/reactosdbg/RosDBG/Dockable%20Objects/ToolWindow.Designer.cs?rev=41179&view=auto ============================================================================== --- trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.Designer.cs (added) +++ trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.Designer.cs [iso-8859-1] Thu May 28 17:03:35 2009 @@ -1,0 +1,38 @@ +namespace RosDBG +{ + partial class ToolWindow + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Text = "ToolWindow"; + } + + #endregion + } +} Propchange: trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.Designer.cs ------------------------------------------------------------------------------ svn:eol-style = native Added: trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.cs URL: http://svn.reactos.org/svn/reactos/trunk/tools/reactosdbg/RosDBG/Dockable%20Objects/ToolWindow.cs?rev=41179&view=auto ============================================================================== --- trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.cs (added) +++ trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.cs [iso-8859-1] Thu May 28 17:03:35 2009 @@ -1,0 +1,44 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using WeifenLuo.WinFormsUI.Docking; + +namespace RosDBG +{ + public partial class ToolWindow : DockContent + { + + public enum Commands {Copy, Cut, Paste, Save, SaveAs, Print}; + + public ToolWindow() + { + InitializeComponent(); + } + + public virtual void SaveAs(string FileName) + { + MessageBox.Show("Not implemented!"); + } + + public virtual void Save(string FileName) + { + SaveAs(FileName); + } + + public virtual string GetDocumentName() + { + return ""; + } + + public virtual bool IsCmdEnabled(Commands Cmd) + { + return false; + } + + } +} Propchange: trunk/tools/reactosdbg/RosDBG/Dockable Objects/ToolWindow.cs ------------------------------------------------------------------------------ svn:eol-style = native