aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs
diff options
context:
space:
mode:
authorMichaelTheShifter <[email protected]>2016-07-19 21:53:26 -0400
committerMichaelTheShifter <[email protected]>2016-07-19 21:53:26 -0400
commit6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9 (patch)
treed7bc4b46c45a552add946666151d44490f3b3caf /source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs
parent9322701aa1eae9596a8586ef19a0fe1d1b3ab66b (diff)
downloadshiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.tar.gz
shiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.tar.bz2
shiftos-c--6b804f03ebcdd1c5aa145f29ae71b62bd61f8cb9.zip
Full ShiftUI conversion
The only bugs are that windows don't show in the center of the screen, and Gecko webbrowsers are not serializing properly to be converted to ShiftUI widgets (you can use the ToWidget() extension method to convert a WinForms control to a ShiftUI widget) Also multiple desktop panels are removed due to some odd bug I can't diagnose. Will add them back in the future. Promise. I loved creating GNOME2 skins.
Diffstat (limited to 'source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs')
-rw-r--r--source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs130
1 files changed, 65 insertions, 65 deletions
diff --git a/source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs b/source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs
index 4140581..e375a18 100644
--- a/source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs
+++ b/source/WindowsFormsApplication1/Apps/WidgetManager.Designer.cs
@@ -29,22 +29,22 @@
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
- this.panel1 = new System.Windows.Forms.Panel();
- this.pnlbuttons = new System.Windows.Forms.FlowLayoutPanel();
- this.btndone = new System.Windows.Forms.Button();
- this.btnadd = new System.Windows.Forms.Button();
- this.cbpanel = new System.Windows.Forms.ComboBox();
- this.txtwidth = new System.Windows.Forms.TextBox();
- this.lbwidth = new System.Windows.Forms.Label();
- this.txtx = new System.Windows.Forms.TextBox();
- this.label1 = new System.Windows.Forms.Label();
- this.lbtitle = new System.Windows.Forms.Label();
- this.lvwidgets = new System.Windows.Forms.ListView();
- this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.listView1 = new System.Windows.Forms.ListView();
- this.tmrcheckvalid = new System.Windows.Forms.Timer(this.components);
- this.btninstallwidgets = new System.Windows.Forms.Button();
+ this.panel1 = new ShiftUI.Panel();
+ this.pnlbuttons = new ShiftUI.FlowLayoutPanel();
+ this.btndone = new ShiftUI.Button();
+ this.btnadd = new ShiftUI.Button();
+ this.cbpanel = new ShiftUI.ComboBox();
+ this.txtwidth = new ShiftUI.TextBox();
+ this.lbwidth = new ShiftUI.Label();
+ this.txtx = new ShiftUI.TextBox();
+ this.label1 = new ShiftUI.Label();
+ this.lbtitle = new ShiftUI.Label();
+ this.lvwidgets = new ShiftUI.ListView();
+ this.columnHeader1 = ((ShiftUI.ColumnHeader)(new ShiftUI.ColumnHeader()));
+ this.columnHeader2 = ((ShiftUI.ColumnHeader)(new ShiftUI.ColumnHeader()));
+ this.listView1 = new ShiftUI.ListView();
+ this.tmrcheckvalid = new ShiftUI.Timer(this.components);
+ this.btninstallwidgets = new ShiftUI.Button();
this.panel1.SuspendLayout();
this.pnlbuttons.SuspendLayout();
this.SuspendLayout();
@@ -52,11 +52,11 @@
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
- this.panel1.Controls.Add(this.pnlbuttons);
- this.panel1.Controls.Add(this.lbtitle);
- this.panel1.Controls.Add(this.lvwidgets);
- this.panel1.Controls.Add(this.listView1);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel1.Widgets.Add(this.pnlbuttons);
+ this.panel1.Widgets.Add(this.lbtitle);
+ this.panel1.Widgets.Add(this.lvwidgets);
+ this.panel1.Widgets.Add(this.listView1);
+ this.panel1.Dock = ShiftUI.DockStyle.Fill;
this.panel1.ForeColor = System.Drawing.Color.Black;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
@@ -66,16 +66,16 @@
// pnlbuttons
//
this.pnlbuttons.BackColor = System.Drawing.Color.Gray;
- this.pnlbuttons.Controls.Add(this.btndone);
- this.pnlbuttons.Controls.Add(this.btnadd);
- this.pnlbuttons.Controls.Add(this.cbpanel);
- this.pnlbuttons.Controls.Add(this.txtwidth);
- this.pnlbuttons.Controls.Add(this.lbwidth);
- this.pnlbuttons.Controls.Add(this.txtx);
- this.pnlbuttons.Controls.Add(this.label1);
- this.pnlbuttons.Controls.Add(this.btninstallwidgets);
- this.pnlbuttons.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.pnlbuttons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
+ this.pnlbuttons.Widgets.Add(this.btndone);
+ this.pnlbuttons.Widgets.Add(this.btnadd);
+ this.pnlbuttons.Widgets.Add(this.cbpanel);
+ this.pnlbuttons.Widgets.Add(this.txtwidth);
+ this.pnlbuttons.Widgets.Add(this.lbwidth);
+ this.pnlbuttons.Widgets.Add(this.txtx);
+ this.pnlbuttons.Widgets.Add(this.label1);
+ this.pnlbuttons.Widgets.Add(this.btninstallwidgets);
+ this.pnlbuttons.Dock = ShiftUI.DockStyle.Bottom;
+ this.pnlbuttons.FlowDirection = ShiftUI.FlowDirection.RightToLeft;
this.pnlbuttons.ForeColor = System.Drawing.Color.White;
this.pnlbuttons.Location = new System.Drawing.Point(0, 429);
this.pnlbuttons.Name = "pnlbuttons";
@@ -85,8 +85,8 @@
// btndone
//
this.btndone.AutoSize = true;
- this.btndone.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.btndone.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btndone.AutoSizeMode = ShiftUI.AutoSizeMode.GrowAndShrink;
+ this.btndone.FlatStyle = ShiftUI.FlatStyle.Flat;
this.btndone.Location = new System.Drawing.Point(649, 3);
this.btndone.Name = "btndone";
this.btndone.Size = new System.Drawing.Size(45, 25);
@@ -98,8 +98,8 @@
// btnadd
//
this.btnadd.AutoSize = true;
- this.btnadd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.btnadd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnadd.AutoSizeMode = ShiftUI.AutoSizeMode.GrowAndShrink;
+ this.btnadd.FlatStyle = ShiftUI.FlatStyle.Flat;
this.btnadd.Location = new System.Drawing.Point(605, 3);
this.btnadd.Name = "btnadd";
this.btnadd.Size = new System.Drawing.Size(38, 25);
@@ -110,8 +110,8 @@
//
// cbpanel
//
- this.cbpanel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
- this.cbpanel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.cbpanel.DropDownStyle = ShiftUI.ComboBoxStyle.DropDownList;
+ this.cbpanel.FlatStyle = ShiftUI.FlatStyle.Flat;
this.cbpanel.FormattingEnabled = true;
this.cbpanel.Location = new System.Drawing.Point(478, 3);
this.cbpanel.Name = "cbpanel";
@@ -152,8 +152,8 @@
//
// lbtitle
//
- this.lbtitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
+ this.lbtitle.Anchor = ((ShiftUI.AnchorStyles)(((ShiftUI.AnchorStyles.Top | ShiftUI.AnchorStyles.Left)
+ | ShiftUI.AnchorStyles.Right)));
this.lbtitle.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F);
this.lbtitle.Location = new System.Drawing.Point(12, 9);
this.lbtitle.Name = "lbtitle";
@@ -164,20 +164,20 @@
//
// lvwidgets
//
- this.lvwidgets.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.lvwidgets.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
+ this.lvwidgets.Anchor = ((ShiftUI.AnchorStyles)((((ShiftUI.AnchorStyles.Top | ShiftUI.AnchorStyles.Bottom)
+ | ShiftUI.AnchorStyles.Left)
+ | ShiftUI.AnchorStyles.Right)));
+ this.lvwidgets.Columns.AddRange(new ShiftUI.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.lvwidgets.FullRowSelect = true;
- this.lvwidgets.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
+ this.lvwidgets.HeaderStyle = ShiftUI.ColumnHeaderStyle.Nonclickable;
this.lvwidgets.Location = new System.Drawing.Point(12, 44);
this.lvwidgets.Name = "lvwidgets";
this.lvwidgets.Size = new System.Drawing.Size(673, 381);
this.lvwidgets.TabIndex = 1;
this.lvwidgets.UseCompatibleStateImageBehavior = false;
- this.lvwidgets.View = System.Windows.Forms.View.Details;
+ this.lvwidgets.View = ShiftUI.View.Details;
this.lvwidgets.SelectedIndexChanged += new System.EventHandler(this.lvwidgets_SelectedIndexChanged);
//
// columnHeader1
@@ -204,8 +204,8 @@
// btninstallwidgets
//
this.btninstallwidgets.AutoSize = true;
- this.btninstallwidgets.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.btninstallwidgets.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btninstallwidgets.AutoSizeMode = ShiftUI.AutoSizeMode.GrowAndShrink;
+ this.btninstallwidgets.FlatStyle = ShiftUI.FlatStyle.Flat;
this.btninstallwidgets.Location = new System.Drawing.Point(152, 3);
this.btninstallwidgets.Name = "btninstallwidgets";
this.btninstallwidgets.Size = new System.Drawing.Size(88, 25);
@@ -217,9 +217,9 @@
// WidgetManager
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.AutoScaleMode = ShiftUI.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(697, 459);
- this.Controls.Add(this.panel1);
+ this.Widgets.Add(this.panel1);
this.Name = "WidgetManager";
this.Text = "WidgetManager";
this.Load += new System.EventHandler(this.WidgetManager_Load);
@@ -232,21 +232,21 @@
#endregion
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.ListView listView1;
- private System.Windows.Forms.FlowLayoutPanel pnlbuttons;
- private System.Windows.Forms.Button btndone;
- private System.Windows.Forms.Button btnadd;
- private System.Windows.Forms.ComboBox cbpanel;
- private System.Windows.Forms.Label lbtitle;
- private System.Windows.Forms.ListView lvwidgets;
- private System.Windows.Forms.ColumnHeader columnHeader1;
- private System.Windows.Forms.ColumnHeader columnHeader2;
- private System.Windows.Forms.TextBox txtwidth;
- private System.Windows.Forms.Label lbwidth;
- private System.Windows.Forms.TextBox txtx;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Timer tmrcheckvalid;
- private System.Windows.Forms.Button btninstallwidgets;
+ private ShiftUI.Panel panel1;
+ private ShiftUI.ListView listView1;
+ private ShiftUI.FlowLayoutPanel pnlbuttons;
+ private ShiftUI.Button btndone;
+ private ShiftUI.Button btnadd;
+ private ShiftUI.ComboBox cbpanel;
+ private ShiftUI.Label lbtitle;
+ private ShiftUI.ListView lvwidgets;
+ private ShiftUI.ColumnHeader columnHeader1;
+ private ShiftUI.ColumnHeader columnHeader2;
+ private ShiftUI.TextBox txtwidth;
+ private ShiftUI.Label lbwidth;
+ private ShiftUI.TextBox txtx;
+ private ShiftUI.Label label1;
+ private ShiftUI.Timer tmrcheckvalid;
+ private ShiftUI.Button btninstallwidgets;
}
} \ No newline at end of file