From 9107510c4985ceb781640163bbb82ab6de2fa35e Mon Sep 17 00:00:00 2001 From: AShifter Date: Sun, 24 Sep 2017 12:32:50 -0600 Subject: Add proper WM and Remove old source Added a proper, working WM. I also got rid of the old source as we could just make a new repo for that. --- ShiftOS.Main/Program.cs | 2 +- ShiftOS.Main/ShiftDemo.Designer.cs | 59 ++++++++++++++++++ ShiftOS.Main/ShiftDemo.cs | 20 +++++++ ShiftOS.Main/ShiftDemo.resx | 120 +++++++++++++++++++++++++++++++++++++ ShiftOS.Main/ShiftOS.Main.csproj | 24 ++++++++ ShiftOS.Main/TestForm.Designer.cs | 83 +++++++++++++++++++++++++ ShiftOS.Main/TestForm.cs | 23 +++++++ ShiftOS.Main/TestForm.resx | 120 +++++++++++++++++++++++++++++++++++++ 8 files changed, 450 insertions(+), 1 deletion(-) create mode 100644 ShiftOS.Main/ShiftDemo.Designer.cs create mode 100644 ShiftOS.Main/ShiftDemo.cs create mode 100644 ShiftOS.Main/ShiftDemo.resx create mode 100644 ShiftOS.Main/TestForm.Designer.cs create mode 100644 ShiftOS.Main/TestForm.cs create mode 100644 ShiftOS.Main/TestForm.resx (limited to 'ShiftOS.Main') diff --git a/ShiftOS.Main/Program.cs b/ShiftOS.Main/Program.cs index a775714..5464d8e 100644 --- a/ShiftOS.Main/Program.cs +++ b/ShiftOS.Main/Program.cs @@ -16,7 +16,7 @@ namespace ShiftOS.Main { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new HijackScreen()); + Application.Run(new TestForm()); } } } diff --git a/ShiftOS.Main/ShiftDemo.Designer.cs b/ShiftOS.Main/ShiftDemo.Designer.cs new file mode 100644 index 0000000..5c3a0de --- /dev/null +++ b/ShiftOS.Main/ShiftDemo.Designer.cs @@ -0,0 +1,59 @@ +namespace ShiftOS.Main +{ + partial class ShiftDemo + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(18, 16); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(35, 13); + this.label1.TabIndex = 0; + this.label1.Text = "label1"; + // + // ShiftDemo + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.label1); + this.Name = "ShiftDemo"; + this.Size = new System.Drawing.Size(300, 300); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + public System.Windows.Forms.Label label1; + } +} diff --git a/ShiftOS.Main/ShiftDemo.cs b/ShiftOS.Main/ShiftDemo.cs new file mode 100644 index 0000000..1f400c8 --- /dev/null +++ b/ShiftOS.Main/ShiftDemo.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ShiftOS.Main +{ + public partial class ShiftDemo : UserControl + { + public ShiftDemo() + { + InitializeComponent(); + } + } +} diff --git a/ShiftOS.Main/ShiftDemo.resx b/ShiftOS.Main/ShiftDemo.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ShiftOS.Main/ShiftDemo.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ShiftOS.Main/ShiftOS.Main.csproj b/ShiftOS.Main/ShiftOS.Main.csproj index 6328a3c..1343d99 100644 --- a/ShiftOS.Main/ShiftOS.Main.csproj +++ b/ShiftOS.Main/ShiftOS.Main.csproj @@ -52,6 +52,18 @@ + + UserControl + + + ShiftDemo.cs + + + Form + + + TestForm.cs + HijackScreen.cs @@ -65,6 +77,12 @@ Resources.resx True + + ShiftDemo.cs + + + TestForm.cs + SettingsSingleFileGenerator Settings.Designer.cs @@ -1070,5 +1088,11 @@ + + + {604eb1d7-998f-4a52-90a6-67f3dc3203d2} + ShiftOS.Engine + + \ No newline at end of file diff --git a/ShiftOS.Main/TestForm.Designer.cs b/ShiftOS.Main/TestForm.Designer.cs new file mode 100644 index 0000000..654466d --- /dev/null +++ b/ShiftOS.Main/TestForm.Designer.cs @@ -0,0 +1,83 @@ +namespace ShiftOS.Main +{ + partial class TestForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.textBox1 = new System.Windows.Forms.TextBox(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(12, 13); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(260, 20); + this.textBox1.TabIndex = 0; + this.textBox1.Text = "Title"; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(12, 39); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(260, 20); + this.textBox2.TabIndex = 1; + this.textBox2.Text = "Contents"; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(12, 65); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(260, 23); + this.button1.TabIndex = 2; + this.button1.Text = "Create Window"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.Button1_Click); + // + // TestForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 100); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.textBox1); + this.Name = "TestForm"; + this.Text = "TestForm"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.Button button1; + } +} \ No newline at end of file diff --git a/ShiftOS.Main/TestForm.cs b/ShiftOS.Main/TestForm.cs new file mode 100644 index 0000000..e1f926f --- /dev/null +++ b/ShiftOS.Main/TestForm.cs @@ -0,0 +1,23 @@ +using System; +using System.Windows.Forms; +using ShiftOS.Engine.WindowManager; + +namespace ShiftOS.Main +{ + public partial class TestForm : Form + { + public ShiftWM shiftWM = new ShiftWM(); + public ShiftDemo demo = new ShiftDemo(); + + public TestForm() + { + InitializeComponent(); + } + + private void Button1_Click(object sender, EventArgs e) + { + demo.label1.Text = textBox2.Text; + shiftWM.Init(demo, textBox1.Text); + } + } +} diff --git a/ShiftOS.Main/TestForm.resx b/ShiftOS.Main/TestForm.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ShiftOS.Main/TestForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file -- cgit v1.2.3