2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

wire up donate and github links

This commit is contained in:
Xjph 2024-01-21 14:11:07 -03:30
parent b8f5f6a73e
commit 59da2f783b
2 changed files with 23 additions and 5 deletions

View File

@ -557,6 +557,7 @@
GithubLink.TabIndex = 6; GithubLink.TabIndex = 6;
GithubLink.TabStop = true; GithubLink.TabStop = true;
GithubLink.Text = "github"; GithubLink.Text = "github";
GithubLink.LinkClicked += GithubLink_LinkClicked;
// //
// DonateLink // DonateLink
// //
@ -568,6 +569,7 @@
DonateLink.TabIndex = 7; DonateLink.TabIndex = 7;
DonateLink.TabStop = true; DonateLink.TabStop = true;
DonateLink.Text = "Donate"; DonateLink.Text = "Donate";
DonateLink.LinkClicked += DonateLink_LinkClicked;
// //
// CoreForm // CoreForm
// //

View File

@ -2,6 +2,7 @@
using Observatory.Framework.Interfaces; using Observatory.Framework.Interfaces;
using Observatory.PluginManagement; using Observatory.PluginManagement;
using Observatory.Utils; using Observatory.Utils;
using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
using System.Windows.Forms; using System.Windows.Forms;
@ -45,7 +46,7 @@ namespace Observatory.UI
{ coreToolStripMenuItem, CorePanel } { coreToolStripMenuItem, CorePanel }
}; };
pluginList = new Dictionary<string, ToolStripMenuItem>(); pluginList = new Dictionary<string, ToolStripMenuItem>();
CreatePluginTabs(); CreatePluginTabs();
DisableOverriddenNotification(); DisableOverriddenNotification();
@ -87,7 +88,7 @@ namespace Observatory.UI
private void ResizePanels(Point location, int widthChange) private void ResizePanels(Point location, int widthChange)
{ {
CorePanel.Location = location; CorePanel.Location = location;
CorePanel.Width += widthChange; CorePanel.Width += widthChange;
foreach (var panel in uiPanels) foreach (var panel in uiPanels)
@ -98,7 +99,7 @@ namespace Observatory.UI
panel.Value.Size = CorePanel.Size; panel.Value.Size = CorePanel.Size;
} }
} }
} }
private void CoreMenu_ItemClicked(object? _, ToolStripItemClickedEventArgs e) private void CoreMenu_ItemClicked(object? _, ToolStripItemClickedEventArgs e)
@ -152,7 +153,7 @@ namespace Observatory.UI
private void SetClickedItem(ToolStripItem item) private void SetClickedItem(ToolStripItem item)
{ {
foreach (ToolStripItem menuItem in CoreMenu.Items) foreach (ToolStripItem menuItem in CoreMenu.Items)
{ {
bool bold = menuItem == item; bool bold = menuItem == item;
menuItem.Font = new Font(menuItem.Font, bold ? FontStyle.Bold : FontStyle.Regular); menuItem.Font = new Font(menuItem.Font, bold ? FontStyle.Bold : FontStyle.Regular);
@ -223,7 +224,7 @@ namespace Observatory.UI
var readAllDialogue = new ReadAllForm(); var readAllDialogue = new ReadAllForm();
ThemeManager.GetInstance.RegisterControl(readAllDialogue); ThemeManager.GetInstance.RegisterControl(readAllDialogue);
readAllDialogue.StartPosition = FormStartPosition.Manual; readAllDialogue.StartPosition = FormStartPosition.Manual;
readAllDialogue.Location = Point.Add(Location, new Size(100,100)); readAllDialogue.Location = Point.Add(Location, new Size(100, 100));
readAllDialogue.ShowDialog(); readAllDialogue.ShowDialog();
} }
@ -296,5 +297,20 @@ namespace Observatory.UI
nativePopup.InvokeNativeNotification(args); 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 });
}
} }
} }