mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-01-22 03:11:47 -05:00
Fully added the infobox
This commit is contained in:
parent
59721924f1
commit
f5a78ea416
17 changed files with 682 additions and 14 deletions
Binary file not shown.
29
ShiftOS.Engine/Properties/Resources.Designer.cs
generated
29
ShiftOS.Engine/Properties/Resources.Designer.cs
generated
|
@ -60,6 +60,25 @@ namespace ShiftOS.Engine.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap iconInfoBox_fw {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("iconInfoBox_fw", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream.
|
||||
/// </summary>
|
||||
internal static System.IO.UnmanagedMemoryStream infobox {
|
||||
get {
|
||||
return ResourceManager.GetStream("infobox", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
@ -69,5 +88,15 @@ namespace ShiftOS.Engine.Properties {
|
|||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized resource of type System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap Symbolinfo {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("Symbolinfo", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -121,4 +121,13 @@
|
|||
<data name="nullIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\nullIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="Symbolinfo" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Symbolinfo1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="iconInfoBox_fw" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\iconInfoBox.fw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="infobox" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\infobox.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
</root>
|
BIN
ShiftOS.Engine/Resources/Symbolinfo1.png
Normal file
BIN
ShiftOS.Engine/Resources/Symbolinfo1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
BIN
ShiftOS.Engine/Resources/iconInfoBox.fw.png
Normal file
BIN
ShiftOS.Engine/Resources/iconInfoBox.fw.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
BIN
ShiftOS.Engine/Resources/infobox.wav
Normal file
BIN
ShiftOS.Engine/Resources/infobox.wav
Normal file
Binary file not shown.
|
@ -48,6 +48,12 @@
|
|||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WindowManager\InfoboxTemplate.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="WindowManager\InfoboxTemplate.Designer.cs">
|
||||
<DependentUpon>InfoboxTemplate.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="WindowManager\ShiftWindow.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
@ -61,6 +67,9 @@
|
|||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="WindowManager\InfoboxTemplate.resx">
|
||||
<DependentUpon>InfoboxTemplate.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="WindowManager\ShiftWindow.resx">
|
||||
<DependentUpon>ShiftWindow.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
@ -68,5 +77,14 @@
|
|||
<ItemGroup>
|
||||
<None Include="Resources\nullIcon.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\Symbolinfo1.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\infobox.wav" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\iconInfoBox.fw.png" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
115
ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs
generated
Normal file
115
ShiftOS.Engine/WindowManager/InfoboxTemplate.Designer.cs
generated
Normal file
|
@ -0,0 +1,115 @@
|
|||
namespace ShiftOS.Engine.WindowManager
|
||||
{
|
||||
partial class InfoboxTemplate
|
||||
{
|
||||
/// <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 Component 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.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;
|
||||
}
|
||||
}
|
90
ShiftOS.Engine/WindowManager/InfoboxTemplate.cs
Normal file
90
ShiftOS.Engine/WindowManager/InfoboxTemplate.cs
Normal file
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
120
ShiftOS.Engine/WindowManager/InfoboxTemplate.resx
Normal file
120
ShiftOS.Engine/WindowManager/InfoboxTemplate.resx
Normal file
|
@ -0,0 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
27
ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs
generated
27
ShiftOS.Engine/WindowManager/ShiftWindow.Designer.cs
generated
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,6 +58,12 @@
|
|||
<Compile Include="ShiftOS\Apps\ShiftDemo.Designer.cs">
|
||||
<DependentUpon>ShiftDemo.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ShiftOS\Apps\Shifter.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="ShiftOS\Apps\Shifter.Designer.cs">
|
||||
<DependentUpon>Shifter.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="ShiftOS\Apps\TestForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
@ -80,6 +86,9 @@
|
|||
<EmbeddedResource Include="ShiftOS\Apps\ShiftDemo.resx">
|
||||
<DependentUpon>ShiftDemo.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="ShiftOS\Apps\Shifter.resx">
|
||||
<DependentUpon>Shifter.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="ShiftOS\Apps\TestForm.resx">
|
||||
<DependentUpon>TestForm.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
|
119
ShiftOS.Main/ShiftOS/Apps/Shifter.Designer.cs
generated
Normal file
119
ShiftOS.Main/ShiftOS/Apps/Shifter.Designer.cs
generated
Normal file
|
@ -0,0 +1,119 @@
|
|||
namespace ShiftOS.Main.ShiftOS.Apps
|
||||
{
|
||||
partial class Shifter
|
||||
{
|
||||
/// <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 Component 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.tabControl1 = new System.Windows.Forms.TabControl();
|
||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||
this.tabPage2 = new System.Windows.Forms.TabPage();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.tabControl1.SuspendLayout();
|
||||
this.tabPage1.SuspendLayout();
|
||||
this.groupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tabControl1
|
||||
//
|
||||
this.tabControl1.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.tabControl1.Controls.Add(this.tabPage1);
|
||||
this.tabControl1.Controls.Add(this.tabPage2);
|
||||
this.tabControl1.Location = new System.Drawing.Point(3, 3);
|
||||
this.tabControl1.Name = "tabControl1";
|
||||
this.tabControl1.SelectedIndex = 0;
|
||||
this.tabControl1.Size = new System.Drawing.Size(334, 322);
|
||||
this.tabControl1.TabIndex = 0;
|
||||
//
|
||||
// tabPage1
|
||||
//
|
||||
this.tabPage1.Controls.Add(this.groupBox1);
|
||||
this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
||||
this.tabPage1.Name = "tabPage1";
|
||||
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabPage1.Size = new System.Drawing.Size(326, 296);
|
||||
this.tabPage1.TabIndex = 0;
|
||||
this.tabPage1.Text = "tabPage1";
|
||||
this.tabPage1.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// tabPage2
|
||||
//
|
||||
this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
||||
this.tabPage2.Name = "tabPage2";
|
||||
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
||||
this.tabPage2.Size = new System.Drawing.Size(192, 74);
|
||||
this.tabPage2.TabIndex = 1;
|
||||
this.tabPage2.Text = "tabPage2";
|
||||
this.tabPage2.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.Controls.Add(this.button1);
|
||||
this.groupBox1.Location = new System.Drawing.Point(6, 6);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(161, 108);
|
||||
this.groupBox1.TabIndex = 0;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "groupBox1";
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.button1.Font = new System.Drawing.Font("Lucida Console", 8.25F);
|
||||
this.button1.Location = new System.Drawing.Point(6, 19);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(149, 23);
|
||||
this.button1.TabIndex = 1;
|
||||
this.button1.Text = "Set Titlebar Color";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// Shifter
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.tabControl1);
|
||||
this.Name = "Shifter";
|
||||
this.Size = new System.Drawing.Size(340, 325);
|
||||
this.tabControl1.ResumeLayout(false);
|
||||
this.tabPage1.ResumeLayout(false);
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TabControl tabControl1;
|
||||
private System.Windows.Forms.TabPage tabPage1;
|
||||
private System.Windows.Forms.GroupBox groupBox1;
|
||||
private System.Windows.Forms.Button button1;
|
||||
private System.Windows.Forms.TabPage tabPage2;
|
||||
}
|
||||
}
|
31
ShiftOS.Main/ShiftOS/Apps/Shifter.cs
Normal file
31
ShiftOS.Main/ShiftOS/Apps/Shifter.cs
Normal file
|
@ -0,0 +1,31 @@
|
|||
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 ShiftOS.Engine.WindowManager;
|
||||
|
||||
namespace ShiftOS.Main.ShiftOS.Apps
|
||||
{
|
||||
public partial class Shifter : UserControl
|
||||
{
|
||||
public Shifter()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
ColorDialog cD = new ColorDialog();
|
||||
if (cD.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
ShiftWindow sw = new ShiftWindow();
|
||||
sw.top.BackColor = cD.Color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
120
ShiftOS.Main/ShiftOS/Apps/Shifter.resx
Normal file
120
ShiftOS.Main/ShiftOS/Apps/Shifter.resx
Normal file
|
@ -0,0 +1,120 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
|
@ -18,6 +18,7 @@ namespace ShiftOS.Main
|
|||
ShiftDemo demo = new ShiftDemo();
|
||||
demo.label1.Text = textBox2.Text;
|
||||
shiftWM.Init(demo, textBox1.Text, null);
|
||||
shiftWM.StartInfoboxSession(textBox1.Text, textBox2.Text, InfoboxTemplate.buttonType.OK);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue