misu – Blame information for rev 7

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace misu
2 {
3 office 3 partial class MisuMainForm
1 office 4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9  
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22  
23 #region Windows Form Designer generated code
24  
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.components = new System.ComponentModel.Container();
3 office 32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MisuMainForm));
33 this.misuNotificationIcon = new System.Windows.Forms.NotifyIcon(this.components);
5 office 34 this.misuContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
1 office 35 this.bindKeyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
36 this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
37 this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
38 this.launchOnBootToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
39 this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
40 this.mouseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41 this.keyboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
42 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
43 this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
44 this.quitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
5 office 45 this.misuContextMenuStrip.SuspendLayout();
1 office 46 this.SuspendLayout();
47 //
3 office 48 // misuNotificationIcon
1 office 49 //
5 office 50 this.misuNotificationIcon.ContextMenuStrip = this.misuContextMenuStrip;
3 office 51 this.misuNotificationIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("misuNotificationIcon.Icon")));
52 this.misuNotificationIcon.Text = "misu";
53 this.misuNotificationIcon.Visible = true;
1 office 54 //
5 office 55 // misuContextMenuStrip
1 office 56 //
5 office 57 this.misuContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
1 office 58 this.bindKeyToolStripMenuItem,
59 this.toolStripSeparator2,
60 this.settingsToolStripMenuItem,
61 this.toolStripSeparator1,
62 this.aboutToolStripMenuItem,
63 this.quitToolStripMenuItem});
5 office 64 this.misuContextMenuStrip.Name = "contextMenuStrip1";
65 this.misuContextMenuStrip.Size = new System.Drawing.Size(166, 104);
66 this.misuContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuStrip_Opening);
1 office 67 //
68 // bindKeyToolStripMenuItem
69 //
5 office 70 this.bindKeyToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("bindKeyToolStripMenuItem.Image")));
1 office 71 this.bindKeyToolStripMenuItem.Name = "bindKeyToolStripMenuItem";
3 office 72 this.bindKeyToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
73 this.bindKeyToolStripMenuItem.Text = "Create Shortcut...";
1 office 74 this.bindKeyToolStripMenuItem.Click += new System.EventHandler(this.OnContextMenuBindKeyClick);
75 //
76 // toolStripSeparator2
77 //
78 this.toolStripSeparator2.Name = "toolStripSeparator2";
3 office 79 this.toolStripSeparator2.Size = new System.Drawing.Size(162, 6);
1 office 80 //
81 // settingsToolStripMenuItem
82 //
83 this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
84 this.launchOnBootToolStripMenuItem,
85 this.toolStripSeparator3,
86 this.mouseToolStripMenuItem,
87 this.keyboardToolStripMenuItem});
5 office 88 this.settingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("settingsToolStripMenuItem.Image")));
1 office 89 this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
3 office 90 this.settingsToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
1 office 91 this.settingsToolStripMenuItem.Text = "Settings";
92 //
93 // launchOnBootToolStripMenuItem
94 //
7 office 95 this.launchOnBootToolStripMenuItem.Checked = global::misu.Properties.Settings.Default.LaunchOnBoot;
1 office 96 this.launchOnBootToolStripMenuItem.CheckOnClick = true;
5 office 97 this.launchOnBootToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("launchOnBootToolStripMenuItem.Image")));
1 office 98 this.launchOnBootToolStripMenuItem.Name = "launchOnBootToolStripMenuItem";
5 office 99 this.launchOnBootToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
1 office 100 this.launchOnBootToolStripMenuItem.Text = "Launch on Boot";
101 this.launchOnBootToolStripMenuItem.CheckedChanged += new System.EventHandler(this.OnContextMenuLaunchOnBootChanged);
102 //
103 // toolStripSeparator3
104 //
105 this.toolStripSeparator3.Name = "toolStripSeparator3";
5 office 106 this.toolStripSeparator3.Size = new System.Drawing.Size(177, 6);
1 office 107 //
108 // mouseToolStripMenuItem
109 //
7 office 110 this.mouseToolStripMenuItem.Checked = global::misu.Properties.Settings.Default.Mouse;
1 office 111 this.mouseToolStripMenuItem.CheckOnClick = true;
5 office 112 this.mouseToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("mouseToolStripMenuItem.Image")));
1 office 113 this.mouseToolStripMenuItem.Name = "mouseToolStripMenuItem";
5 office 114 this.mouseToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
1 office 115 this.mouseToolStripMenuItem.Text = "Mouse";
116 this.mouseToolStripMenuItem.CheckedChanged += new System.EventHandler(this.MouseToolStripMenuItem_CheckedChanged);
117 //
118 // keyboardToolStripMenuItem
119 //
7 office 120 this.keyboardToolStripMenuItem.Checked = global::misu.Properties.Settings.Default.Keyboard;
1 office 121 this.keyboardToolStripMenuItem.CheckOnClick = true;
122 this.keyboardToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
5 office 123 this.keyboardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("keyboardToolStripMenuItem.Image")));
1 office 124 this.keyboardToolStripMenuItem.Name = "keyboardToolStripMenuItem";
5 office 125 this.keyboardToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
1 office 126 this.keyboardToolStripMenuItem.Text = "Keyboard";
127 this.keyboardToolStripMenuItem.CheckedChanged += new System.EventHandler(this.KeyboardToolStripMenuItem_CheckedChanged);
128 //
129 // toolStripSeparator1
130 //
131 this.toolStripSeparator1.Name = "toolStripSeparator1";
3 office 132 this.toolStripSeparator1.Size = new System.Drawing.Size(162, 6);
1 office 133 //
134 // aboutToolStripMenuItem
135 //
5 office 136 this.aboutToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("aboutToolStripMenuItem.Image")));
1 office 137 this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
3 office 138 this.aboutToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
1 office 139 this.aboutToolStripMenuItem.Text = "About...";
140 this.aboutToolStripMenuItem.Click += new System.EventHandler(this.OnContextMenuAboutClick);
141 //
142 // quitToolStripMenuItem
143 //
5 office 144 this.quitToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("quitToolStripMenuItem.Image")));
1 office 145 this.quitToolStripMenuItem.Name = "quitToolStripMenuItem";
3 office 146 this.quitToolStripMenuItem.Size = new System.Drawing.Size(165, 22);
1 office 147 this.quitToolStripMenuItem.Text = "Quit";
148 this.quitToolStripMenuItem.Click += new System.EventHandler(this.OnContextMenuQuitClick);
149 //
5 office 150 // MisuMainForm
1 office 151 //
152 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
153 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
154 this.ClientSize = new System.Drawing.Size(800, 450);
3 office 155 this.Name = "MisuMainForm";
1 office 156 this.ShowInTaskbar = false;
3 office 157 this.Text = "misu";
5 office 158 this.misuContextMenuStrip.ResumeLayout(false);
1 office 159 this.ResumeLayout(false);
160  
161 }
162  
163 #endregion
164  
3 office 165 private System.Windows.Forms.NotifyIcon misuNotificationIcon;
5 office 166 private System.Windows.Forms.ContextMenuStrip misuContextMenuStrip;
1 office 167 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
168 private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
169 private System.Windows.Forms.ToolStripMenuItem quitToolStripMenuItem;
170 private System.Windows.Forms.ToolStripMenuItem bindKeyToolStripMenuItem;
171 private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
172 private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
173 private System.Windows.Forms.ToolStripMenuItem launchOnBootToolStripMenuItem;
174 private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
175 private System.Windows.Forms.ToolStripMenuItem mouseToolStripMenuItem;
176 private System.Windows.Forms.ToolStripMenuItem keyboardToolStripMenuItem;
177 }
178 }
179