ShareX/ShareX/IntegrationHelpers.cs
2015-09-12 02:05:31 +03:00

109 lines
3.4 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2015 ShareX Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using ShareX.Properties;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ShareX
{
public static class IntegrationHelpers
{
public static bool CheckStartupShortcut()
{
return ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.Startup); //RegistryHelper.CheckStartWithWindows();
}
public static void CreateStartupShortcut(bool create)
{
//RegistryHelper.SetStartWithWindows(cbStartWithWindows.Checked);
string filePath;
#if STEAM
filePath = Helpers.GetAbsolutePath("../ShareX_Launcher.exe");
#else
filePath = Application.ExecutablePath;
#endif
ShortcutHelpers.SetShortcut(create, Environment.SpecialFolder.Startup, filePath, "-silent");
}
public static bool CheckShellContextMenuButton()
{
return RegistryHelpers.CheckShellContextMenu();
}
public static void CreateShellContextMenuButton(bool create)
{
RegistryHelpers.SetShellContextMenu(create);
}
public static bool CheckSendToMenuButton()
{
return ShortcutHelpers.CheckShortcut(Environment.SpecialFolder.SendTo);
}
public static void CreateSendToMenuButton(bool create)
{
ShortcutHelpers.SetShortcut(create, Environment.SpecialFolder.SendTo, Application.ExecutablePath);
}
public static bool CheckSteamShowInApp()
{
string path = Helpers.GetAbsolutePath("Steam");
return File.Exists(path);
}
public static void SteamShowInApp(bool inapp)
{
string path = Helpers.GetAbsolutePath("Steam");
if (inapp)
{
File.Create(path).Dispose();
}
else if (File.Exists(path))
{
File.Delete(path);
}
MessageBox.Show(Resources.ApplicationSettingsForm_cbSteamShowInApp_CheckedChanged_For_settings_to_take_effect_ShareX_needs_to_be_reopened_from_Steam_,
"ShareX", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
public static void Uninstall()
{
CreateStartupShortcut(false);
CreateShellContextMenuButton(false);
CreateSendToMenuButton(false);
}
}
}