public ShortcutGuideProperties()
 {
     OverlayOpacity    = new IntProperty(90);
     PressTime         = new IntProperty(900);
     Theme             = new StringProperty("system");
     DisabledApps      = new StringProperty();
     OpenShortcutGuide = new HotkeySettings(true, false, false, true, 0xBF);
 }
Exemplo n.º 2
0
 public MousePointerCrosshairsProperties()
 {
     ActivationShortcut    = new HotkeySettings(false, true, true, false, 0x50); // Ctrl + Alt + P
     CrosshairsColor       = new StringProperty("#FF0000");
     CrosshairsOpacity     = new IntProperty(75);
     CrosshairsRadius      = new IntProperty(20);
     CrosshairsThickness   = new IntProperty(5);
     CrosshairsBorderColor = new StringProperty("#FFFFFF");
     CrosshairsBorderSize  = new IntProperty(1);
 }
 public MouseHighlighterProperties()
 {
     ActivationShortcut      = new HotkeySettings(true, false, false, true, 0x48);
     LeftButtonClickColor    = new StringProperty("#FFFF00");
     RightButtonClickColor   = new StringProperty("#0000FF");
     HighlightOpacity        = new IntProperty(160);
     HighlightRadius         = new IntProperty(20);
     HighlightFadeDelayMs    = new IntProperty(500);
     HighlightFadeDurationMs = new IntProperty(250);
 }
 public ColorPickerProperties()
 {
     ActivationShortcut  = new HotkeySettings(true, false, false, true, 0x43);
     ChangeCursor        = false;
     ColorHistory        = new List <string>();
     ColorHistoryLimit   = 20;
     VisibleColorFormats = new Dictionary <string, bool>();
     VisibleColorFormats.Add("HEX", true);
     VisibleColorFormats.Add("RGB", true);
     VisibleColorFormats.Add("HSL", true);
     ActivationAction = ColorPickerActivationAction.OpenColorPickerAndThenEditor;
 }
Exemplo n.º 5
0
 public PowerLauncherProperties()
 {
     OpenPowerLauncher            = new HotkeySettings(false, false, true, false, 32);
     OpenFileLocation             = new HotkeySettings();
     CopyPathLocation             = new HotkeySettings();
     OpenConsole                  = new HotkeySettings();
     SearchResultPreference       = "most_recently_used";
     SearchTypePreference         = "application_name";
     IgnoreHotkeysInFullscreen    = false;
     DisableDriveDetectionWarning = false;
     ClearInputOnLaunch           = false;
     MaximumNumberOfResults       = 4;
 }
 public PowerLauncherProperties()
 {
     OpenPowerLauncher         = new HotkeySettings(false, false, true, false, 32);
     OpenFileLocation          = new HotkeySettings();
     CopyPathLocation          = new HotkeySettings();
     OpenConsole               = new HotkeySettings();
     SearchResultPreference    = "most_recently_used";
     SearchTypePreference      = "application_name";
     IgnoreHotkeysInFullscreen = false;
     ClearInputOnLaunch        = false;
     MaximumNumberOfResults    = 4;
     Theme    = Theme.System;
     Position = StartupPosition.Cursor;
 }
 public PowerLauncherProperties()
 {
     OpenPowerLauncher         = new HotkeySettings(false, false, true, false, 32);
     OpenFileLocation          = new HotkeySettings();
     CopyPathLocation          = new HotkeySettings();
     OpenConsole               = new HotkeySettings();
     SearchResultPreference    = "most_recently_used";
     SearchTypePreference      = "application_name";
     IgnoreHotkeysInFullscreen = false;
     ClearInputOnLaunch        = false;
     MaximumNumberOfResults    = 4;
     Theme    = Theme.System;
     Position = StartupPosition.Cursor;
     UseCentralizedKeyboardHook  = false;
     SearchQueryResultsWithDelay = true;
     SearchInputDelay            = 150;
     SearchClickedItemWeight     = 5;
     SearchQueryTuningEnabled    = false;
     SearchWaitForSlowResults    = false;
 }
Exemplo n.º 8
0
 public ColorPickerProperties()
 {
     ActivationShortcut = new HotkeySettings(true, false, false, true, 0x43);
     ChangeCursor       = false;
 }
Exemplo n.º 9
0
 public KeyboardKeysProperty(HotkeySettings hkSettings)
 {
     Value = hkSettings;
 }
Exemplo n.º 10
0
 public KeyboardKeysProperty()
 {
     Value = new HotkeySettings();
 }