mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Add checkboxes to the PluginList which allow you to enable/disable each plugin on-the-fly (it will no longer respond to events, but you can still configure it, etc.). These settings are preserved in a new Core setting. Also enabled full-row select for easier selection in the listview. Also increased the height of the PluginList slightly. (Personally, I'd like it even taller.) Also made slight sizing adjustments to the plugin tabs, which now show 3 letters when collapsed and has a bit of extra space so the longest one does not get cut-off when selected/bolded. Furthermore, the list of plugins is now sorted alphabetically. Finally, set the plugin listview Dock = Fill (vs. Anchored). This seems to have fixed the listview resize problem I was experiencing.
657 lines
29 KiB
C#
657 lines
29 KiB
C#
namespace Observatory.UI
|
||
{
|
||
partial class CoreForm
|
||
{
|
||
/// <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()
|
||
{
|
||
components = new System.ComponentModel.Container();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CoreForm));
|
||
CoreMenu = new MenuStrip();
|
||
coreToolStripMenuItem = new ToolStripMenuItem();
|
||
toolStripMenuItem1 = new ToolStripMenuItem();
|
||
CorePanel = new Panel();
|
||
ThemeLabel = new Label();
|
||
PluginSettingsButton = new Button();
|
||
VoiceSettingsPanel = new Panel();
|
||
VoiceSpeedSlider = new TrackBar();
|
||
VoiceVolumeSlider = new TrackBar();
|
||
VoiceTestButton = new Button();
|
||
VoiceCheckbox = new CheckBox();
|
||
VoiceDropdown = new ComboBox();
|
||
VoiceLabel = new Label();
|
||
VoiceSpeedLabel = new Label();
|
||
VoiceVolumeLabel = new Label();
|
||
VoiceNotificationLabel = new Label();
|
||
PopupSettingsPanel = new Panel();
|
||
DurationSpinner = new NumericUpDown();
|
||
ScaleSpinner = new NumericUpDown();
|
||
LabelColour = new Label();
|
||
TestButton = new Button();
|
||
ColourButton = new Button();
|
||
PopupCheckbox = new CheckBox();
|
||
LabelDuration = new Label();
|
||
LabelScale = new Label();
|
||
FontDropdown = new ComboBox();
|
||
LabelFont = new Label();
|
||
CornerDropdown = new ComboBox();
|
||
DisplayDropdown = new ComboBox();
|
||
CornerLabel = new Label();
|
||
DisplayLabel = new Label();
|
||
PopupNotificationLabel = new Label();
|
||
PluginFolderButton = new Button();
|
||
PluginList = new ListView();
|
||
NameColumn = new ColumnHeader();
|
||
TypeColumn = new ColumnHeader();
|
||
VersionColumn = new ColumnHeader();
|
||
StatusColumn = new ColumnHeader();
|
||
ReadAllButton = new Button();
|
||
ToggleMonitorButton = new Button();
|
||
ClearButton = new Button();
|
||
ExportButton = new Button();
|
||
GithubLink = new LinkLabel();
|
||
DonateLink = new LinkLabel();
|
||
PopupColour = new ColorDialog();
|
||
OverrideTooltip = new ToolTip(components);
|
||
CoreMenu.SuspendLayout();
|
||
CorePanel.SuspendLayout();
|
||
VoiceSettingsPanel.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)VoiceSpeedSlider).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)VoiceVolumeSlider).BeginInit();
|
||
PopupSettingsPanel.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)DurationSpinner).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)ScaleSpinner).BeginInit();
|
||
SuspendLayout();
|
||
//
|
||
// CoreMenu
|
||
//
|
||
CoreMenu.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
|
||
CoreMenu.AutoSize = false;
|
||
CoreMenu.Dock = DockStyle.None;
|
||
CoreMenu.Items.AddRange(new ToolStripItem[] { coreToolStripMenuItem, toolStripMenuItem1 });
|
||
CoreMenu.LayoutStyle = ToolStripLayoutStyle.VerticalStackWithOverflow;
|
||
CoreMenu.Location = new Point(0, 0);
|
||
CoreMenu.Name = "CoreMenu";
|
||
CoreMenu.Size = new Size(120, 691);
|
||
CoreMenu.TabIndex = 0;
|
||
//
|
||
// coreToolStripMenuItem
|
||
//
|
||
coreToolStripMenuItem.Font = new Font("Segoe UI", 18F, FontStyle.Regular, GraphicsUnit.Point);
|
||
coreToolStripMenuItem.Name = "coreToolStripMenuItem";
|
||
coreToolStripMenuItem.Size = new Size(113, 36);
|
||
coreToolStripMenuItem.Text = "Core";
|
||
coreToolStripMenuItem.TextAlign = ContentAlignment.MiddleLeft;
|
||
//
|
||
// toolStripMenuItem1
|
||
//
|
||
toolStripMenuItem1.Alignment = ToolStripItemAlignment.Right;
|
||
toolStripMenuItem1.Font = new Font("Segoe UI", 18F, FontStyle.Regular, GraphicsUnit.Point);
|
||
toolStripMenuItem1.Name = "toolStripMenuItem1";
|
||
toolStripMenuItem1.Size = new Size(113, 36);
|
||
toolStripMenuItem1.Text = "<";
|
||
toolStripMenuItem1.TextAlign = ContentAlignment.MiddleLeft;
|
||
//
|
||
// CorePanel
|
||
//
|
||
CorePanel.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||
CorePanel.AutoScroll = true;
|
||
CorePanel.Controls.Add(ThemeLabel);
|
||
CorePanel.Controls.Add(PluginSettingsButton);
|
||
CorePanel.Controls.Add(VoiceSettingsPanel);
|
||
CorePanel.Controls.Add(VoiceNotificationLabel);
|
||
CorePanel.Controls.Add(PopupSettingsPanel);
|
||
CorePanel.Controls.Add(PopupNotificationLabel);
|
||
CorePanel.Controls.Add(PluginFolderButton);
|
||
CorePanel.Controls.Add(PluginList);
|
||
CorePanel.Location = new Point(123, 12);
|
||
CorePanel.Name = "CorePanel";
|
||
CorePanel.Size = new Size(665, 679);
|
||
CorePanel.TabIndex = 1;
|
||
//
|
||
// ThemeLabel
|
||
//
|
||
ThemeLabel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
ThemeLabel.BorderStyle = BorderStyle.FixedSingle;
|
||
ThemeLabel.Location = new Point(3, 656);
|
||
ThemeLabel.Name = "ThemeLabel";
|
||
ThemeLabel.Size = new Size(659, 23);
|
||
ThemeLabel.TabIndex = 7;
|
||
ThemeLabel.Text = "❯ Theme";
|
||
ThemeLabel.TextAlign = ContentAlignment.MiddleLeft;
|
||
//
|
||
// PluginSettingsButton
|
||
//
|
||
PluginSettingsButton.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||
PluginSettingsButton.FlatAppearance.BorderSize = 0;
|
||
PluginSettingsButton.FlatStyle = FlatStyle.Flat;
|
||
PluginSettingsButton.Location = new Point(396, 193);
|
||
PluginSettingsButton.Name = "PluginSettingsButton";
|
||
PluginSettingsButton.Size = new Size(130, 23);
|
||
PluginSettingsButton.TabIndex = 6;
|
||
PluginSettingsButton.Text = "Plugin Settings";
|
||
PluginSettingsButton.UseVisualStyleBackColor = false;
|
||
PluginSettingsButton.Click += PluginSettingsButton_Click;
|
||
//
|
||
// VoiceSettingsPanel
|
||
//
|
||
VoiceSettingsPanel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
VoiceSettingsPanel.Controls.Add(VoiceSpeedSlider);
|
||
VoiceSettingsPanel.Controls.Add(VoiceVolumeSlider);
|
||
VoiceSettingsPanel.Controls.Add(VoiceTestButton);
|
||
VoiceSettingsPanel.Controls.Add(VoiceCheckbox);
|
||
VoiceSettingsPanel.Controls.Add(VoiceDropdown);
|
||
VoiceSettingsPanel.Controls.Add(VoiceLabel);
|
||
VoiceSettingsPanel.Controls.Add(VoiceSpeedLabel);
|
||
VoiceSettingsPanel.Controls.Add(VoiceVolumeLabel);
|
||
VoiceSettingsPanel.Location = new Point(3, 479);
|
||
VoiceSettingsPanel.Name = "VoiceSettingsPanel";
|
||
VoiceSettingsPanel.Size = new Size(659, 177);
|
||
VoiceSettingsPanel.TabIndex = 5;
|
||
VoiceSettingsPanel.Visible = false;
|
||
//
|
||
// VoiceSpeedSlider
|
||
//
|
||
VoiceSpeedSlider.Location = new Point(121, 51);
|
||
VoiceSpeedSlider.Maximum = 100;
|
||
VoiceSpeedSlider.Name = "VoiceSpeedSlider";
|
||
VoiceSpeedSlider.Size = new Size(120, 45);
|
||
VoiceSpeedSlider.TabIndex = 15;
|
||
VoiceSpeedSlider.TickFrequency = 10;
|
||
VoiceSpeedSlider.TickStyle = TickStyle.Both;
|
||
VoiceSpeedSlider.Value = 50;
|
||
VoiceSpeedSlider.Scroll += VoiceSpeedSlider_Scroll;
|
||
//
|
||
// VoiceVolumeSlider
|
||
//
|
||
VoiceVolumeSlider.LargeChange = 10;
|
||
VoiceVolumeSlider.Location = new Point(120, 0);
|
||
VoiceVolumeSlider.Maximum = 100;
|
||
VoiceVolumeSlider.Name = "VoiceVolumeSlider";
|
||
VoiceVolumeSlider.Size = new Size(121, 45);
|
||
VoiceVolumeSlider.TabIndex = 14;
|
||
VoiceVolumeSlider.TickFrequency = 10;
|
||
VoiceVolumeSlider.TickStyle = TickStyle.Both;
|
||
VoiceVolumeSlider.Value = 100;
|
||
VoiceVolumeSlider.Scroll += VoiceVolumeSlider_Scroll;
|
||
//
|
||
// VoiceTestButton
|
||
//
|
||
VoiceTestButton.FlatStyle = FlatStyle.Flat;
|
||
VoiceTestButton.Location = new Point(190, 131);
|
||
VoiceTestButton.Name = "VoiceTestButton";
|
||
VoiceTestButton.Size = new Size(51, 23);
|
||
VoiceTestButton.TabIndex = 13;
|
||
VoiceTestButton.Text = "Test";
|
||
VoiceTestButton.UseVisualStyleBackColor = false;
|
||
//
|
||
// VoiceCheckbox
|
||
//
|
||
VoiceCheckbox.AutoSize = true;
|
||
VoiceCheckbox.Location = new Point(120, 134);
|
||
VoiceCheckbox.Name = "VoiceCheckbox";
|
||
VoiceCheckbox.Size = new Size(68, 19);
|
||
VoiceCheckbox.TabIndex = 11;
|
||
VoiceCheckbox.Text = "Enabled";
|
||
VoiceCheckbox.UseVisualStyleBackColor = true;
|
||
VoiceCheckbox.CheckedChanged += VoiceCheckbox_CheckedChanged;
|
||
//
|
||
// VoiceDropdown
|
||
//
|
||
VoiceDropdown.FormattingEnabled = true;
|
||
VoiceDropdown.Location = new Point(121, 102);
|
||
VoiceDropdown.Name = "VoiceDropdown";
|
||
VoiceDropdown.Size = new Size(121, 23);
|
||
VoiceDropdown.TabIndex = 5;
|
||
VoiceDropdown.SelectedIndexChanged += VoiceDropdown_SelectedIndexChanged;
|
||
//
|
||
// VoiceLabel
|
||
//
|
||
VoiceLabel.AutoSize = true;
|
||
VoiceLabel.Location = new Point(77, 105);
|
||
VoiceLabel.Name = "VoiceLabel";
|
||
VoiceLabel.Size = new Size(38, 15);
|
||
VoiceLabel.TabIndex = 4;
|
||
VoiceLabel.Text = "Voice:";
|
||
VoiceLabel.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// VoiceSpeedLabel
|
||
//
|
||
VoiceSpeedLabel.AutoSize = true;
|
||
VoiceSpeedLabel.Location = new Point(73, 63);
|
||
VoiceSpeedLabel.Name = "VoiceSpeedLabel";
|
||
VoiceSpeedLabel.Size = new Size(42, 15);
|
||
VoiceSpeedLabel.TabIndex = 1;
|
||
VoiceSpeedLabel.Text = "Speed:";
|
||
VoiceSpeedLabel.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// VoiceVolumeLabel
|
||
//
|
||
VoiceVolumeLabel.AutoSize = true;
|
||
VoiceVolumeLabel.Location = new Point(64, 12);
|
||
VoiceVolumeLabel.Name = "VoiceVolumeLabel";
|
||
VoiceVolumeLabel.Size = new Size(50, 15);
|
||
VoiceVolumeLabel.TabIndex = 0;
|
||
VoiceVolumeLabel.Text = "Volume:";
|
||
VoiceVolumeLabel.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// VoiceNotificationLabel
|
||
//
|
||
VoiceNotificationLabel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
VoiceNotificationLabel.BorderStyle = BorderStyle.FixedSingle;
|
||
VoiceNotificationLabel.Location = new Point(3, 456);
|
||
VoiceNotificationLabel.Name = "VoiceNotificationLabel";
|
||
VoiceNotificationLabel.Size = new Size(659, 23);
|
||
VoiceNotificationLabel.TabIndex = 4;
|
||
VoiceNotificationLabel.Text = "❯ Voice Notifications";
|
||
VoiceNotificationLabel.TextAlign = ContentAlignment.MiddleLeft;
|
||
VoiceNotificationLabel.Click += VoiceNotificationLabel_Click;
|
||
//
|
||
// PopupSettingsPanel
|
||
//
|
||
PopupSettingsPanel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
PopupSettingsPanel.Controls.Add(DurationSpinner);
|
||
PopupSettingsPanel.Controls.Add(ScaleSpinner);
|
||
PopupSettingsPanel.Controls.Add(LabelColour);
|
||
PopupSettingsPanel.Controls.Add(TestButton);
|
||
PopupSettingsPanel.Controls.Add(ColourButton);
|
||
PopupSettingsPanel.Controls.Add(PopupCheckbox);
|
||
PopupSettingsPanel.Controls.Add(LabelDuration);
|
||
PopupSettingsPanel.Controls.Add(LabelScale);
|
||
PopupSettingsPanel.Controls.Add(FontDropdown);
|
||
PopupSettingsPanel.Controls.Add(LabelFont);
|
||
PopupSettingsPanel.Controls.Add(CornerDropdown);
|
||
PopupSettingsPanel.Controls.Add(DisplayDropdown);
|
||
PopupSettingsPanel.Controls.Add(CornerLabel);
|
||
PopupSettingsPanel.Controls.Add(DisplayLabel);
|
||
PopupSettingsPanel.Location = new Point(3, 248);
|
||
PopupSettingsPanel.Name = "PopupSettingsPanel";
|
||
PopupSettingsPanel.Size = new Size(659, 208);
|
||
PopupSettingsPanel.TabIndex = 3;
|
||
PopupSettingsPanel.Visible = false;
|
||
//
|
||
// DurationSpinner
|
||
//
|
||
DurationSpinner.Increment = new decimal(new int[] { 25, 0, 0, 0 });
|
||
DurationSpinner.Location = new Point(121, 119);
|
||
DurationSpinner.Maximum = new decimal(new int[] { 60000, 0, 0, 0 });
|
||
DurationSpinner.Minimum = new decimal(new int[] { 100, 0, 0, 0 });
|
||
DurationSpinner.Name = "DurationSpinner";
|
||
DurationSpinner.Size = new Size(120, 23);
|
||
DurationSpinner.TabIndex = 15;
|
||
DurationSpinner.Value = new decimal(new int[] { 8000, 0, 0, 0 });
|
||
DurationSpinner.ValueChanged += DurationSpinner_ValueChanged;
|
||
//
|
||
// ScaleSpinner
|
||
//
|
||
ScaleSpinner.Location = new Point(121, 90);
|
||
ScaleSpinner.Maximum = new decimal(new int[] { 500, 0, 0, 0 });
|
||
ScaleSpinner.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
|
||
ScaleSpinner.Name = "ScaleSpinner";
|
||
ScaleSpinner.Size = new Size(120, 23);
|
||
ScaleSpinner.TabIndex = 14;
|
||
ScaleSpinner.Value = new decimal(new int[] { 100, 0, 0, 0 });
|
||
ScaleSpinner.ValueChanged += ScaleSpinner_ValueChanged;
|
||
//
|
||
// LabelColour
|
||
//
|
||
LabelColour.AutoSize = true;
|
||
LabelColour.Location = new Point(68, 152);
|
||
LabelColour.Name = "LabelColour";
|
||
LabelColour.Size = new Size(46, 15);
|
||
LabelColour.TabIndex = 13;
|
||
LabelColour.Text = "Colour:";
|
||
LabelColour.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// TestButton
|
||
//
|
||
TestButton.FlatStyle = FlatStyle.Flat;
|
||
TestButton.Location = new Point(190, 148);
|
||
TestButton.Name = "TestButton";
|
||
TestButton.Size = new Size(51, 23);
|
||
TestButton.TabIndex = 12;
|
||
TestButton.Text = "Test";
|
||
TestButton.UseVisualStyleBackColor = false;
|
||
TestButton.Click += TestButton_Click;
|
||
//
|
||
// ColourButton
|
||
//
|
||
ColourButton.FlatStyle = FlatStyle.Flat;
|
||
ColourButton.Location = new Point(121, 148);
|
||
ColourButton.Name = "ColourButton";
|
||
ColourButton.Size = new Size(51, 23);
|
||
ColourButton.TabIndex = 11;
|
||
ColourButton.UseVisualStyleBackColor = true;
|
||
ColourButton.Click += ColourButton_Click;
|
||
//
|
||
// PopupCheckbox
|
||
//
|
||
PopupCheckbox.AutoSize = true;
|
||
PopupCheckbox.Location = new Point(120, 177);
|
||
PopupCheckbox.Name = "PopupCheckbox";
|
||
PopupCheckbox.Size = new Size(68, 19);
|
||
PopupCheckbox.TabIndex = 10;
|
||
PopupCheckbox.Text = "Enabled";
|
||
PopupCheckbox.UseVisualStyleBackColor = true;
|
||
PopupCheckbox.CheckedChanged += PopupCheckbox_CheckedChanged;
|
||
//
|
||
// LabelDuration
|
||
//
|
||
LabelDuration.AutoSize = true;
|
||
LabelDuration.Location = new Point(32, 121);
|
||
LabelDuration.Name = "LabelDuration";
|
||
LabelDuration.Size = new Size(83, 15);
|
||
LabelDuration.TabIndex = 9;
|
||
LabelDuration.Text = "Duration (ms):";
|
||
LabelDuration.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// LabelScale
|
||
//
|
||
LabelScale.AutoSize = true;
|
||
LabelScale.Location = new Point(57, 92);
|
||
LabelScale.Name = "LabelScale";
|
||
LabelScale.Size = new Size(58, 15);
|
||
LabelScale.TabIndex = 7;
|
||
LabelScale.Text = "Scale (%):";
|
||
LabelScale.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// FontDropdown
|
||
//
|
||
FontDropdown.FormattingEnabled = true;
|
||
FontDropdown.Location = new Point(120, 61);
|
||
FontDropdown.Name = "FontDropdown";
|
||
FontDropdown.Size = new Size(121, 23);
|
||
FontDropdown.TabIndex = 5;
|
||
FontDropdown.SelectedIndexChanged += FontDropdown_SelectedIndexChanged;
|
||
//
|
||
// LabelFont
|
||
//
|
||
LabelFont.AutoSize = true;
|
||
LabelFont.Location = new Point(80, 64);
|
||
LabelFont.Name = "LabelFont";
|
||
LabelFont.Size = new Size(34, 15);
|
||
LabelFont.TabIndex = 4;
|
||
LabelFont.Text = "Font:";
|
||
LabelFont.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// CornerDropdown
|
||
//
|
||
CornerDropdown.FormattingEnabled = true;
|
||
CornerDropdown.Items.AddRange(new object[] { "Bottom-Right", "Bottom-Left", "Top-Right", "Top-Left" });
|
||
CornerDropdown.Location = new Point(120, 32);
|
||
CornerDropdown.Name = "CornerDropdown";
|
||
CornerDropdown.Size = new Size(121, 23);
|
||
CornerDropdown.TabIndex = 3;
|
||
CornerDropdown.SelectedIndexChanged += CornerDropdown_SelectedIndexChanged;
|
||
//
|
||
// DisplayDropdown
|
||
//
|
||
DisplayDropdown.FormattingEnabled = true;
|
||
DisplayDropdown.Location = new Point(120, 3);
|
||
DisplayDropdown.Name = "DisplayDropdown";
|
||
DisplayDropdown.Size = new Size(121, 23);
|
||
DisplayDropdown.TabIndex = 2;
|
||
DisplayDropdown.SelectedIndexChanged += DisplayDropdown_SelectedIndexChanged;
|
||
//
|
||
// CornerLabel
|
||
//
|
||
CornerLabel.AutoSize = true;
|
||
CornerLabel.Location = new Point(68, 35);
|
||
CornerLabel.Name = "CornerLabel";
|
||
CornerLabel.Size = new Size(46, 15);
|
||
CornerLabel.TabIndex = 1;
|
||
CornerLabel.Text = "Corner:";
|
||
CornerLabel.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// DisplayLabel
|
||
//
|
||
DisplayLabel.AutoSize = true;
|
||
DisplayLabel.Location = new Point(66, 6);
|
||
DisplayLabel.Name = "DisplayLabel";
|
||
DisplayLabel.Size = new Size(48, 15);
|
||
DisplayLabel.TabIndex = 0;
|
||
DisplayLabel.Text = "Display:";
|
||
DisplayLabel.TextAlign = ContentAlignment.MiddleRight;
|
||
//
|
||
// PopupNotificationLabel
|
||
//
|
||
PopupNotificationLabel.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
PopupNotificationLabel.BorderStyle = BorderStyle.FixedSingle;
|
||
PopupNotificationLabel.Location = new Point(3, 225);
|
||
PopupNotificationLabel.Name = "PopupNotificationLabel";
|
||
PopupNotificationLabel.Size = new Size(659, 23);
|
||
PopupNotificationLabel.TabIndex = 2;
|
||
PopupNotificationLabel.Text = "❯ Popup Notifications";
|
||
PopupNotificationLabel.TextAlign = ContentAlignment.MiddleLeft;
|
||
PopupNotificationLabel.Click += PopupNotificationLabel_Click;
|
||
//
|
||
// PluginFolderButton
|
||
//
|
||
PluginFolderButton.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
||
PluginFolderButton.FlatAppearance.BorderSize = 0;
|
||
PluginFolderButton.FlatStyle = FlatStyle.Flat;
|
||
PluginFolderButton.Location = new Point(532, 193);
|
||
PluginFolderButton.Name = "PluginFolderButton";
|
||
PluginFolderButton.Size = new Size(130, 23);
|
||
PluginFolderButton.TabIndex = 1;
|
||
PluginFolderButton.Text = "Open Plugin Folder";
|
||
PluginFolderButton.UseVisualStyleBackColor = false;
|
||
//
|
||
// PluginList
|
||
//
|
||
PluginList.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
||
PluginList.BorderStyle = BorderStyle.None;
|
||
PluginList.CheckBoxes = true;
|
||
PluginList.Columns.AddRange(new ColumnHeader[] { NameColumn, TypeColumn, VersionColumn, StatusColumn });
|
||
PluginList.FullRowSelect = true;
|
||
PluginList.HeaderStyle = ColumnHeaderStyle.Nonclickable;
|
||
PluginList.ImeMode = ImeMode.NoControl;
|
||
PluginList.Location = new Point(3, 3);
|
||
PluginList.MultiSelect = false;
|
||
PluginList.Name = "PluginList";
|
||
PluginList.OwnerDraw = true;
|
||
PluginList.Size = new Size(659, 184);
|
||
PluginList.TabIndex = 0;
|
||
PluginList.UseCompatibleStateImageBehavior = false;
|
||
PluginList.View = View.Details;
|
||
PluginList.ItemChecked += PluginList_ItemChecked;
|
||
PluginList.Resize += PluginList_Resize;
|
||
//
|
||
// NameColumn
|
||
//
|
||
NameColumn.Text = "Plugin";
|
||
NameColumn.Width = 180;
|
||
//
|
||
// TypeColumn
|
||
//
|
||
TypeColumn.Text = "Type";
|
||
TypeColumn.Width = 120;
|
||
//
|
||
// VersionColumn
|
||
//
|
||
VersionColumn.Text = "Version";
|
||
VersionColumn.Width = 120;
|
||
//
|
||
// StatusColumn
|
||
//
|
||
StatusColumn.Text = "Status";
|
||
//
|
||
// ReadAllButton
|
||
//
|
||
ReadAllButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
ReadAllButton.FlatAppearance.BorderSize = 0;
|
||
ReadAllButton.FlatStyle = FlatStyle.Flat;
|
||
ReadAllButton.Location = new Point(713, 698);
|
||
ReadAllButton.Name = "ReadAllButton";
|
||
ReadAllButton.Size = new Size(75, 23);
|
||
ReadAllButton.TabIndex = 2;
|
||
ReadAllButton.Text = "Read All";
|
||
ReadAllButton.UseVisualStyleBackColor = false;
|
||
ReadAllButton.Click += ReadAllButton_Click;
|
||
//
|
||
// ToggleMonitorButton
|
||
//
|
||
ToggleMonitorButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
ToggleMonitorButton.FlatAppearance.BorderSize = 0;
|
||
ToggleMonitorButton.FlatStyle = FlatStyle.Flat;
|
||
ToggleMonitorButton.Location = new Point(610, 698);
|
||
ToggleMonitorButton.Name = "ToggleMonitorButton";
|
||
ToggleMonitorButton.Size = new Size(97, 23);
|
||
ToggleMonitorButton.TabIndex = 3;
|
||
ToggleMonitorButton.Text = "Start Monitor";
|
||
ToggleMonitorButton.UseVisualStyleBackColor = false;
|
||
ToggleMonitorButton.Click += ToggleMonitorButton_Click;
|
||
//
|
||
// ClearButton
|
||
//
|
||
ClearButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
ClearButton.FlatAppearance.BorderSize = 0;
|
||
ClearButton.FlatStyle = FlatStyle.Flat;
|
||
ClearButton.Location = new Point(529, 698);
|
||
ClearButton.Name = "ClearButton";
|
||
ClearButton.Size = new Size(75, 23);
|
||
ClearButton.TabIndex = 4;
|
||
ClearButton.Text = "Clear";
|
||
ClearButton.UseVisualStyleBackColor = false;
|
||
//
|
||
// ExportButton
|
||
//
|
||
ExportButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
||
ExportButton.FlatAppearance.BorderSize = 0;
|
||
ExportButton.FlatStyle = FlatStyle.Flat;
|
||
ExportButton.Location = new Point(448, 698);
|
||
ExportButton.Name = "ExportButton";
|
||
ExportButton.Size = new Size(75, 23);
|
||
ExportButton.TabIndex = 5;
|
||
ExportButton.Text = "Export";
|
||
ExportButton.UseVisualStyleBackColor = false;
|
||
//
|
||
// GithubLink
|
||
//
|
||
GithubLink.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||
GithubLink.AutoSize = true;
|
||
GithubLink.Location = new Point(12, 694);
|
||
GithubLink.Name = "GithubLink";
|
||
GithubLink.Size = new Size(42, 15);
|
||
GithubLink.TabIndex = 6;
|
||
GithubLink.TabStop = true;
|
||
GithubLink.Text = "github";
|
||
GithubLink.LinkClicked += GithubLink_LinkClicked;
|
||
//
|
||
// DonateLink
|
||
//
|
||
DonateLink.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
||
DonateLink.AutoSize = true;
|
||
DonateLink.Location = new Point(12, 709);
|
||
DonateLink.Name = "DonateLink";
|
||
DonateLink.Size = new Size(45, 15);
|
||
DonateLink.TabIndex = 7;
|
||
DonateLink.TabStop = true;
|
||
DonateLink.Text = "Donate";
|
||
DonateLink.LinkClicked += DonateLink_LinkClicked;
|
||
//
|
||
// CoreForm
|
||
//
|
||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||
AutoScaleMode = AutoScaleMode.Font;
|
||
ClientSize = new Size(800, 733);
|
||
Controls.Add(DonateLink);
|
||
Controls.Add(GithubLink);
|
||
Controls.Add(ExportButton);
|
||
Controls.Add(ClearButton);
|
||
Controls.Add(ToggleMonitorButton);
|
||
Controls.Add(ReadAllButton);
|
||
Controls.Add(CorePanel);
|
||
Controls.Add(CoreMenu);
|
||
Icon = (Icon)resources.GetObject("$this.Icon");
|
||
MainMenuStrip = CoreMenu;
|
||
Name = "CoreForm";
|
||
Text = "Elite Observatory Core";
|
||
CoreMenu.ResumeLayout(false);
|
||
CoreMenu.PerformLayout();
|
||
CorePanel.ResumeLayout(false);
|
||
VoiceSettingsPanel.ResumeLayout(false);
|
||
VoiceSettingsPanel.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)VoiceSpeedSlider).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)VoiceVolumeSlider).EndInit();
|
||
PopupSettingsPanel.ResumeLayout(false);
|
||
PopupSettingsPanel.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)DurationSpinner).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)ScaleSpinner).EndInit();
|
||
ResumeLayout(false);
|
||
PerformLayout();
|
||
}
|
||
|
||
#endregion
|
||
|
||
private MenuStrip CoreMenu;
|
||
private ToolStripMenuItem coreToolStripMenuItem;
|
||
private Panel CorePanel;
|
||
private Button ReadAllButton;
|
||
private Button ToggleMonitorButton;
|
||
private Button ClearButton;
|
||
private Button ExportButton;
|
||
private LinkLabel GithubLink;
|
||
private LinkLabel DonateLink;
|
||
private ListView PluginList;
|
||
private ColumnHeader NameColumn;
|
||
private ColumnHeader TypeColumn;
|
||
private ColumnHeader VersionColumn;
|
||
private ColumnHeader StatusColumn;
|
||
private Button PluginFolderButton;
|
||
private Panel PopupSettingsPanel;
|
||
private ComboBox CornerDropdown;
|
||
private ComboBox DisplayDropdown;
|
||
private Label CornerLabel;
|
||
private Label DisplayLabel;
|
||
private Label PopupNotificationLabel;
|
||
private NumericUpDown DurationSpinner;
|
||
private NumericUpDown ScaleSpinner;
|
||
private Label LabelColour;
|
||
private Button TestButton;
|
||
private Button ColourButton;
|
||
private CheckBox PopupCheckbox;
|
||
private Label LabelDuration;
|
||
private Label LabelScale;
|
||
private ComboBox FontDropdown;
|
||
private Label LabelFont;
|
||
private ColorDialog PopupColour;
|
||
private ToolStripMenuItem toolStripMenuItem1;
|
||
private Panel VoiceSettingsPanel;
|
||
private TrackBar VoiceSpeedSlider;
|
||
private TrackBar VoiceVolumeSlider;
|
||
private Button VoiceTestButton;
|
||
private CheckBox VoiceCheckbox;
|
||
private ComboBox VoiceDropdown;
|
||
private Label VoiceLabel;
|
||
private Label VoiceSpeedLabel;
|
||
private Label VoiceVolumeLabel;
|
||
private Label VoiceNotificationLabel;
|
||
private Button PluginSettingsButton;
|
||
private Label ThemeLabel;
|
||
private ToolTip OverrideTooltip;
|
||
}
|
||
} |