From 97da4c71d2cac5eaa1443794db0eaefae04f8608 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sun, 21 Jan 2024 14:11:07 -0330 Subject: [PATCH] wire up donate and github links --- ObservatoryCore/UI/CoreForm.Designer.cs | 2 ++ ObservatoryCore/UI/CoreForm.cs | 26 ++++++++++++++++++++----- 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/ObservatoryCore/UI/CoreForm.Designer.cs b/ObservatoryCore/UI/CoreForm.Designer.cs index 7d04d49..0c28ce6 100644 --- a/ObservatoryCore/UI/CoreForm.Designer.cs +++ b/ObservatoryCore/UI/CoreForm.Designer.cs @@ -557,6 +557,7 @@ GithubLink.TabIndex = 6; GithubLink.TabStop = true; GithubLink.Text = "github"; + GithubLink.LinkClicked += GithubLink_LinkClicked; // // DonateLink // @@ -568,6 +569,7 @@ DonateLink.TabIndex = 7; DonateLink.TabStop = true; DonateLink.Text = "Donate"; + DonateLink.LinkClicked += DonateLink_LinkClicked; // // CoreForm // diff --git a/ObservatoryCore/UI/CoreForm.cs b/ObservatoryCore/UI/CoreForm.cs index 9698031..7e76e76 100644 --- a/ObservatoryCore/UI/CoreForm.cs +++ b/ObservatoryCore/UI/CoreForm.cs @@ -2,6 +2,7 @@ using Observatory.Framework.Interfaces; using Observatory.PluginManagement; using Observatory.Utils; +using System.Diagnostics; using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; @@ -45,7 +46,7 @@ namespace Observatory.UI { coreToolStripMenuItem, CorePanel } }; - + pluginList = new Dictionary(); CreatePluginTabs(); DisableOverriddenNotification(); @@ -87,7 +88,7 @@ namespace Observatory.UI private void ResizePanels(Point location, int widthChange) { - + CorePanel.Location = location; CorePanel.Width += widthChange; foreach (var panel in uiPanels) @@ -98,7 +99,7 @@ namespace Observatory.UI panel.Value.Size = CorePanel.Size; } } - + } private void CoreMenu_ItemClicked(object? _, ToolStripItemClickedEventArgs e) @@ -152,7 +153,7 @@ namespace Observatory.UI private void SetClickedItem(ToolStripItem item) { - foreach (ToolStripItem menuItem in CoreMenu.Items) + foreach (ToolStripItem menuItem in CoreMenu.Items) { bool bold = menuItem == item; menuItem.Font = new Font(menuItem.Font, bold ? FontStyle.Bold : FontStyle.Regular); @@ -223,7 +224,7 @@ namespace Observatory.UI var readAllDialogue = new ReadAllForm(); ThemeManager.GetInstance.RegisterControl(readAllDialogue); readAllDialogue.StartPosition = FormStartPosition.Manual; - readAllDialogue.Location = Point.Add(Location, new Size(100,100)); + readAllDialogue.Location = Point.Add(Location, new Size(100, 100)); readAllDialogue.ShowDialog(); } @@ -296,5 +297,20 @@ namespace Observatory.UI nativePopup.InvokeNativeNotification(args); } + + private void GithubLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + OpenURL("https://github.com/Xjph/ObservatoryCore"); + } + + private void DonateLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + OpenURL("https://www.paypal.com/paypalme/eliteobservatory"); + } + + private void OpenURL(string url) + { + Process.Start(new ProcessStartInfo(url) { UseShellExecute = true }); + } } } \ No newline at end of file