263 lines
14 KiB
C#
263 lines
14 KiB
C#
|
namespace TibisMathematicsSuite
|
|||
|
{
|
|||
|
partial class MainWindow
|
|||
|
{
|
|||
|
/// <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 Windows Form 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.components = new System.ComponentModel.Container();
|
|||
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
|
|||
|
this.buttonCancel = new DynamicLink.Controls.MyButton();
|
|||
|
this.buttonAccept = new DynamicLink.Controls.MyButton();
|
|||
|
this.groupKeyboardShortcuts = new DynamicLink.Controls.MyGroupBox();
|
|||
|
this.keyShortcutBox = new TibisMathematicsSuite.KeyboardIO.KeyShortcutBox();
|
|||
|
this.buttonSet = new DynamicLink.Controls.MyButton();
|
|||
|
this.buttonClear = new DynamicLink.Controls.MyButton();
|
|||
|
this.labelShortcut = new System.Windows.Forms.Label();
|
|||
|
this.listModules = new System.Windows.Forms.ListView();
|
|||
|
this.listModules_Mod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|||
|
this.listModules_Key = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|||
|
this.notify = new System.Windows.Forms.NotifyIcon(this.components);
|
|||
|
this.notifyContext = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|||
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|||
|
this.notifyContextAbout = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.notifyContextSettings = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.notifyContextExit = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
|||
|
this.groupKeyboardShortcuts.SuspendLayout();
|
|||
|
this.notifyContext.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
this.buttonCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|||
|
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.buttonCancel.Location = new System.Drawing.Point(62, 246);
|
|||
|
this.buttonCancel.Name = "buttonCancel";
|
|||
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonCancel.TabIndex = 5;
|
|||
|
this.buttonCancel.Text = "Cancel";
|
|||
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|||
|
//
|
|||
|
// buttonAccept
|
|||
|
//
|
|||
|
this.buttonAccept.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|||
|
this.buttonAccept.Location = new System.Drawing.Point(143, 246);
|
|||
|
this.buttonAccept.Name = "buttonAccept";
|
|||
|
this.buttonAccept.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonAccept.TabIndex = 4;
|
|||
|
this.buttonAccept.Text = "Accept";
|
|||
|
this.buttonAccept.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAccept.Click += new System.EventHandler(this.buttonAccept_Click);
|
|||
|
//
|
|||
|
// groupKeyboardShortcuts
|
|||
|
//
|
|||
|
this.groupKeyboardShortcuts.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.groupKeyboardShortcuts.BackColor = System.Drawing.Color.Transparent;
|
|||
|
this.groupKeyboardShortcuts.Controls.Add(this.keyShortcutBox);
|
|||
|
this.groupKeyboardShortcuts.Controls.Add(this.buttonSet);
|
|||
|
this.groupKeyboardShortcuts.Controls.Add(this.buttonClear);
|
|||
|
this.groupKeyboardShortcuts.Controls.Add(this.labelShortcut);
|
|||
|
this.groupKeyboardShortcuts.Controls.Add(this.listModules);
|
|||
|
this.groupKeyboardShortcuts.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.groupKeyboardShortcuts.Name = "groupKeyboardShortcuts";
|
|||
|
this.groupKeyboardShortcuts.Padding = new System.Windows.Forms.Padding(3, 7, 3, 3);
|
|||
|
this.groupKeyboardShortcuts.Size = new System.Drawing.Size(257, 223);
|
|||
|
this.groupKeyboardShortcuts.TabIndex = 2;
|
|||
|
this.groupKeyboardShortcuts.TabStop = false;
|
|||
|
this.groupKeyboardShortcuts.Text = "Global keyboard shortcuts";
|
|||
|
//
|
|||
|
// keyShortcutBox
|
|||
|
//
|
|||
|
this.keyShortcutBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|||
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.keyShortcutBox.BackColor = System.Drawing.SystemColors.Window;
|
|||
|
this.keyShortcutBox.Enabled = false;
|
|||
|
this.keyShortcutBox.Location = new System.Drawing.Point(62, 197);
|
|||
|
this.keyShortcutBox.Name = "keyShortcutBox";
|
|||
|
this.keyShortcutBox.ReadOnly = true;
|
|||
|
this.keyShortcutBox.Size = new System.Drawing.Size(113, 20);
|
|||
|
this.keyShortcutBox.TabIndex = 1;
|
|||
|
//
|
|||
|
// buttonSet
|
|||
|
//
|
|||
|
this.buttonSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.buttonSet.Location = new System.Drawing.Point(179, 197);
|
|||
|
this.buttonSet.Margin = new System.Windows.Forms.Padding(1);
|
|||
|
this.buttonSet.Name = "buttonSet";
|
|||
|
this.buttonSet.Size = new System.Drawing.Size(35, 20);
|
|||
|
this.buttonSet.TabIndex = 2;
|
|||
|
this.buttonSet.Text = "Set";
|
|||
|
this.buttonSet.UseVisualStyleBackColor = true;
|
|||
|
this.buttonSet.Click += new System.EventHandler(this.buttonSet_Click);
|
|||
|
//
|
|||
|
// buttonClear
|
|||
|
//
|
|||
|
this.buttonClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|||
|
this.buttonClear.Location = new System.Drawing.Point(216, 197);
|
|||
|
this.buttonClear.Margin = new System.Windows.Forms.Padding(1);
|
|||
|
this.buttonClear.Name = "buttonClear";
|
|||
|
this.buttonClear.Size = new System.Drawing.Size(35, 20);
|
|||
|
this.buttonClear.TabIndex = 3;
|
|||
|
this.buttonClear.Text = "Clear";
|
|||
|
this.buttonClear.UseVisualStyleBackColor = true;
|
|||
|
this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
|
|||
|
//
|
|||
|
// labelShortcut
|
|||
|
//
|
|||
|
this.labelShortcut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|||
|
this.labelShortcut.AutoSize = true;
|
|||
|
this.labelShortcut.Location = new System.Drawing.Point(6, 200);
|
|||
|
this.labelShortcut.Name = "labelShortcut";
|
|||
|
this.labelShortcut.Size = new System.Drawing.Size(50, 13);
|
|||
|
this.labelShortcut.TabIndex = 3;
|
|||
|
this.labelShortcut.Text = "Shortcut:";
|
|||
|
//
|
|||
|
// listModules
|
|||
|
//
|
|||
|
this.listModules.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.listModules.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.listModules.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|||
|
this.listModules_Mod,
|
|||
|
this.listModules_Key});
|
|||
|
this.listModules.FullRowSelect = true;
|
|||
|
this.listModules.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|||
|
this.listModules.HideSelection = false;
|
|||
|
this.listModules.Location = new System.Drawing.Point(7, 24);
|
|||
|
this.listModules.MultiSelect = false;
|
|||
|
this.listModules.Name = "listModules";
|
|||
|
this.listModules.Size = new System.Drawing.Size(244, 168);
|
|||
|
this.listModules.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|||
|
this.listModules.TabIndex = 0;
|
|||
|
this.listModules.UseCompatibleStateImageBehavior = false;
|
|||
|
this.listModules.View = System.Windows.Forms.View.Details;
|
|||
|
this.listModules.SelectedIndexChanged += new System.EventHandler(this.listModules_SelectedIndexChanged);
|
|||
|
//
|
|||
|
// listModules_Mod
|
|||
|
//
|
|||
|
this.listModules_Mod.Text = "Module";
|
|||
|
this.listModules_Mod.Width = 137;
|
|||
|
//
|
|||
|
// listModules_Key
|
|||
|
//
|
|||
|
this.listModules_Key.Text = "Shortcut";
|
|||
|
this.listModules_Key.Width = 100;
|
|||
|
//
|
|||
|
// notify
|
|||
|
//
|
|||
|
this.notify.ContextMenuStrip = this.notifyContext;
|
|||
|
this.notify.Icon = ((System.Drawing.Icon)(resources.GetObject("notify.Icon")));
|
|||
|
this.notify.Text = "Tibi\'s Mathematics Suite";
|
|||
|
this.notify.Visible = true;
|
|||
|
//
|
|||
|
// notifyContext
|
|||
|
//
|
|||
|
this.notifyContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.toolStripSeparator1,
|
|||
|
this.notifyContextAbout,
|
|||
|
this.notifyContextSettings,
|
|||
|
this.notifyContextExit});
|
|||
|
this.notifyContext.Name = "contextMenuStrip1";
|
|||
|
this.notifyContext.Size = new System.Drawing.Size(117, 76);
|
|||
|
//
|
|||
|
// toolStripSeparator1
|
|||
|
//
|
|||
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
|||
|
this.toolStripSeparator1.Size = new System.Drawing.Size(113, 6);
|
|||
|
//
|
|||
|
// notifyContextAbout
|
|||
|
//
|
|||
|
this.notifyContextAbout.Name = "notifyContextAbout";
|
|||
|
this.notifyContextAbout.Size = new System.Drawing.Size(116, 22);
|
|||
|
this.notifyContextAbout.Text = "&About";
|
|||
|
this.notifyContextAbout.Click += new System.EventHandler(this.notifyContextAbout_Click);
|
|||
|
//
|
|||
|
// notifyContextSettings
|
|||
|
//
|
|||
|
this.notifyContextSettings.Image = ((System.Drawing.Image)(resources.GetObject("notifyContextSettings.Image")));
|
|||
|
this.notifyContextSettings.Name = "notifyContextSettings";
|
|||
|
this.notifyContextSettings.Size = new System.Drawing.Size(116, 22);
|
|||
|
this.notifyContextSettings.Text = "&Settings";
|
|||
|
this.notifyContextSettings.Click += new System.EventHandler(this.notifyContextSettings_Click);
|
|||
|
//
|
|||
|
// notifyContextExit
|
|||
|
//
|
|||
|
this.notifyContextExit.Image = ((System.Drawing.Image)(resources.GetObject("notifyContextExit.Image")));
|
|||
|
this.notifyContextExit.Name = "notifyContextExit";
|
|||
|
this.notifyContextExit.Size = new System.Drawing.Size(116, 22);
|
|||
|
this.notifyContextExit.Text = "E&xit";
|
|||
|
this.notifyContextExit.Click += new System.EventHandler(this.notifyContextExit_Click);
|
|||
|
//
|
|||
|
// MainWindow
|
|||
|
//
|
|||
|
this.AcceptButton = this.buttonAccept;
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.BackColor = System.Drawing.Color.Gainsboro;
|
|||
|
this.CancelButton = this.buttonCancel;
|
|||
|
this.ClientSize = new System.Drawing.Size(281, 281);
|
|||
|
this.Controls.Add(this.buttonCancel);
|
|||
|
this.Controls.Add(this.buttonAccept);
|
|||
|
this.Controls.Add(this.groupKeyboardShortcuts);
|
|||
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
this.Name = "MainWindow";
|
|||
|
this.Text = "Suite settings";
|
|||
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainWindow_FormClosing);
|
|||
|
this.groupKeyboardShortcuts.ResumeLayout(false);
|
|||
|
this.groupKeyboardShortcuts.PerformLayout();
|
|||
|
this.notifyContext.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DynamicLink.Controls.MyGroupBox groupKeyboardShortcuts;
|
|||
|
private System.Windows.Forms.ListView listModules;
|
|||
|
private DynamicLink.Controls.MyButton buttonAccept;
|
|||
|
private DynamicLink.Controls.MyButton buttonCancel;
|
|||
|
private System.Windows.Forms.ColumnHeader listModules_Mod;
|
|||
|
private System.Windows.Forms.ColumnHeader listModules_Key;
|
|||
|
private DynamicLink.Controls.MyButton buttonSet;
|
|||
|
private DynamicLink.Controls.MyButton buttonClear;
|
|||
|
private System.Windows.Forms.Label labelShortcut;
|
|||
|
private System.Windows.Forms.NotifyIcon notify;
|
|||
|
private System.Windows.Forms.ContextMenuStrip notifyContext;
|
|||
|
private KeyboardIO.KeyShortcutBox keyShortcutBox;
|
|||
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem notifyContextAbout;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem notifyContextSettings;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem notifyContextExit;
|
|||
|
private System.Windows.Forms.ToolTip toolTip;
|
|||
|
}
|
|||
|
}
|
|||
|
|