2014-03-27 21:50:40 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
2014-05-15 18:10:17 -04:00
|
|
|
|
using DS4Control;
|
2014-05-30 16:39:39 -04:00
|
|
|
|
using System.Net;
|
|
|
|
|
using System.IO;
|
2014-03-27 21:50:40 -04:00
|
|
|
|
|
|
|
|
|
namespace ScpServer
|
|
|
|
|
{
|
|
|
|
|
public partial class Hotkeys : Form
|
|
|
|
|
{
|
2014-05-31 00:37:02 -04:00
|
|
|
|
ScpForm form;
|
|
|
|
|
public Hotkeys(ScpForm main)
|
2014-03-27 21:50:40 -04:00
|
|
|
|
{
|
2014-05-31 00:37:02 -04:00
|
|
|
|
form = main;
|
2014-03-27 21:50:40 -04:00
|
|
|
|
InitializeComponent();
|
2014-06-06 16:38:52 -04:00
|
|
|
|
lbAbout.Text += Global.getVersion().ToString() + ")";
|
2014-03-27 21:50:40 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
2014-05-15 18:10:17 -04:00
|
|
|
|
|
|
|
|
|
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://code.google.com/r/jays2kings-ds4tool/source/list?name=jay");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://code.google.com/r/brianfundakowskifeldman-ds4windows/");
|
|
|
|
|
}
|
2014-05-21 01:36:05 -04:00
|
|
|
|
|
|
|
|
|
private void linkInhexSTER_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://code.google.com/p/ds4-tool/");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void linkJhebbel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
2014-06-23 18:27:14 -04:00
|
|
|
|
System.Diagnostics.Process.Start("http://dsdcs.com/index.php/portfolio/software-development/4-ds4windows");
|
2014-05-21 01:36:05 -04:00
|
|
|
|
}
|
|
|
|
|
|
2014-06-16 19:43:01 -04:00
|
|
|
|
private void lLChangelog_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://docs.google.com/document/d/1l4xcgVQkGUskc5CQ0p069yW22Cd5WAH_yE3Fz2hXo0E/edit?usp=sharing");
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-23 18:27:14 -04:00
|
|
|
|
private void linkDonate_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=2FTZ9BZEHSQ8Q&lc=US&item_name=DS4Windows¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted");
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 21:50:40 -04:00
|
|
|
|
}
|
|
|
|
|
}
|