From 6e6ddb413d951ce520091d1f78ed2e6268e7252b Mon Sep 17 00:00:00 2001 From: "(Fallox) Nikko Renolds" Date: Sun, 16 Jan 2022 20:28:18 +0000 Subject: [PATCH] Updated SingleBoostr - v4.2.5 --- Source/SingleBoostr.Core/Misc/Const.cs | 2 +- Source/SingleBoostr/Objects/App.cs | 4 +- .../Properties/Resources.Designer.cs | 20 + Source/SingleBoostr/Properties/Resources.resx | 10 +- Source/SingleBoostr/SingleBoostr.csproj | 2 + Source/SingleBoostr/Ui/AppHome.Designer.cs | 504 +++++++++--------- Source/SingleBoostr/Ui/AppHome.cs | 4 +- Source/SingleBoostr/Ui/AppHome.resx | 73 +-- version.json | 4 +- 9 files changed, 318 insertions(+), 305 deletions(-) diff --git a/Source/SingleBoostr.Core/Misc/Const.cs b/Source/SingleBoostr.Core/Misc/Const.cs index 183565b..f9320ea 100644 --- a/Source/SingleBoostr.Core/Misc/Const.cs +++ b/Source/SingleBoostr.Core/Misc/Const.cs @@ -45,7 +45,7 @@ public sealed class Example_Profile public sealed class SingleBoostr { public const string NAME = "SingleBoostr"; - public const string VERSION = "4.2.1"; + public const string VERSION = "4.2.5"; public static string IDLER_EXE => $"{NAME}.Game.exe"; public static string APP_LIST => $"{NAME}.AppList.json"; public static string SETTINGS_FILE => $"{NAME}.Settings.json"; diff --git a/Source/SingleBoostr/Objects/App.cs b/Source/SingleBoostr/Objects/App.cs index 47671d7..30e5dbd 100644 --- a/Source/SingleBoostr/Objects/App.cs +++ b/Source/SingleBoostr/Objects/App.cs @@ -1,18 +1,20 @@ using System; using System.Diagnostics; using System.Threading.Tasks; +using SingleBoostr.Core.Misc; using SingleBoostr.Core.Objects; namespace SingleBoostr { public class App : IComparable { + public int Truncate { get; set; } = 60; public uint Appid { get; set; } public string Name { get; set; } public Process Process { get; set; } public TradingCard Card { get; set; } public int CompareTo(App other) => Name.CompareTo(other.Name); - public string GetIdAndName() => $"{Appid} | {Name}"; + public string GetIdAndName() => Utils.Truncate($"{Appid} | {Name}", Truncate); } } diff --git a/Source/SingleBoostr/Properties/Resources.Designer.cs b/Source/SingleBoostr/Properties/Resources.Designer.cs index 11471c3..4033318 100644 --- a/Source/SingleBoostr/Properties/Resources.Designer.cs +++ b/Source/SingleBoostr/Properties/Resources.Designer.cs @@ -320,6 +320,26 @@ internal static System.Drawing.Bitmap Idle_Selected { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Idle_SelectedL { + get { + object obj = ResourceManager.GetObject("Idle-SelectedL", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap IdleL { + get { + object obj = ResourceManager.GetObject("IdleL", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Source/SingleBoostr/Properties/Resources.resx b/Source/SingleBoostr/Properties/Resources.resx index b0a5234..22e778f 100644 --- a/Source/SingleBoostr/Properties/Resources.resx +++ b/Source/SingleBoostr/Properties/Resources.resx @@ -172,6 +172,9 @@ ..\media\Interface\Media\Chat.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Media\Interface\Media\Button-SelectedL.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\media\Interface\Media\Active.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -214,7 +217,10 @@ ..\media\Interface\Media\header.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Media\Interface\Media\Button-SelectedL.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Media\Interface\Media\IdleL.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Media\Interface\Media\Idle-SelectedL.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/Source/SingleBoostr/SingleBoostr.csproj b/Source/SingleBoostr/SingleBoostr.csproj index c32519f..0ac6b6c 100644 --- a/Source/SingleBoostr/SingleBoostr.csproj +++ b/Source/SingleBoostr/SingleBoostr.csproj @@ -279,6 +279,8 @@ + + diff --git a/Source/SingleBoostr/Ui/AppHome.Designer.cs b/Source/SingleBoostr/Ui/AppHome.Designer.cs index 6d59143..cd3feae 100644 --- a/Source/SingleBoostr/Ui/AppHome.Designer.cs +++ b/Source/SingleBoostr/Ui/AppHome.Designer.cs @@ -35,15 +35,6 @@ private void InitializeComponent() this.PanelUser = new System.Windows.Forms.Panel(); this.PanelUserPicGoBack = new System.Windows.Forms.PictureBox(); this.PanelContainer = new System.Windows.Forms.Panel(); - this.PanelIdle = new System.Windows.Forms.Panel(); - this.PanelIdleLblrandom = new System.Windows.Forms.Label(); - this.PanelIdleLblMatchingSearch = new System.Windows.Forms.Label(); - this.PanelIdleLblClear = new System.Windows.Forms.Label(); - this.PanelIdleLblSelectedGamesCount = new System.Windows.Forms.Label(); - this.PanelIdleBtnIdle = new System.Windows.Forms.Button(); - this.PanelIdleListGamesSelected = new System.Windows.Forms.ListBox(); - this.PanelIdleListGames = new System.Windows.Forms.ListBox(); - this.PanelIdleTxtSearch = new System.Windows.Forms.TextBox(); this.PanelStart = new System.Windows.Forms.Panel(); this.PanelStartBtnDonate = new System.Windows.Forms.Button(); this.PanelStartLblVersion = new System.Windows.Forms.Label(); @@ -57,12 +48,6 @@ private void InitializeComponent() this.PanelLoadingText = new System.Windows.Forms.Label(); this.PanelLoadingSpacer = new System.Windows.Forms.PictureBox(); this.PanelLoadingPic = new System.Windows.Forms.PictureBox(); - this.PanelIdleStarted = new System.Windows.Forms.Panel(); - this.PanelIdleStartedLblIdleTimeWrapper = new System.Windows.Forms.Panel(); - this.PanelIdleStartedLblIdleTime = new System.Windows.Forms.Label(); - this.PanelIdleStartedBtnHide = new System.Windows.Forms.Button(); - this.PanelIdleStartedBtnStop = new System.Windows.Forms.Button(); - this.PanelIdleStartedListGames = new System.Windows.Forms.ListBox(); this.PanelTos = new System.Windows.Forms.Panel(); this.PanelTosTop = new System.Windows.Forms.Panel(); this.PanelTosLblText = new System.Windows.Forms.Label(); @@ -71,6 +56,21 @@ private void InitializeComponent() this.PanelTosBottom = new System.Windows.Forms.Panel(); this.PanelTosBtnDecline = new System.Windows.Forms.Button(); this.PanelTosBtnAccept = new System.Windows.Forms.Button(); + this.PanelIdle = new System.Windows.Forms.Panel(); + this.PanelIdleLblrandom = new System.Windows.Forms.Label(); + this.PanelIdleLblMatchingSearch = new System.Windows.Forms.Label(); + this.PanelIdleLblClear = new System.Windows.Forms.Label(); + this.PanelIdleLblSelectedGamesCount = new System.Windows.Forms.Label(); + this.PanelIdleBtnIdle = new System.Windows.Forms.Button(); + this.PanelIdleListGamesSelected = new System.Windows.Forms.ListBox(); + this.PanelIdleListGames = new System.Windows.Forms.ListBox(); + this.PanelIdleTxtSearch = new System.Windows.Forms.TextBox(); + this.PanelIdleStarted = new System.Windows.Forms.Panel(); + this.PanelIdleStartedLblIdleTimeWrapper = new System.Windows.Forms.Panel(); + this.PanelIdleStartedLblIdleTime = new System.Windows.Forms.Label(); + this.PanelIdleStartedBtnHide = new System.Windows.Forms.Button(); + this.PanelIdleStartedBtnStop = new System.Windows.Forms.Button(); + this.PanelIdleStartedListGames = new System.Windows.Forms.ListBox(); this.PanelCards = new System.Windows.Forms.Panel(); this.PanelCardsBtnLogin = new System.Windows.Forms.Button(); this.PanelCardsStarted = new System.Windows.Forms.Panel(); @@ -99,19 +99,19 @@ private void InitializeComponent() this.PanelUser.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PanelUserPicGoBack)).BeginInit(); this.PanelContainer.SuspendLayout(); - this.PanelIdle.SuspendLayout(); this.PanelStart.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PanelStartPicGithub)).BeginInit(); this.PanelLoading.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PanelLoadingSpacer)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PanelLoadingPic)).BeginInit(); - this.PanelIdleStarted.SuspendLayout(); - this.PanelIdleStartedLblIdleTimeWrapper.SuspendLayout(); this.PanelTos.SuspendLayout(); this.PanelTosTop.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PicTosDividerRight)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PicTosDividerLeft)).BeginInit(); this.PanelTosBottom.SuspendLayout(); + this.PanelIdle.SuspendLayout(); + this.PanelIdleStarted.SuspendLayout(); + this.PanelIdleStartedLblIdleTimeWrapper.SuspendLayout(); this.PanelCards.SuspendLayout(); this.PanelCardsStarted.SuspendLayout(); this.CardsStartedOptionsMenu.SuspendLayout(); @@ -150,7 +150,7 @@ private void InitializeComponent() this.PanelUser.Controls.Add(this.PanelUserPicGoBack); this.PanelUser.Location = new System.Drawing.Point(10, 10); this.PanelUser.Name = "PanelUser"; - this.PanelUser.Size = new System.Drawing.Size(320, 48); + this.PanelUser.Size = new System.Drawing.Size(657, 48); this.PanelUser.TabIndex = 7; this.PanelUser.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelUser_MouseDown); // @@ -170,10 +170,10 @@ private void InitializeComponent() // PanelContainer // this.PanelContainer.BackColor = System.Drawing.Color.Transparent; - this.PanelContainer.Controls.Add(this.PanelTos); - this.PanelContainer.Controls.Add(this.PanelIdle); this.PanelContainer.Controls.Add(this.PanelStart); this.PanelContainer.Controls.Add(this.PanelLoading); + this.PanelContainer.Controls.Add(this.PanelTos); + this.PanelContainer.Controls.Add(this.PanelIdle); this.PanelContainer.Controls.Add(this.PanelIdleStarted); this.PanelContainer.Controls.Add(this.PanelCards); this.PanelContainer.Controls.Add(this.PanelCardsStarted); @@ -183,137 +183,6 @@ private void InitializeComponent() this.PanelContainer.Size = new System.Drawing.Size(870, 480); this.PanelContainer.TabIndex = 4; // - // PanelIdle - // - this.PanelIdle.BackColor = System.Drawing.Color.Transparent; - this.PanelIdle.Controls.Add(this.PanelIdleLblrandom); - this.PanelIdle.Controls.Add(this.PanelIdleLblMatchingSearch); - this.PanelIdle.Controls.Add(this.PanelIdleLblClear); - this.PanelIdle.Controls.Add(this.PanelIdleLblSelectedGamesCount); - this.PanelIdle.Controls.Add(this.PanelIdleBtnIdle); - this.PanelIdle.Controls.Add(this.PanelIdleListGamesSelected); - this.PanelIdle.Controls.Add(this.PanelIdleListGames); - this.PanelIdle.Controls.Add(this.PanelIdleTxtSearch); - this.PanelIdle.Dock = System.Windows.Forms.DockStyle.Fill; - this.PanelIdle.Location = new System.Drawing.Point(0, 0); - this.PanelIdle.Name = "PanelIdle"; - this.PanelIdle.Size = new System.Drawing.Size(870, 480); - this.PanelIdle.TabIndex = 7; - this.PanelIdle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelIdle_MouseDown); - // - // PanelIdleLblrandom - // - this.PanelIdleLblrandom.AutoSize = true; - this.PanelIdleLblrandom.Cursor = System.Windows.Forms.Cursors.Hand; - this.PanelIdleLblrandom.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleLblrandom.ForeColor = System.Drawing.Color.Gray; - this.PanelIdleLblrandom.Location = new System.Drawing.Point(793, 91); - this.PanelIdleLblrandom.Name = "PanelIdleLblrandom"; - this.PanelIdleLblrandom.Size = new System.Drawing.Size(65, 20); - this.PanelIdleLblrandom.TabIndex = 11; - this.PanelIdleLblrandom.Text = "Random"; - this.PanelIdleLblrandom.Click += new System.EventHandler(this.PanelIdleLblrandom_Click); - this.PanelIdleLblrandom.MouseEnter += new System.EventHandler(this.PanelIdleLblrandom_MouseEnter); - this.PanelIdleLblrandom.MouseLeave += new System.EventHandler(this.PanelIdleLblrandom_MouseLeave); - // - // PanelIdleLblMatchingSearch - // - this.PanelIdleLblMatchingSearch.AutoSize = true; - this.PanelIdleLblMatchingSearch.Cursor = System.Windows.Forms.Cursors.Default; - this.PanelIdleLblMatchingSearch.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleLblMatchingSearch.ForeColor = System.Drawing.Color.Gray; - this.PanelIdleLblMatchingSearch.Location = new System.Drawing.Point(8, 89); - this.PanelIdleLblMatchingSearch.Name = "PanelIdleLblMatchingSearch"; - this.PanelIdleLblMatchingSearch.Size = new System.Drawing.Size(170, 20); - this.PanelIdleLblMatchingSearch.TabIndex = 10; - this.PanelIdleLblMatchingSearch.Text = "Apps matching search: 0"; - this.PanelIdleLblMatchingSearch.Visible = false; - // - // PanelIdleLblClear - // - this.PanelIdleLblClear.AutoSize = true; - this.PanelIdleLblClear.Cursor = System.Windows.Forms.Cursors.Hand; - this.PanelIdleLblClear.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleLblClear.ForeColor = System.Drawing.Color.Gray; - this.PanelIdleLblClear.Location = new System.Drawing.Point(815, 122); - this.PanelIdleLblClear.Name = "PanelIdleLblClear"; - this.PanelIdleLblClear.Size = new System.Drawing.Size(43, 20); - this.PanelIdleLblClear.TabIndex = 9; - this.PanelIdleLblClear.Text = "Clear"; - this.PanelIdleLblClear.Click += new System.EventHandler(this.PanelIdleLblClear_Click); - this.PanelIdleLblClear.MouseEnter += new System.EventHandler(this.PanelidleLblClear_MouseEnter); - this.PanelIdleLblClear.MouseLeave += new System.EventHandler(this.PanelidleLblClear_MouseLeave); - // - // PanelIdleLblSelectedGamesCount - // - this.PanelIdleLblSelectedGamesCount.AutoSize = true; - this.PanelIdleLblSelectedGamesCount.Cursor = System.Windows.Forms.Cursors.Default; - this.PanelIdleLblSelectedGamesCount.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleLblSelectedGamesCount.ForeColor = System.Drawing.Color.Gray; - this.PanelIdleLblSelectedGamesCount.Location = new System.Drawing.Point(434, 119); - this.PanelIdleLblSelectedGamesCount.Name = "PanelIdleLblSelectedGamesCount"; - this.PanelIdleLblSelectedGamesCount.Size = new System.Drawing.Size(129, 20); - this.PanelIdleLblSelectedGamesCount.TabIndex = 8; - this.PanelIdleLblSelectedGamesCount.Text = "Selected games: 0"; - // - // PanelIdleBtnIdle - // - this.PanelIdleBtnIdle.BackgroundImage = global::SingleBoostr.Properties.Resources.ButtonL; - this.PanelIdleBtnIdle.Cursor = System.Windows.Forms.Cursors.Hand; - this.PanelIdleBtnIdle.FlatAppearance.BorderSize = 0; - this.PanelIdleBtnIdle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.PanelIdleBtnIdle.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleBtnIdle.ForeColor = System.Drawing.Color.White; - this.PanelIdleBtnIdle.Location = new System.Drawing.Point(438, 435); - this.PanelIdleBtnIdle.Name = "PanelIdleBtnIdle"; - this.PanelIdleBtnIdle.Size = new System.Drawing.Size(420, 35); - this.PanelIdleBtnIdle.TabIndex = 3; - this.PanelIdleBtnIdle.Text = "Start Idle"; - this.PanelIdleBtnIdle.UseVisualStyleBackColor = true; - this.PanelIdleBtnIdle.Click += new System.EventHandler(this.PanelidleBtnIdle_Click); - this.PanelIdleBtnIdle.MouseEnter += new System.EventHandler(this.PanelidleBtnIdle_MouseEnter); - this.PanelIdleBtnIdle.MouseLeave += new System.EventHandler(this.PanelidleBtnIdle_MouseLeave); - // - // PanelIdleListGamesSelected - // - this.PanelIdleListGamesSelected.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); - this.PanelIdleListGamesSelected.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.PanelIdleListGamesSelected.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); - this.PanelIdleListGamesSelected.FormattingEnabled = true; - this.PanelIdleListGamesSelected.IntegralHeight = false; - this.PanelIdleListGamesSelected.ItemHeight = 17; - this.PanelIdleListGamesSelected.Location = new System.Drawing.Point(438, 150); - this.PanelIdleListGamesSelected.Name = "PanelIdleListGamesSelected"; - this.PanelIdleListGamesSelected.Size = new System.Drawing.Size(420, 279); - this.PanelIdleListGamesSelected.TabIndex = 2; - this.PanelIdleListGamesSelected.SelectedIndexChanged += new System.EventHandler(this.PanelIdleListGamesSelected_SelectedIndexChanged); - // - // PanelIdleListGames - // - this.PanelIdleListGames.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); - this.PanelIdleListGames.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.PanelIdleListGames.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); - this.PanelIdleListGames.FormattingEnabled = true; - this.PanelIdleListGames.IntegralHeight = false; - this.PanelIdleListGames.ItemHeight = 17; - this.PanelIdleListGames.Location = new System.Drawing.Point(12, 150); - this.PanelIdleListGames.Name = "PanelIdleListGames"; - this.PanelIdleListGames.Size = new System.Drawing.Size(420, 316); - this.PanelIdleListGames.TabIndex = 1; - this.PanelIdleListGames.SelectedIndexChanged += new System.EventHandler(this.PanelIdleListGames_SelectedIndexChanged); - // - // PanelIdleTxtSearch - // - this.PanelIdleTxtSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); - this.PanelIdleTxtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.PanelIdleTxtSearch.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleTxtSearch.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); - this.PanelIdleTxtSearch.Location = new System.Drawing.Point(12, 117); - this.PanelIdleTxtSearch.Name = "PanelIdleTxtSearch"; - this.PanelIdleTxtSearch.Size = new System.Drawing.Size(307, 27); - this.PanelIdleTxtSearch.TabIndex = 0; - this.PanelIdleTxtSearch.TextChanged += new System.EventHandler(this.PanelIdleTxtSearch_TextChanged); - // // PanelStart // this.PanelStart.BackColor = System.Drawing.Color.Transparent; @@ -367,7 +236,7 @@ private void InitializeComponent() this.PanelStartChatPanel.FlowDirection = System.Windows.Forms.FlowDirection.BottomUp; this.PanelStartChatPanel.Location = new System.Drawing.Point(10, 64); this.PanelStartChatPanel.Name = "PanelStartChatPanel"; - this.PanelStartChatPanel.Size = new System.Drawing.Size(320, 379); + this.PanelStartChatPanel.Size = new System.Drawing.Size(657, 379); this.PanelStartChatPanel.TabIndex = 16; this.PanelStartChatPanel.Visible = false; this.PanelStartChatPanel.WrapContents = false; @@ -421,6 +290,7 @@ private void InitializeComponent() // this.PanelStartBtnCards.BackgroundImage = global::SingleBoostr.Properties.Resources.Cards; this.PanelStartBtnCards.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelStartBtnCards.Enabled = false; this.PanelStartBtnCards.FlatAppearance.BorderSize = 0; this.PanelStartBtnCards.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.PanelStartBtnCards.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -436,7 +306,7 @@ private void InitializeComponent() // // PanelStartBtnIdle // - this.PanelStartBtnIdle.BackgroundImage = global::SingleBoostr.Properties.Resources.Idle; + this.PanelStartBtnIdle.BackgroundImage = global::SingleBoostr.Properties.Resources.IdleL; this.PanelStartBtnIdle.Cursor = System.Windows.Forms.Cursors.Hand; this.PanelStartBtnIdle.FlatAppearance.BorderSize = 0; this.PanelStartBtnIdle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; @@ -493,91 +363,6 @@ private void InitializeComponent() this.PanelLoadingPic.TabIndex = 0; this.PanelLoadingPic.TabStop = false; // - // PanelIdleStarted - // - this.PanelIdleStarted.BackColor = System.Drawing.Color.Transparent; - this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedLblIdleTimeWrapper); - this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedBtnHide); - this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedBtnStop); - this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedListGames); - this.PanelIdleStarted.Dock = System.Windows.Forms.DockStyle.Fill; - this.PanelIdleStarted.Location = new System.Drawing.Point(0, 0); - this.PanelIdleStarted.Name = "PanelIdleStarted"; - this.PanelIdleStarted.Size = new System.Drawing.Size(870, 480); - this.PanelIdleStarted.TabIndex = 10; - this.PanelIdleStarted.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelIdleStarted_MouseDown); - // - // PanelIdleStartedLblIdleTimeWrapper - // - this.PanelIdleStartedLblIdleTimeWrapper.Controls.Add(this.PanelIdleStartedLblIdleTime); - this.PanelIdleStartedLblIdleTimeWrapper.Location = new System.Drawing.Point(167, 89); - this.PanelIdleStartedLblIdleTimeWrapper.Name = "PanelIdleStartedLblIdleTimeWrapper"; - this.PanelIdleStartedLblIdleTimeWrapper.Size = new System.Drawing.Size(265, 22); - this.PanelIdleStartedLblIdleTimeWrapper.TabIndex = 9; - // - // PanelIdleStartedLblIdleTime - // - this.PanelIdleStartedLblIdleTime.Cursor = System.Windows.Forms.Cursors.Default; - this.PanelIdleStartedLblIdleTime.Dock = System.Windows.Forms.DockStyle.Fill; - this.PanelIdleStartedLblIdleTime.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleStartedLblIdleTime.ForeColor = System.Drawing.Color.Gray; - this.PanelIdleStartedLblIdleTime.Location = new System.Drawing.Point(0, 0); - this.PanelIdleStartedLblIdleTime.Name = "PanelIdleStartedLblIdleTime"; - this.PanelIdleStartedLblIdleTime.Size = new System.Drawing.Size(265, 22); - this.PanelIdleStartedLblIdleTime.TabIndex = 8; - this.PanelIdleStartedLblIdleTime.Text = "You\'ve been idling for 00:00:00:00"; - this.PanelIdleStartedLblIdleTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // PanelIdleStartedBtnHide - // - this.PanelIdleStartedBtnHide.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PanelIdleStartedBtnHide.BackgroundImage"))); - this.PanelIdleStartedBtnHide.Cursor = System.Windows.Forms.Cursors.Hand; - this.PanelIdleStartedBtnHide.FlatAppearance.BorderSize = 0; - this.PanelIdleStartedBtnHide.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.PanelIdleStartedBtnHide.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleStartedBtnHide.ForeColor = System.Drawing.Color.White; - this.PanelIdleStartedBtnHide.Location = new System.Drawing.Point(167, 240); - this.PanelIdleStartedBtnHide.Name = "PanelIdleStartedBtnHide"; - this.PanelIdleStartedBtnHide.Size = new System.Drawing.Size(51, 35); - this.PanelIdleStartedBtnHide.TabIndex = 13; - this.PanelIdleStartedBtnHide.Text = "Hide"; - this.PanelIdleStartedBtnHide.UseVisualStyleBackColor = true; - this.PanelIdleStartedBtnHide.Click += new System.EventHandler(this.PanelIdleStartedBtnHide_Click); - this.PanelIdleStartedBtnHide.MouseEnter += new System.EventHandler(this.PanelIdleStartedBtnHide_MouseEnter); - this.PanelIdleStartedBtnHide.MouseLeave += new System.EventHandler(this.PanelIdleStartedBtnHide_MouseLeave); - // - // PanelIdleStartedBtnStop - // - this.PanelIdleStartedBtnStop.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PanelIdleStartedBtnStop.BackgroundImage"))); - this.PanelIdleStartedBtnStop.Cursor = System.Windows.Forms.Cursors.Hand; - this.PanelIdleStartedBtnStop.FlatAppearance.BorderSize = 0; - this.PanelIdleStartedBtnStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.PanelIdleStartedBtnStop.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.PanelIdleStartedBtnStop.ForeColor = System.Drawing.Color.White; - this.PanelIdleStartedBtnStop.Location = new System.Drawing.Point(224, 240); - this.PanelIdleStartedBtnStop.Name = "PanelIdleStartedBtnStop"; - this.PanelIdleStartedBtnStop.Size = new System.Drawing.Size(208, 35); - this.PanelIdleStartedBtnStop.TabIndex = 3; - this.PanelIdleStartedBtnStop.Text = "Stop Idle"; - this.PanelIdleStartedBtnStop.UseVisualStyleBackColor = true; - this.PanelIdleStartedBtnStop.Click += new System.EventHandler(this.PanelIdleStartedBtnStop_Click); - this.PanelIdleStartedBtnStop.MouseEnter += new System.EventHandler(this.PanelIdleStartedBtnStop_MouseEnter); - this.PanelIdleStartedBtnStop.MouseLeave += new System.EventHandler(this.PanelIdleStartedBtnStop_MouseLeave); - // - // PanelIdleStartedListGames - // - this.PanelIdleStartedListGames.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); - this.PanelIdleStartedListGames.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.PanelIdleStartedListGames.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); - this.PanelIdleStartedListGames.FormattingEnabled = true; - this.PanelIdleStartedListGames.IntegralHeight = false; - this.PanelIdleStartedListGames.ItemHeight = 17; - this.PanelIdleStartedListGames.Location = new System.Drawing.Point(167, 117); - this.PanelIdleStartedListGames.Name = "PanelIdleStartedListGames"; - this.PanelIdleStartedListGames.SelectionMode = System.Windows.Forms.SelectionMode.None; - this.PanelIdleStartedListGames.Size = new System.Drawing.Size(265, 117); - this.PanelIdleStartedListGames.TabIndex = 2; - // // PanelTos // this.PanelTos.BackColor = System.Drawing.Color.Transparent; @@ -677,6 +462,223 @@ private void InitializeComponent() this.PanelTosBtnAccept.MouseEnter += new System.EventHandler(this.PanelTosBtnAccept_MouseEnter); this.PanelTosBtnAccept.MouseLeave += new System.EventHandler(this.PanelTosBtnAccept_MouseLeave); // + // PanelIdle + // + this.PanelIdle.BackColor = System.Drawing.Color.Transparent; + this.PanelIdle.Controls.Add(this.PanelIdleLblrandom); + this.PanelIdle.Controls.Add(this.PanelIdleLblMatchingSearch); + this.PanelIdle.Controls.Add(this.PanelIdleLblClear); + this.PanelIdle.Controls.Add(this.PanelIdleLblSelectedGamesCount); + this.PanelIdle.Controls.Add(this.PanelIdleBtnIdle); + this.PanelIdle.Controls.Add(this.PanelIdleListGamesSelected); + this.PanelIdle.Controls.Add(this.PanelIdleListGames); + this.PanelIdle.Controls.Add(this.PanelIdleTxtSearch); + this.PanelIdle.Dock = System.Windows.Forms.DockStyle.Fill; + this.PanelIdle.Location = new System.Drawing.Point(0, 0); + this.PanelIdle.Name = "PanelIdle"; + this.PanelIdle.Size = new System.Drawing.Size(870, 480); + this.PanelIdle.TabIndex = 7; + this.PanelIdle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelIdle_MouseDown); + // + // PanelIdleLblrandom + // + this.PanelIdleLblrandom.AutoSize = true; + this.PanelIdleLblrandom.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelIdleLblrandom.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleLblrandom.ForeColor = System.Drawing.Color.Gray; + this.PanelIdleLblrandom.Location = new System.Drawing.Point(793, 91); + this.PanelIdleLblrandom.Name = "PanelIdleLblrandom"; + this.PanelIdleLblrandom.Size = new System.Drawing.Size(65, 20); + this.PanelIdleLblrandom.TabIndex = 11; + this.PanelIdleLblrandom.Text = "Random"; + this.PanelIdleLblrandom.Click += new System.EventHandler(this.PanelIdleLblrandom_Click); + this.PanelIdleLblrandom.MouseEnter += new System.EventHandler(this.PanelIdleLblrandom_MouseEnter); + this.PanelIdleLblrandom.MouseLeave += new System.EventHandler(this.PanelIdleLblrandom_MouseLeave); + // + // PanelIdleLblMatchingSearch + // + this.PanelIdleLblMatchingSearch.AutoSize = true; + this.PanelIdleLblMatchingSearch.Cursor = System.Windows.Forms.Cursors.Default; + this.PanelIdleLblMatchingSearch.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleLblMatchingSearch.ForeColor = System.Drawing.Color.Gray; + this.PanelIdleLblMatchingSearch.Location = new System.Drawing.Point(8, 89); + this.PanelIdleLblMatchingSearch.Name = "PanelIdleLblMatchingSearch"; + this.PanelIdleLblMatchingSearch.Size = new System.Drawing.Size(170, 20); + this.PanelIdleLblMatchingSearch.TabIndex = 10; + this.PanelIdleLblMatchingSearch.Text = "Apps matching search: 0"; + this.PanelIdleLblMatchingSearch.Visible = false; + // + // PanelIdleLblClear + // + this.PanelIdleLblClear.AutoSize = true; + this.PanelIdleLblClear.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelIdleLblClear.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleLblClear.ForeColor = System.Drawing.Color.Gray; + this.PanelIdleLblClear.Location = new System.Drawing.Point(815, 122); + this.PanelIdleLblClear.Name = "PanelIdleLblClear"; + this.PanelIdleLblClear.Size = new System.Drawing.Size(43, 20); + this.PanelIdleLblClear.TabIndex = 9; + this.PanelIdleLblClear.Text = "Clear"; + this.PanelIdleLblClear.Click += new System.EventHandler(this.PanelIdleLblClear_Click); + this.PanelIdleLblClear.MouseEnter += new System.EventHandler(this.PanelidleLblClear_MouseEnter); + this.PanelIdleLblClear.MouseLeave += new System.EventHandler(this.PanelidleLblClear_MouseLeave); + // + // PanelIdleLblSelectedGamesCount + // + this.PanelIdleLblSelectedGamesCount.AutoSize = true; + this.PanelIdleLblSelectedGamesCount.Cursor = System.Windows.Forms.Cursors.Default; + this.PanelIdleLblSelectedGamesCount.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleLblSelectedGamesCount.ForeColor = System.Drawing.Color.Gray; + this.PanelIdleLblSelectedGamesCount.Location = new System.Drawing.Point(434, 119); + this.PanelIdleLblSelectedGamesCount.Name = "PanelIdleLblSelectedGamesCount"; + this.PanelIdleLblSelectedGamesCount.Size = new System.Drawing.Size(129, 20); + this.PanelIdleLblSelectedGamesCount.TabIndex = 8; + this.PanelIdleLblSelectedGamesCount.Text = "Selected games: 0"; + // + // PanelIdleBtnIdle + // + this.PanelIdleBtnIdle.BackgroundImage = global::SingleBoostr.Properties.Resources.ButtonL; + this.PanelIdleBtnIdle.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelIdleBtnIdle.FlatAppearance.BorderSize = 0; + this.PanelIdleBtnIdle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.PanelIdleBtnIdle.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleBtnIdle.ForeColor = System.Drawing.Color.White; + this.PanelIdleBtnIdle.Location = new System.Drawing.Point(438, 435); + this.PanelIdleBtnIdle.Name = "PanelIdleBtnIdle"; + this.PanelIdleBtnIdle.Size = new System.Drawing.Size(420, 35); + this.PanelIdleBtnIdle.TabIndex = 3; + this.PanelIdleBtnIdle.Text = "Start Idle"; + this.PanelIdleBtnIdle.UseVisualStyleBackColor = true; + this.PanelIdleBtnIdle.Click += new System.EventHandler(this.PanelidleBtnIdle_Click); + this.PanelIdleBtnIdle.MouseEnter += new System.EventHandler(this.PanelidleBtnIdle_MouseEnter); + this.PanelIdleBtnIdle.MouseLeave += new System.EventHandler(this.PanelidleBtnIdle_MouseLeave); + // + // PanelIdleListGamesSelected + // + this.PanelIdleListGamesSelected.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); + this.PanelIdleListGamesSelected.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelIdleListGamesSelected.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); + this.PanelIdleListGamesSelected.FormattingEnabled = true; + this.PanelIdleListGamesSelected.IntegralHeight = false; + this.PanelIdleListGamesSelected.ItemHeight = 17; + this.PanelIdleListGamesSelected.Location = new System.Drawing.Point(438, 150); + this.PanelIdleListGamesSelected.Name = "PanelIdleListGamesSelected"; + this.PanelIdleListGamesSelected.Size = new System.Drawing.Size(420, 279); + this.PanelIdleListGamesSelected.TabIndex = 2; + this.PanelIdleListGamesSelected.SelectedIndexChanged += new System.EventHandler(this.PanelIdleListGamesSelected_SelectedIndexChanged); + // + // PanelIdleListGames + // + this.PanelIdleListGames.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); + this.PanelIdleListGames.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelIdleListGames.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); + this.PanelIdleListGames.FormattingEnabled = true; + this.PanelIdleListGames.IntegralHeight = false; + this.PanelIdleListGames.ItemHeight = 17; + this.PanelIdleListGames.Location = new System.Drawing.Point(12, 150); + this.PanelIdleListGames.Name = "PanelIdleListGames"; + this.PanelIdleListGames.Size = new System.Drawing.Size(420, 316); + this.PanelIdleListGames.TabIndex = 1; + this.PanelIdleListGames.SelectedIndexChanged += new System.EventHandler(this.PanelIdleListGames_SelectedIndexChanged); + // + // PanelIdleTxtSearch + // + this.PanelIdleTxtSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); + this.PanelIdleTxtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelIdleTxtSearch.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleTxtSearch.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); + this.PanelIdleTxtSearch.Location = new System.Drawing.Point(12, 117); + this.PanelIdleTxtSearch.Name = "PanelIdleTxtSearch"; + this.PanelIdleTxtSearch.Size = new System.Drawing.Size(420, 27); + this.PanelIdleTxtSearch.TabIndex = 0; + this.PanelIdleTxtSearch.TextChanged += new System.EventHandler(this.PanelIdleTxtSearch_TextChanged); + // + // PanelIdleStarted + // + this.PanelIdleStarted.BackColor = System.Drawing.Color.Transparent; + this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedLblIdleTimeWrapper); + this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedBtnHide); + this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedBtnStop); + this.PanelIdleStarted.Controls.Add(this.PanelIdleStartedListGames); + this.PanelIdleStarted.Dock = System.Windows.Forms.DockStyle.Fill; + this.PanelIdleStarted.Location = new System.Drawing.Point(0, 0); + this.PanelIdleStarted.Name = "PanelIdleStarted"; + this.PanelIdleStarted.Size = new System.Drawing.Size(870, 480); + this.PanelIdleStarted.TabIndex = 10; + this.PanelIdleStarted.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelIdleStarted_MouseDown); + // + // PanelIdleStartedLblIdleTimeWrapper + // + this.PanelIdleStartedLblIdleTimeWrapper.Controls.Add(this.PanelIdleStartedLblIdleTime); + this.PanelIdleStartedLblIdleTimeWrapper.Location = new System.Drawing.Point(281, 91); + this.PanelIdleStartedLblIdleTimeWrapper.Name = "PanelIdleStartedLblIdleTimeWrapper"; + this.PanelIdleStartedLblIdleTimeWrapper.Size = new System.Drawing.Size(265, 22); + this.PanelIdleStartedLblIdleTimeWrapper.TabIndex = 9; + // + // PanelIdleStartedLblIdleTime + // + this.PanelIdleStartedLblIdleTime.Cursor = System.Windows.Forms.Cursors.Default; + this.PanelIdleStartedLblIdleTime.Dock = System.Windows.Forms.DockStyle.Fill; + this.PanelIdleStartedLblIdleTime.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleStartedLblIdleTime.ForeColor = System.Drawing.Color.Gray; + this.PanelIdleStartedLblIdleTime.Location = new System.Drawing.Point(0, 0); + this.PanelIdleStartedLblIdleTime.Name = "PanelIdleStartedLblIdleTime"; + this.PanelIdleStartedLblIdleTime.Size = new System.Drawing.Size(265, 22); + this.PanelIdleStartedLblIdleTime.TabIndex = 8; + this.PanelIdleStartedLblIdleTime.Text = "You\'ve been idling for 00:00:00:00"; + this.PanelIdleStartedLblIdleTime.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // PanelIdleStartedBtnHide + // + this.PanelIdleStartedBtnHide.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PanelIdleStartedBtnHide.BackgroundImage"))); + this.PanelIdleStartedBtnHide.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelIdleStartedBtnHide.FlatAppearance.BorderSize = 0; + this.PanelIdleStartedBtnHide.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.PanelIdleStartedBtnHide.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleStartedBtnHide.ForeColor = System.Drawing.Color.White; + this.PanelIdleStartedBtnHide.Location = new System.Drawing.Point(807, 12); + this.PanelIdleStartedBtnHide.Name = "PanelIdleStartedBtnHide"; + this.PanelIdleStartedBtnHide.Size = new System.Drawing.Size(51, 35); + this.PanelIdleStartedBtnHide.TabIndex = 13; + this.PanelIdleStartedBtnHide.Text = "Hide"; + this.PanelIdleStartedBtnHide.UseVisualStyleBackColor = true; + this.PanelIdleStartedBtnHide.Click += new System.EventHandler(this.PanelIdleStartedBtnHide_Click); + this.PanelIdleStartedBtnHide.MouseEnter += new System.EventHandler(this.PanelIdleStartedBtnHide_MouseEnter); + this.PanelIdleStartedBtnHide.MouseLeave += new System.EventHandler(this.PanelIdleStartedBtnHide_MouseLeave); + // + // PanelIdleStartedBtnStop + // + this.PanelIdleStartedBtnStop.BackgroundImage = global::SingleBoostr.Properties.Resources.ButtonL; + this.PanelIdleStartedBtnStop.Cursor = System.Windows.Forms.Cursors.Hand; + this.PanelIdleStartedBtnStop.FlatAppearance.BorderSize = 0; + this.PanelIdleStartedBtnStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.PanelIdleStartedBtnStop.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleStartedBtnStop.ForeColor = System.Drawing.Color.White; + this.PanelIdleStartedBtnStop.Location = new System.Drawing.Point(240, 435); + this.PanelIdleStartedBtnStop.Name = "PanelIdleStartedBtnStop"; + this.PanelIdleStartedBtnStop.Size = new System.Drawing.Size(360, 35); + this.PanelIdleStartedBtnStop.TabIndex = 3; + this.PanelIdleStartedBtnStop.Text = "Stop Idle"; + this.PanelIdleStartedBtnStop.UseVisualStyleBackColor = true; + this.PanelIdleStartedBtnStop.Click += new System.EventHandler(this.PanelIdleStartedBtnStop_Click); + this.PanelIdleStartedBtnStop.MouseEnter += new System.EventHandler(this.PanelIdleStartedBtnStop_MouseEnter); + this.PanelIdleStartedBtnStop.MouseLeave += new System.EventHandler(this.PanelIdleStartedBtnStop_MouseLeave); + // + // PanelIdleStartedListGames + // + this.PanelIdleStartedListGames.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37))))); + this.PanelIdleStartedListGames.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.PanelIdleStartedListGames.Font = new System.Drawing.Font("Montserrat", 9.749999F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.PanelIdleStartedListGames.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(212)))), ((int)(((byte)(212))))); + this.PanelIdleStartedListGames.FormattingEnabled = true; + this.PanelIdleStartedListGames.IntegralHeight = false; + this.PanelIdleStartedListGames.ItemHeight = 18; + this.PanelIdleStartedListGames.Location = new System.Drawing.Point(240, 119); + this.PanelIdleStartedListGames.Name = "PanelIdleStartedListGames"; + this.PanelIdleStartedListGames.SelectionMode = System.Windows.Forms.SelectionMode.None; + this.PanelIdleStartedListGames.Size = new System.Drawing.Size(360, 310); + this.PanelIdleStartedListGames.TabIndex = 2; + // // PanelCards // this.PanelCards.BackColor = System.Drawing.Color.Transparent; @@ -696,7 +698,7 @@ private void InitializeComponent() this.PanelCardsBtnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.PanelCardsBtnLogin.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PanelCardsBtnLogin.ForeColor = System.Drawing.Color.White; - this.PanelCardsBtnLogin.Location = new System.Drawing.Point(167, 165); + this.PanelCardsBtnLogin.Location = new System.Drawing.Point(298, 240); this.PanelCardsBtnLogin.Name = "PanelCardsBtnLogin"; this.PanelCardsBtnLogin.Size = new System.Drawing.Size(265, 35); this.PanelCardsBtnLogin.TabIndex = 3; @@ -717,7 +719,7 @@ private void InitializeComponent() this.PanelCardsStarted.Controls.Add(this.PanelCardsStartedBtnStopIdle); this.PanelCardsStarted.Location = new System.Drawing.Point(0, 0); this.PanelCardsStarted.Name = "PanelCardsStarted"; - this.PanelCardsStarted.Size = new System.Drawing.Size(600, 350); + this.PanelCardsStarted.Size = new System.Drawing.Size(870, 480); this.PanelCardsStarted.TabIndex = 11; this.PanelCardsStarted.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelCardsStarted_MouseDown); // @@ -727,7 +729,7 @@ private void InitializeComponent() this.PanelCardsStartedLblOptions.ContextMenuStrip = this.CardsStartedOptionsMenu; this.PanelCardsStartedLblOptions.Cursor = System.Windows.Forms.Cursors.Hand; this.PanelCardsStartedLblOptions.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(73)))), ((int)(((byte)(131))))); - this.PanelCardsStartedLblOptions.Location = new System.Drawing.Point(172, 117); + this.PanelCardsStartedLblOptions.Location = new System.Drawing.Point(303, 174); this.PanelCardsStartedLblOptions.Name = "PanelCardsStartedLblOptions"; this.PanelCardsStartedLblOptions.Size = new System.Drawing.Size(19, 17); this.PanelCardsStartedLblOptions.TabIndex = 15; @@ -768,7 +770,7 @@ private void InitializeComponent() this.PanelCardsStartedBtnHide.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.PanelCardsStartedBtnHide.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PanelCardsStartedBtnHide.ForeColor = System.Drawing.Color.White; - this.PanelCardsStartedBtnHide.Location = new System.Drawing.Point(167, 240); + this.PanelCardsStartedBtnHide.Location = new System.Drawing.Point(298, 297); this.PanelCardsStartedBtnHide.Name = "PanelCardsStartedBtnHide"; this.PanelCardsStartedBtnHide.Size = new System.Drawing.Size(51, 35); this.PanelCardsStartedBtnHide.TabIndex = 12; @@ -786,7 +788,7 @@ private void InitializeComponent() this.PanelCardsStartedBtnNext.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.PanelCardsStartedBtnNext.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PanelCardsStartedBtnNext.ForeColor = System.Drawing.Color.White; - this.PanelCardsStartedBtnNext.Location = new System.Drawing.Point(224, 240); + this.PanelCardsStartedBtnNext.Location = new System.Drawing.Point(355, 297); this.PanelCardsStartedBtnNext.Name = "PanelCardsStartedBtnNext"; this.PanelCardsStartedBtnNext.Size = new System.Drawing.Size(51, 35); this.PanelCardsStartedBtnNext.TabIndex = 11; @@ -799,7 +801,7 @@ private void InitializeComponent() // PanelCardsStartedPicGame // this.PanelCardsStartedPicGame.Image = global::SingleBoostr.Properties.Resources.header; - this.PanelCardsStartedPicGame.Location = new System.Drawing.Point(167, 112); + this.PanelCardsStartedPicGame.Location = new System.Drawing.Point(298, 169); this.PanelCardsStartedPicGame.Name = "PanelCardsStartedPicGame"; this.PanelCardsStartedPicGame.Size = new System.Drawing.Size(265, 124); this.PanelCardsStartedPicGame.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -810,7 +812,7 @@ private void InitializeComponent() // this.PanelCardsStartedLblWrapper.Controls.Add(this.PanelCardsStartedLblCardsLeft); this.PanelCardsStartedLblWrapper.Controls.Add(this.PanelCardsStartedLblCurrentGame); - this.PanelCardsStartedLblWrapper.Location = new System.Drawing.Point(167, 69); + this.PanelCardsStartedLblWrapper.Location = new System.Drawing.Point(298, 126); this.PanelCardsStartedLblWrapper.Name = "PanelCardsStartedLblWrapper"; this.PanelCardsStartedLblWrapper.Size = new System.Drawing.Size(265, 37); this.PanelCardsStartedLblWrapper.TabIndex = 9; @@ -849,7 +851,7 @@ private void InitializeComponent() this.PanelCardsStartedBtnStopIdle.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.PanelCardsStartedBtnStopIdle.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PanelCardsStartedBtnStopIdle.ForeColor = System.Drawing.Color.White; - this.PanelCardsStartedBtnStopIdle.Location = new System.Drawing.Point(281, 240); + this.PanelCardsStartedBtnStopIdle.Location = new System.Drawing.Point(412, 297); this.PanelCardsStartedBtnStopIdle.Name = "PanelCardsStartedBtnStopIdle"; this.PanelCardsStartedBtnStopIdle.Size = new System.Drawing.Size(151, 35); this.PanelCardsStartedBtnStopIdle.TabIndex = 3; @@ -954,21 +956,21 @@ private void InitializeComponent() this.PanelUser.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.PanelUserPicGoBack)).EndInit(); this.PanelContainer.ResumeLayout(false); - this.PanelIdle.ResumeLayout(false); - this.PanelIdle.PerformLayout(); this.PanelStart.ResumeLayout(false); this.PanelStart.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.PanelStartPicGithub)).EndInit(); this.PanelLoading.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.PanelLoadingSpacer)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PanelLoadingPic)).EndInit(); - this.PanelIdleStarted.ResumeLayout(false); - this.PanelIdleStartedLblIdleTimeWrapper.ResumeLayout(false); this.PanelTos.ResumeLayout(false); this.PanelTosTop.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.PicTosDividerRight)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PicTosDividerLeft)).EndInit(); this.PanelTosBottom.ResumeLayout(false); + this.PanelIdle.ResumeLayout(false); + this.PanelIdle.PerformLayout(); + this.PanelIdleStarted.ResumeLayout(false); + this.PanelIdleStartedLblIdleTimeWrapper.ResumeLayout(false); this.PanelCards.ResumeLayout(false); this.PanelCardsStarted.ResumeLayout(false); this.PanelCardsStarted.PerformLayout(); diff --git a/Source/SingleBoostr/Ui/AppHome.cs b/Source/SingleBoostr/Ui/AppHome.cs index 9ba964a..ba40533 100644 --- a/Source/SingleBoostr/Ui/AppHome.cs +++ b/Source/SingleBoostr/Ui/AppHome.cs @@ -865,12 +865,12 @@ private void PanelTosBtnDecline_MouseLeave(object sender, EventArgs e) private void PanelStartBtnIdle_MouseEnter(object sender, EventArgs e) { - PanelStartBtnIdle.BackgroundImage = Properties.Resources.Idle_Selected; + PanelStartBtnIdle.BackgroundImage = Properties.Resources.Idle_SelectedL; } private void PanelStartBtnIdle_MouseLeave(object sender, EventArgs e) { - PanelStartBtnIdle.BackgroundImage = Properties.Resources.Idle; + PanelStartBtnIdle.BackgroundImage = Properties.Resources.IdleL; } private void PanelStartBtnCards_MouseEnter(object sender, EventArgs e) diff --git a/Source/SingleBoostr/Ui/AppHome.resx b/Source/SingleBoostr/Ui/AppHome.resx index d8c6bab..052f462 100644 --- a/Source/SingleBoostr/Ui/AppHome.resx +++ b/Source/SingleBoostr/Ui/AppHome.resx @@ -118,44 +118,6 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - iVBORw0KGgoAAAANSUhEUgAAAQkAAAAoCAYAAADt7w9DAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 - MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAAALVSURBVHhe7dTTdp1RFIDRvlOc - Ro3zNrUdW41t20Ybu0lt2+bq/tfZ44zzAr37LuYrzF0SFy+Ov24J6o+H33GJLrGJ8svDz9gktx8qWb57 - +KZS5KuHLzGp6rP1KSbN7aNKlw/We5Uh76y30Y5MeWO9js5Sr6yX0dnqhcqR51Euz6Jy1VPjicqTx9aj - qHz10BF5QR4Y91WB3LPuRhbKHet2ZJG6FVEkNyOK1Q1VIteNa6pUrhpXIsrUTrijXLaNy6pCtoxNVSkb - xnp4lazvqZI1VS2rxoqqkWVjSdXKorEQVqfmjbmwenXJuBjWoGbDGmXGEdoo06FNMmVNhjbLhGqRcWPM - EdIqo8ZISJsaNoZC2mXQGgjpkH5HcKf0Gb2qS3qMbtUtXUZncI/qCOqR9qBe1RbUJ61WS1C/NFtNuwek - UQ1Kg1GvhqTOqFXDUuMIHJbqwBGpUqNSaVSoMSk3ytS4lAa4lARMSLGalCKjUE1JgXUhYFry/V3y/GdU - rpHjP6uy1UXJMjIdfpckw0r3m1Npal5SjRQr2W9BJfk6FiXRSvBdUvHWed9ldU6tyFkflzNqVU5bp9Sa - nPRwwmddHbeOeW+4HVWbcsTDYbUlhzwc9L7sdsDh5bLfa9ttn9uO2muQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEn89yR25B/6yr3l4Jxt1gAAAABJ - RU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAAQkAAAAoCAYAAADt7w9DAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 - MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAAALVSURBVHhe7dTTdp1RFIDRvlOc - Ro3zNrUdW41t20Ybu0lt2+bq/tfZ44zzAr37LuYrzF0SFy+Ov24J6o+H33GJLrGJ8svDz9gktx8qWb57 - +KZS5KuHLzGp6rP1KSbN7aNKlw/We5Uh76y30Y5MeWO9js5Sr6yX0dnqhcqR51Euz6Jy1VPjicqTx9aj - qHz10BF5QR4Y91WB3LPuRhbKHet2ZJG6FVEkNyOK1Q1VIteNa6pUrhpXIsrUTrijXLaNy6pCtoxNVSkb - xnp4lazvqZI1VS2rxoqqkWVjSdXKorEQVqfmjbmwenXJuBjWoGbDGmXGEdoo06FNMmVNhjbLhGqRcWPM - EdIqo8ZISJsaNoZC2mXQGgjpkH5HcKf0Gb2qS3qMbtUtXUZncI/qCOqR9qBe1RbUJ61WS1C/NFtNuwek - UQ1Kg1GvhqTOqFXDUuMIHJbqwBGpUqNSaVSoMSk3ytS4lAa4lARMSLGalCKjUE1JgXUhYFry/V3y/GdU - rpHjP6uy1UXJMjIdfpckw0r3m1Npal5SjRQr2W9BJfk6FiXRSvBdUvHWed9ldU6tyFkflzNqVU5bp9Sa - nPRwwmddHbeOeW+4HVWbcsTDYbUlhzwc9L7sdsDh5bLfa9ttn9uO2muQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ - BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEn89yR25B/6yr3l4Jxt1gAAAABJ - RU5ErkJggg== - - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 @@ -877,7 +839,14 @@ /SGxq6+GAAAAAElFTkSuQmCC - + + Please agree to the following terms before you continue: + +This program will not cause your account to get VAC banned. However, I will take no responsibility if for any reason your account gets banned. I hope you are smart enough not to cheat on your account and then blame it on this program or me. + +Do you understand and agree to this? + + iVBORw0KGgoAAAANSUhEUgAAAQkAAAAoCAYAAADt7w9DAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAAALVSURBVHhe7dTTdp1RFIDRvlOc @@ -896,7 +865,7 @@ RU5ErkJggg== - + iVBORw0KGgoAAAANSUhEUgAAAQkAAAAoCAYAAADt7w9DAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAAALVSURBVHhe7dTTdp1RFIDRvlOc @@ -915,12 +884,24 @@ RU5ErkJggg== - - Please agree to the following terms before you continue: - -This program will not cause your account to get VAC banned. However, I will take no responsibility if for any reason your account gets banned. I hope you are smart enough not to cheat on your account and then blame it on this program or me. - -Do you understand and agree to this? + + + iVBORw0KGgoAAAANSUhEUgAAAQkAAAAoCAYAAADt7w9DAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1 + MAAA6mAAADqYAAAXb5JfxUYAAAAJcEhZcwAACwwAAAsMAT9AIsgAAALVSURBVHhe7dTTdp1RFIDRvlOc + Ro3zNrUdW41t20Ybu0lt2+bq/tfZ44zzAr37LuYrzF0SFy+Ov24J6o+H33GJLrGJ8svDz9gktx8qWb57 + +KZS5KuHLzGp6rP1KSbN7aNKlw/We5Uh76y30Y5MeWO9js5Sr6yX0dnqhcqR51Euz6Jy1VPjicqTx9aj + qHz10BF5QR4Y91WB3LPuRhbKHet2ZJG6FVEkNyOK1Q1VIteNa6pUrhpXIsrUTrijXLaNy6pCtoxNVSkb + xnp4lazvqZI1VS2rxoqqkWVjSdXKorEQVqfmjbmwenXJuBjWoGbDGmXGEdoo06FNMmVNhjbLhGqRcWPM + EdIqo8ZISJsaNoZC2mXQGgjpkH5HcKf0Gb2qS3qMbtUtXUZncI/qCOqR9qBe1RbUJ61WS1C/NFtNuwek + UQ1Kg1GvhqTOqFXDUuMIHJbqwBGpUqNSaVSoMSk3ytS4lAa4lARMSLGalCKjUE1JgXUhYFry/V3y/GdU + rpHjP6uy1UXJMjIdfpckw0r3m1Npal5SjRQr2W9BJfk6FiXRSvBdUvHWed9ldU6tyFkflzNqVU5bp9Sa + nPRwwmddHbeOeW+4HVWbcsTDYbUlhzwc9L7sdsDh5bLfa9ttn9uO2muQBEmQBEmQBEmQBEmQBEmQBEmQ + BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ + BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ + BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQ + BEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEmQBEn89yR25B/6yr3l4Jxt1gAAAABJ + RU5ErkJggg== + diff --git a/version.json b/version.json index ba893ef..af57fd0 100644 --- a/version.json +++ b/version.json @@ -2,8 +2,8 @@ "Applications": [ { "Name":"SingleBoostr", - "Version": "4.2.1", - "Info": "Bug fix for saying update on latest version" + "Version": "4.2.5", + "Info": "Larger applicaton window, new font plus more" }, { "Name":"HourBoostr",