2021-07-22 23:45:30 +00:00
|
|
|
|
using FizzyLauncher.Models;
|
|
|
|
|
using FizzyLauncher.Text.Json;
|
|
|
|
|
using FizzyLauncher.Windows.Forms;
|
|
|
|
|
using RyzStudio.Windows.Forms;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.IO;
|
2021-07-31 20:59:35 +00:00
|
|
|
|
using System.Linq;
|
2021-07-22 23:45:30 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace FizzyLauncher
|
|
|
|
|
{
|
|
|
|
|
public partial class MainForm : Form
|
|
|
|
|
{
|
|
|
|
|
[DllImport("user32.dll")]
|
|
|
|
|
protected static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vk);
|
|
|
|
|
|
|
|
|
|
[DllImport("user32.dll")]
|
|
|
|
|
protected static extern bool UnregisterHotKey(IntPtr hWnd, int id);
|
|
|
|
|
|
|
|
|
|
//protected const int MOD_ALT = 0x1;
|
|
|
|
|
//protected const int MOD_CONTROL = 0x2;
|
|
|
|
|
//protected const int MOD_SHIFT = 0x4;
|
|
|
|
|
//protected const int MOD_WIN = 0x8;
|
|
|
|
|
protected const int WM_HOTKEY = 0x312;
|
|
|
|
|
protected const int WM_QUERYENDSESSION = 0x0011;
|
|
|
|
|
|
|
|
|
|
protected OptionsForm optionsForm = null;
|
|
|
|
|
protected string sessionFilename = null;
|
|
|
|
|
protected bool isBusy = false;
|
|
|
|
|
protected bool requestExit = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public MainForm() : base()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
2021-07-31 20:59:35 +00:00
|
|
|
|
tileContainer1.OnColumnSizeChanged += tileContainer1_OnSizeChanged;
|
2021-07-22 23:45:30 +00:00
|
|
|
|
notifyIcon1.Text = Application.ProductName;
|
|
|
|
|
|
2021-07-29 18:34:42 +00:00
|
|
|
|
this.AutoScaleMode = AutoScaleMode.None;
|
2021-07-22 23:45:30 +00:00
|
|
|
|
this.StartPosition = FormStartPosition.WindowsDefaultBounds;
|
|
|
|
|
this.Visible = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnLoad(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnLoad(e);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetVisible(this, false);
|
|
|
|
|
ThreadControl.SetSize(this, this.MinimumSize);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async override void OnShown(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnShown(e);
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetVisible(this, false);
|
|
|
|
|
|
|
|
|
|
string jsonfigFilename = Path.ChangeExtension(Application.ExecutablePath, "jsonfig");
|
|
|
|
|
if (File.Exists(jsonfigFilename))
|
|
|
|
|
{
|
|
|
|
|
await loadFile(jsonfigFilename);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
this.CurrentSession = new LauncherSession();
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetVisible(this, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnClosing(CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnClosing(e);
|
|
|
|
|
|
|
|
|
|
if (this.CurrentSession == null) this.CurrentSession = new LauncherSession();
|
|
|
|
|
|
|
|
|
|
if (this.CurrentSession.HideOnClose && !requestExit)
|
|
|
|
|
{
|
|
|
|
|
this.Visible = !this.Visible;
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
requestExit = false;
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (this.CurrentSession.AutoSave == LauncherSession.AutoSaveOption.Prompt)
|
|
|
|
|
{
|
|
|
|
|
DialogResult dr = MessageBox.Show("Save existing session?", "Exit", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (dr == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
bool rv = saveFile(sessionFilename, false);
|
|
|
|
|
if (!rv)
|
|
|
|
|
{
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.No)
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
e.Cancel = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (this.CurrentSession.AutoSave == LauncherSession.AutoSaveOption.Yes)
|
|
|
|
|
{
|
|
|
|
|
saveFile(sessionFilename, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.CurrentSession.HotKey != null)
|
|
|
|
|
{
|
|
|
|
|
if (this.CurrentSession.HotKey.KeyCode != Keys.None)
|
|
|
|
|
{
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#if !DEBUG
|
2021-07-23 01:29:34 +00:00
|
|
|
|
UnregisterHotKey((IntPtr)Handle, 1);
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#endif
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void WndProc(ref Message m)
|
|
|
|
|
{
|
|
|
|
|
switch (m.Msg)
|
|
|
|
|
{
|
|
|
|
|
case WM_HOTKEY:
|
|
|
|
|
if (m.WParam.ToInt32() == 1)
|
|
|
|
|
{
|
|
|
|
|
this.Visible = !this.Visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case WM_QUERYENDSESSION:
|
|
|
|
|
requestExit = true;
|
|
|
|
|
//this.Close();
|
|
|
|
|
Application.Exit();
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
default: break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.WndProc(ref m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public LauncherSession CurrentSession { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
public void Clear(int columnCount)
|
|
|
|
|
{
|
|
|
|
|
tileContainer1.Clear();
|
|
|
|
|
tileContainer1.Add(columnCount);
|
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-22 23:45:30 +00:00
|
|
|
|
protected async Task collapseWindow(int width, int increment = 6)
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
while (this.Width > width)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.SetWidth(this, (this.Width - increment));
|
|
|
|
|
|
|
|
|
|
Application.DoEvents();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetWidth(this, width);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async Task expandWindow(int width, int increment = 8)
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
while (this.Width < width)
|
|
|
|
|
{
|
|
|
|
|
ThreadControl.SetWidth(this, (this.Width + increment));
|
|
|
|
|
|
|
|
|
|
Application.DoEvents();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetWidth(this, width);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void invalidateHotKey()
|
|
|
|
|
{
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#if !DEBUG
|
2021-07-22 23:45:30 +00:00
|
|
|
|
if (this.InvokeRequired)
|
|
|
|
|
{
|
|
|
|
|
this.Invoke(new MethodInvoker(() =>
|
|
|
|
|
{
|
2021-07-23 01:29:34 +00:00
|
|
|
|
UnregisterHotKey((IntPtr)Handle, 1);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-23 01:29:34 +00:00
|
|
|
|
UnregisterHotKey((IntPtr)Handle, 1);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#endif
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
if (this.CurrentSession.HotKey != null)
|
|
|
|
|
{
|
|
|
|
|
if (this.CurrentSession.HotKey.KeyCode != Keys.None)
|
|
|
|
|
{
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#if !DEBUG
|
2021-07-22 23:45:30 +00:00
|
|
|
|
if (this.InvokeRequired)
|
|
|
|
|
{
|
|
|
|
|
this.Invoke(new MethodInvoker(() =>
|
|
|
|
|
{
|
2021-07-23 01:29:34 +00:00
|
|
|
|
RegisterHotKey((IntPtr)Handle, 1, this.CurrentSession.HotKey.ModifierCode, this.CurrentSession.HotKey.Key);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-23 01:29:34 +00:00
|
|
|
|
RegisterHotKey((IntPtr)Handle, 1, this.CurrentSession.HotKey.ModifierCode, this.CurrentSession.HotKey.Key);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#endif
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected void newSession()
|
|
|
|
|
{
|
2021-08-01 14:25:33 +00:00
|
|
|
|
NewForm form = new NewForm(this);
|
|
|
|
|
form.ShowDialog();
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected async Task loadFile(string filename)
|
|
|
|
|
{
|
|
|
|
|
await Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
if (isBusy)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!File.Exists(filename))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string sourceCode = null;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
sessionFilename = filename;
|
|
|
|
|
|
|
|
|
|
sourceCode = File.ReadAllText(sessionFilename);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exc)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(exc.Message, "Load session");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sourceCode))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// load options
|
|
|
|
|
var options = new JsonSerializerOptions();
|
|
|
|
|
options.Converters.Add(new JsonPointConverter());
|
|
|
|
|
options.Converters.Add(new JsonSizeConverter());
|
|
|
|
|
|
2021-07-23 13:38:07 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
this.CurrentSession = JsonSerializer.Deserialize<LauncherSession>(sourceCode, options);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exc)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Unable to read session", "Load session");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-22 23:45:30 +00:00
|
|
|
|
if (this.CurrentSession == null)
|
|
|
|
|
{
|
|
|
|
|
this.CurrentSession = new LauncherSession();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// load tiles
|
2021-07-31 20:59:35 +00:00
|
|
|
|
tileContainer1.Load(this.CurrentSession.Groups);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
// reposition
|
|
|
|
|
if (!this.CurrentSession.StartPosition.IsEmpty) ThreadControl.SetLocation(this, this.CurrentSession.StartPosition);
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
ThreadControl.SetTopMost(this, this.CurrentSession.AlwaysOnTop);
|
|
|
|
|
ThreadControl.SetVisible(this, true);
|
|
|
|
|
ThreadControl.SetChecked(enableAnimationsToolStripMenuItem, this.CurrentSession.EnableAnimation);
|
|
|
|
|
ThreadControl.SetChecked(showBigIconsToolStripMenuItem, this.CurrentSession.EnableBigIconInFolder);
|
2021-07-31 20:59:35 +00:00
|
|
|
|
ThreadControl.SetClientHeight(this, this.CurrentSession.DefaultHeight);
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
ThreadControl.SetFocus(this);
|
|
|
|
|
|
|
|
|
|
// hotkey
|
|
|
|
|
invalidateHotKey();
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected bool saveFile(string filename, bool showNotices = true)
|
|
|
|
|
{
|
|
|
|
|
if (isBusy)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(filename))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-31 19:27:29 +00:00
|
|
|
|
if (tileContainer1.GroupCount <= 0)
|
2021-07-22 23:45:30 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isBusy = true;
|
|
|
|
|
|
|
|
|
|
// update session
|
|
|
|
|
if (this.CurrentSession == null)
|
|
|
|
|
{
|
|
|
|
|
this.CurrentSession = new LauncherSession();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.CurrentSession.DefaultHeight = this.Height;
|
|
|
|
|
this.CurrentSession.AlwaysOnTop = this.TopMost;
|
|
|
|
|
this.CurrentSession.StartPosition = this.Location;
|
2021-07-31 20:59:35 +00:00
|
|
|
|
this.CurrentSession.Groups = tileContainer1.GroupModels?.ToList() ?? new List<TileGroupModel>();
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
2021-07-23 13:38:07 +00:00
|
|
|
|
var options = new JsonSerializerOptions();
|
|
|
|
|
options.Converters.Add(new JsonPointConverter());
|
|
|
|
|
options.Converters.Add(new JsonSizeConverter());
|
|
|
|
|
|
2021-07-22 23:45:30 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2021-07-23 13:38:07 +00:00
|
|
|
|
File.WriteAllText(filename, JsonSerializer.Serialize(this.CurrentSession, options));
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
if (showNotices)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Session saved!", "Save session", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exc)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(exc.Message, "Save session");
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isBusy = false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected bool saveAsFile()
|
|
|
|
|
{
|
|
|
|
|
if (isBusy)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
bool rv = saveFile(saveFileDialog1.FileName);
|
|
|
|
|
if (rv)
|
|
|
|
|
{
|
|
|
|
|
sessionFilename = saveFileDialog1.FileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#region main menu
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// New
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void newToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
newSession();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DialogResult dr = MessageBox.Show("Save existing session?", "New session", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (dr == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
bool rv = saveFile(sessionFilename, false);
|
|
|
|
|
if (rv)
|
|
|
|
|
{
|
|
|
|
|
newSession();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.No)
|
|
|
|
|
{
|
|
|
|
|
newSession();
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Open
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private async void openToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
await loadFile(openFileDialog1.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DialogResult dr = MessageBox.Show("Save existing session?", "Open session", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (dr == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
bool rv = saveFile(sessionFilename, false);
|
|
|
|
|
if (rv)
|
|
|
|
|
{
|
|
|
|
|
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
await loadFile(openFileDialog1.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.No)
|
|
|
|
|
{
|
|
|
|
|
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
await loadFile(openFileDialog1.FileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Close
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void closeToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
2021-07-31 19:27:29 +00:00
|
|
|
|
tileContainer1.Clear();
|
2021-07-22 23:45:30 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DialogResult dr = MessageBox.Show("Save existing session?", "Close session", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question);
|
|
|
|
|
if (dr == DialogResult.Yes)
|
|
|
|
|
{
|
|
|
|
|
bool rv = saveFile(sessionFilename, false);
|
|
|
|
|
if (rv)
|
|
|
|
|
{
|
2021-07-31 19:27:29 +00:00
|
|
|
|
tileContainer1.Clear();
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.No)
|
|
|
|
|
{
|
2021-07-31 19:27:29 +00:00
|
|
|
|
tileContainer1.Clear();
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
sessionFilename = null;
|
|
|
|
|
}
|
|
|
|
|
else if (dr == DialogResult.Cancel)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void saveToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
saveAsFile();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
saveFile(sessionFilename, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Save As
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void saveAsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
saveAsFile();
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Exit
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void exitToolStripMenuItem2_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
requestExit = true;
|
|
|
|
|
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-07-31 19:27:29 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Add group
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void addGroupToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(sessionFilename))
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Show big icons
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void showBigIconsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.CurrentSession == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.CurrentSession.EnableBigIconInFolder = !this.CurrentSession.EnableBigIconInFolder;
|
|
|
|
|
|
|
|
|
|
showBigIconsToolStripMenuItem.Checked = this.CurrentSession.EnableBigIconInFolder;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enable animations
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void enableAnimationsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (this.CurrentSession == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.CurrentSession.EnableAnimation = !this.CurrentSession.EnableAnimation;
|
|
|
|
|
|
|
|
|
|
enableAnimationsToolStripMenuItem.Checked = this.CurrentSession.EnableAnimation;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Always on top
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void alwaysOnTopToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
this.TopMost = !this.TopMost;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Options
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (optionsForm == null) optionsForm = new OptionsForm(this);
|
|
|
|
|
optionsForm.ShowDialog();
|
|
|
|
|
|
|
|
|
|
invalidateHotKey();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// View help
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void viewHelpToolStripMenuItem1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("https://www.hiimray.co.uk/software-fizzy-launcher");
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-01 14:25:33 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// About
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
2021-07-22 23:45:30 +00:00
|
|
|
|
private void aboutToolStripMenuItem1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(Application.ProductName + " v" + Application.ProductVersion, "About", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void menuStrip1_MenuActivate(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
alwaysOnTopToolStripMenuItem.Checked = this.TopMost;
|
|
|
|
|
saveAsToolStripMenuItem.Enabled = !string.IsNullOrWhiteSpace(sessionFilename);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#endregion
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
2021-07-24 20:20:50 +00:00
|
|
|
|
#region notification icon
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.Button == MouseButtons.Left)
|
|
|
|
|
{
|
|
|
|
|
this.Visible = !this.Visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void exitToolStripMenuItem1_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
requestExit = true;
|
|
|
|
|
|
|
|
|
|
this.Close();
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-31 20:59:35 +00:00
|
|
|
|
#endregion
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
2021-07-31 20:59:35 +00:00
|
|
|
|
private void tileContainer1_OnSizeChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
int newWidth = TilePanelLayout.CalcWidth(tileContainer1.TileWidthCount);
|
|
|
|
|
newWidth += SystemInformation.VerticalScrollBarWidth;
|
|
|
|
|
newWidth += tileContainer1.CalcWidth;
|
|
|
|
|
newWidth += this.Padding.Horizontal;
|
|
|
|
|
|
|
|
|
|
ThreadControl.SetClientWidth(this, newWidth);
|
|
|
|
|
}
|
2021-07-22 23:45:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|