From f5a78ea4169e1553204d908bfbc52ef7ca84b0e6 Mon Sep 17 00:00:00 2001 From: FloppyDiskDrive Date: Sun, 24 Sep 2017 16:55:03 -0500 Subject: Fully added the infobox --- .../WindowManager/InfoboxTemplate.Designer.cs | 115 ++++++++++++++++++++ ShiftOS.Engine/WindowManager/InfoboxTemplate.cs | 90 ++++++++++++++++ ShiftOS.Engine/WindowManager/InfoboxTemplate.resx | 120 +++++++++++++++++++++ ShiftOS.Engine/WindowManager/ShiftWM.cs | 8 ++ .../WindowManager/ShiftWindow.Designer.cs | 27 +++-- 5 files changed, 346 insertions(+), 14 deletions(-) create mode 100644 ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs create mode 100644 ShiftOS.Engine/WindowManager/InfoboxTemplate.cs create mode 100644 ShiftOS.Engine/WindowManager/InfoboxTemplate.resx (limited to 'ShiftOS.Engine/WindowManager') diff --git a/ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs b/ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs new file mode 100644 index 0000000..6b18e5f --- /dev/null +++ b/ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs @@ -0,0 +1,115 @@ +namespace ShiftOS.Engine.WindowManager +{ + partial class InfoboxTemplate + { + /// + /// 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.btnOpt1 = new System.Windows.Forms.Button(); + this.btnOpt2 = new System.Windows.Forms.Button(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.label1 = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // btnOpt1 + // + this.btnOpt1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.btnOpt1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOpt1.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnOpt1.Location = new System.Drawing.Point(65, 134); + this.btnOpt1.Name = "btnOpt1"; + this.btnOpt1.Size = new System.Drawing.Size(75, 23); + this.btnOpt1.TabIndex = 0; + this.btnOpt1.Text = "button1"; + this.btnOpt1.UseVisualStyleBackColor = true; + this.btnOpt1.Click += new System.EventHandler(this.btnOpt1_Click); + // + // btnOpt2 + // + this.btnOpt2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.btnOpt2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOpt2.Font = new System.Drawing.Font("Lucida Console", 9F); + this.btnOpt2.Location = new System.Drawing.Point(188, 134); + this.btnOpt2.Name = "btnOpt2"; + this.btnOpt2.Size = new System.Drawing.Size(75, 23); + this.btnOpt2.TabIndex = 1; + this.btnOpt2.Text = "button2"; + this.btnOpt2.UseVisualStyleBackColor = true; + this.btnOpt2.Click += new System.EventHandler(this.btnOpt2_Click); + // + // pictureBox1 + // + this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.pictureBox1.Image = global::ShiftOS.Engine.Properties.Resources.Symbolinfo; + this.pictureBox1.Location = new System.Drawing.Point(3, 35); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(80, 70); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize; + this.pictureBox1.TabIndex = 2; + this.pictureBox1.TabStop = false; + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Lucida Console", 9.25F); + this.label1.Location = new System.Drawing.Point(106, 57); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(103, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Generic Body"; + // + // InfoboxTemplate + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.label1); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.btnOpt2); + this.Controls.Add(this.btnOpt1); + this.Name = "InfoboxTemplate"; + this.Size = new System.Drawing.Size(346, 174); + this.Load += new System.EventHandler(this.InfoboxTemplate_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + public System.Windows.Forms.Button btnOpt1; + public System.Windows.Forms.Button btnOpt2; + public System.Windows.Forms.PictureBox pictureBox1; + public System.Windows.Forms.Label label1; + } +} diff --git a/ShiftOS.Engine/WindowManager/InfoboxTemplate.cs b/ShiftOS.Engine/WindowManager/InfoboxTemplate.cs new file mode 100644 index 0000000..f261ace --- /dev/null +++ b/ShiftOS.Engine/WindowManager/InfoboxTemplate.cs @@ -0,0 +1,90 @@ +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; +using System.Media; +using System.IO; + +namespace ShiftOS.Engine.WindowManager +{ + public partial class InfoboxTemplate : UserControl + { + Stream str; + public int buttonChoice; + public int buttonSelected; + public InfoboxTemplate(buttonType type) + { + InitializeComponent(); + switch (type) + { + case buttonType.OK: + btnOpt1.Text = "OK"; + btnOpt2.Hide(); + btnOpt1.Location = new Point(122, 134); + buttonChoice = 1; + break; + case buttonType.OKCancel: + btnOpt1.Text = "OK"; + btnOpt2.Text = "Cancel"; + buttonChoice = 2; + break; + case buttonType.YesNo: + btnOpt1.Text = "Yes"; + btnOpt2.Text = "No"; + buttonChoice = 3; + break; + } + } + public enum buttonType + { + YesNo, + OKCancel, + OK + } + + private void btnOpt1_Click(object sender, EventArgs e) + { + switch (btnOpt1.Text) + { + case "OK": + buttonSelected = 1; + ParentForm.Close(); + break; + case "Yes": + buttonSelected = 2; + ParentForm.Close(); + break; + } + } + + private void btnOpt2_Click(object sender, EventArgs e) + { + switch (btnOpt2.Text) + { + case "No": + buttonSelected = 3; + break; + case "Cancel": + buttonSelected = 4; + break; + } + } + public void Play() + { + str = Properties.Resources.infobox; + SoundPlayer sp = new SoundPlayer(str); + sp.Play(); + sp.Stream.Position = 0; + } + + private void InfoboxTemplate_Load(object sender, EventArgs e) + { + Play(); + } + } +} diff --git a/ShiftOS.Engine/WindowManager/InfoboxTemplate.resx b/ShiftOS.Engine/WindowManager/InfoboxTemplate.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ShiftOS.Engine/WindowManager/InfoboxTemplate.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.Engine/WindowManager/ShiftWM.cs b/ShiftOS.Engine/WindowManager/ShiftWM.cs index d30224c..38537c7 100644 --- a/ShiftOS.Engine/WindowManager/ShiftWM.cs +++ b/ShiftOS.Engine/WindowManager/ShiftWM.cs @@ -1,5 +1,6 @@ using System.Drawing; using System.Windows.Forms; +using static ShiftOS.Engine.WindowManager.InfoboxTemplate; namespace ShiftOS.Engine.WindowManager { @@ -30,5 +31,12 @@ namespace ShiftOS.Engine.WindowManager app.Show(); return app; } + public InfoboxTemplate StartInfoboxSession(string title, string body, buttonType type) + { + InfoboxTemplate info = new InfoboxTemplate(type); + info.label1.Text = body; + Init(info, title, Properties.Resources.iconInfoBox_fw, true, false); + return info; + } } } diff --git a/ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs b/ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs index 197c659..0b215a9 100644 --- a/ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs +++ b/ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs @@ -234,21 +234,20 @@ } #endregion - - internal System.Windows.Forms.Panel program; - internal System.Windows.Forms.Panel bottomleftcorner; - internal System.Windows.Forms.Panel toprightcorner; - internal System.Windows.Forms.Panel bottomrightcorner; - internal System.Windows.Forms.Panel topleftcorner; - internal System.Windows.Forms.Panel bottom; - internal System.Windows.Forms.Panel top; public System.Windows.Forms.PictureBox programIcon; - internal System.Windows.Forms.PictureBox maximizebutton; - internal System.Windows.Forms.PictureBox minimizebutton; - internal System.Windows.Forms.Label Title; - internal System.Windows.Forms.PictureBox closebutton; - internal System.Windows.Forms.Panel right; - internal System.Windows.Forms.Panel left; public System.Windows.Forms.Panel programContent; + public System.Windows.Forms.Panel program; + public System.Windows.Forms.Panel bottomleftcorner; + public System.Windows.Forms.Panel toprightcorner; + public System.Windows.Forms.Panel bottomrightcorner; + public System.Windows.Forms.Panel topleftcorner; + public System.Windows.Forms.Panel bottom; + public System.Windows.Forms.Panel top; + public System.Windows.Forms.PictureBox maximizebutton; + public System.Windows.Forms.PictureBox minimizebutton; + public System.Windows.Forms.Label Title; + public System.Windows.Forms.PictureBox closebutton; + public System.Windows.Forms.Panel right; + public System.Windows.Forms.Panel left; } } -- cgit v1.2.3