diff options
| author | Michael <[email protected]> | 2017-04-22 09:25:17 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-22 09:25:17 -0400 |
| commit | e05fc88500525e8c9b9e497e91aa7b9d04996019 (patch) | |
| tree | 244ad795c0941b1eb80c1a19b20e6125b3047142 /ShiftOS_TheReturn/Skinning.cs | |
| parent | 114141b56e02857fa749cc130f16a2d6cc4c35f5 (diff) | |
| download | shiftos_thereturn-e05fc88500525e8c9b9e497e91aa7b9d04996019.tar.gz shiftos_thereturn-e05fc88500525e8c9b9e497e91aa7b9d04996019.tar.bz2 shiftos_thereturn-e05fc88500525e8c9b9e497e91aa7b9d04996019.zip | |
Add sizing of applauncher elements
Diffstat (limited to 'ShiftOS_TheReturn/Skinning.cs')
| -rw-r--r-- | ShiftOS_TheReturn/Skinning.cs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/Skinning.cs b/ShiftOS_TheReturn/Skinning.cs index cee18d8..4cc9bbd 100644 --- a/ShiftOS_TheReturn/Skinning.cs +++ b/ShiftOS_TheReturn/Skinning.cs @@ -1115,6 +1115,42 @@ namespace ShiftOS.Engine [ShifterDescription("What part of the panel should the status text stick to?")] public ContentAlignment ALStatusPanelAlignment = ContentAlignment.MiddleCenter; + + [ShifterMeta("Desktop")] + [ShifterCategory("App Launcher")] + [RequiresUpgrade("shift_advanced_app_launcher")] + [ShifterName("AL System Status Height")] + [ShifterDescription("Set the height of the top system status bar in the App Launcher.")] + public int ALSystemStatusHeight = 50; + + [ShifterMeta("Desktop")] + [ShifterCategory("App Launcher")] + [RequiresUpgrade("shift_advanced_app_launcher")] + [ShifterName("AL Size")] + [ShifterDescription("Set the size of the App Launcher's container")] + public Size AALSize = new Size(425, 500); + + [ShifterMeta("Desktop")] + [ShifterCategory("App Launcher")] + [RequiresUpgrade("shift_advanced_app_launcher")] + [ShifterName("AL Category View Width")] + [ShifterDescription("Set the width of the left Category Listing on the app launcher.")] + public int AALCategoryViewWidth = 237; + + [ShifterMeta("Desktop")] + [ShifterCategory("App Launcher")] + [RequiresUpgrade("shift_advanced_app_launcher")] + [ShifterName("AL Item List Width")] + [ShifterDescription("Set the width of the item list in the app launcher.")] + public int AALItemViewWidth = 237; + + [ShifterMeta("Desktop")] + [ShifterCategory("App Launcher")] + [RequiresUpgrade("shift_advanced_app_launcher")] + [ShifterName("AL System Actions Height")] + [ShifterDescription("Set the height of the bottom system actions bar in the App Launcher.")] + public int ALSystemActionHeight = 30; + [ShifterMeta("Desktop")] [ShifterCategory("App Launcher")] [RequiresUpgrade("skinning;shift_advanced_app_launcher")] |
