f06d311f40
Upgrade to RyzStudio8 Rewrite
65 lines
1.9 KiB
C#
65 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using RyzStudio.Windows.ThemedForms.ButtonTextBox;
|
|
|
|
namespace FizzyLauncher.Models
|
|
{
|
|
public class LauncherSession
|
|
{
|
|
public int TilesPerRow { get; set; } = 8;
|
|
|
|
public bool ShowBigIcons { get; set; } = true;
|
|
|
|
public ThKeyCodeTextBox.Results ShowToggleHotkey { get; set; } = null;
|
|
|
|
public bool HideOnClose { get; set; } = true;
|
|
|
|
public bool HideOnExecute { get; set; } = true;
|
|
|
|
public bool AlwaysOnTop { get; set; } = false;
|
|
|
|
|
|
|
|
//public class HotKeyOptions
|
|
//{
|
|
// public bool IsCtrl { get; set; } = false;
|
|
// public bool IsAlt { get; set; } = false;
|
|
// public bool IsShift { get; set; } = false;
|
|
// public int Key { get; set; } = (int)System.Windows.Forms.Keys.None;
|
|
|
|
// public int ModifierCode => ((this.IsAlt ? 1 : 0) + (this.IsCtrl ? 2 : 0) + (this.IsShift ? 4 : 0));
|
|
|
|
// public System.Windows.Forms.Keys KeyCode => (System.Windows.Forms.Keys)this.Key;
|
|
//}
|
|
|
|
//public enum AutoSaveOption
|
|
//{
|
|
// Prompt = 0,
|
|
// Yes,
|
|
// No
|
|
//}
|
|
|
|
//public int DefaultHeight { get; set; } = 280;
|
|
|
|
//public ThKeyCodeTextBox.Results HotKey { get; set; } = null;
|
|
|
|
//public bool AlwaysOnTop { get; set; } = false;
|
|
//public bool EnableAnimation { get; set; } = false;
|
|
//public bool EnableBigIconInFolder { get; set; } = false;
|
|
|
|
//public bool HideOnClose { get; set; } = false;
|
|
//public bool HideOnClick { get; set; } = false;
|
|
//public AutoSaveOption AutoSave { get; set; } = AutoSaveOption.Prompt;
|
|
|
|
public List<TileGroupModel> Groups { get; set; } = new List<TileGroupModel>();
|
|
|
|
public Point StartPosition { get; set; } = Point.Empty;
|
|
|
|
public int Height { get; set; } = 280;
|
|
|
|
|
|
//public int ColumnCount { get; set; } = 8;
|
|
|
|
|
|
}
|
|
} |