From 047338bcc80400208a21f8af6ee0a44776d526f7 Mon Sep 17 00:00:00 2001 From: Tally Date: Thu, 11 Feb 2021 14:05:18 -0500 Subject: [PATCH] v0.9.3 Both variants now available in own folders. --- Magpie_Desktop/Constants.xaml | 113 +++ Magpie_Desktop/CustomControls/SliderEx.xaml | 80 ++ Magpie_Desktop/CustomControls/WindowBase.xaml | 18 + Magpie_Desktop/DefaultControls/Button.xaml | 43 + Magpie_Desktop/DefaultControls/CheckBox.xaml | 60 ++ Magpie_Desktop/DefaultControls/ComboBox.xaml | 108 +++ .../DefaultControls/DatePicker.xaml | 246 ++++++ .../DefaultControls/RadioButton.xaml | 51 ++ .../DefaultControls/TabControl.xaml | 177 ++++ Magpie_Desktop/DefaultControls/Thumb.xaml | 33 + .../DerivedStyles/BottomButton.xaml | 37 + .../DerivedStyles/DetailsViewGroupStyle.xaml | 54 ++ .../DerivedStyles/GridViewItemStyle.xaml | 89 ++ .../DerivedStyles/GridViewItemTemplate.xaml | 86 ++ .../DerivedStyles/MainWindowStyle.xaml | 60 ++ Magpie_Desktop/DerivedStyles/PlayButton.xaml | 39 + .../DerivedStyles/Simplebutton.xaml | 30 + .../DerivedStyles/StandardWindowStyle.xaml | 61 ++ .../Views/DetailsViewGameOverview.xaml | 834 ++++++++++++++++++ Magpie_Desktop/Views/ExplorerPanel.xaml | 41 + Magpie_Desktop/Views/FilterPanel.xaml | 272 ++++++ .../Views/GridViewGameOverview.xaml | 536 +++++++++++ Magpie_Desktop/Views/Library.xaml | 49 + Magpie_Desktop/Views/LibraryDetailsView.xaml | 85 ++ Magpie_Desktop/Views/LibraryGridView.xaml | 82 ++ Magpie_Desktop/Views/MainPanel.xaml | 168 ++++ Magpie_Desktop/Views/MainWindow.xaml | 59 ++ Magpie_Desktop/Views/Sidebar.xaml | 76 ++ Magpie_Desktop/theme.yaml | 21 + Magpie_Desktop_GBV/Constants.xaml | 114 +++ .../CustomControls/SliderEx.xaml | 80 ++ .../CustomControls/WindowBase.xaml | 18 + .../DefaultControls/Button.xaml | 43 + .../DefaultControls/CheckBox.xaml | 60 ++ .../DefaultControls/ComboBox.xaml | 108 +++ .../DefaultControls/DatePicker.xaml | 246 ++++++ .../DefaultControls/RadioButton.xaml | 51 ++ .../DefaultControls/TabControl.xaml | 177 ++++ Magpie_Desktop_GBV/DefaultControls/Thumb.xaml | 33 + .../DerivedStyles/BottomButton.xaml | 37 + .../DerivedStyles/DetailsViewGroupStyle.xaml | 54 ++ .../DerivedStyles/GridViewItemStyle.xaml | 89 ++ .../DerivedStyles/GridViewItemTemplate.xaml | 86 ++ .../DerivedStyles/MainWindowStyle.xaml | 60 ++ .../DerivedStyles/PlayButton.xaml | 39 + .../DerivedStyles/Simplebutton.xaml | 30 + .../DerivedStyles/StandardWindowStyle.xaml | 61 ++ .../Views/DetailsViewGameOverview.xaml | 834 ++++++++++++++++++ Magpie_Desktop_GBV/Views/ExplorerPanel.xaml | 41 + Magpie_Desktop_GBV/Views/FilterPanel.xaml | 272 ++++++ .../Views/GridViewGameOverview.xaml | 563 ++++++++++++ Magpie_Desktop_GBV/Views/Library.xaml | 49 + .../Views/LibraryDetailsView.xaml | 85 ++ Magpie_Desktop_GBV/Views/LibraryGridView.xaml | 82 ++ Magpie_Desktop_GBV/Views/MainPanel.xaml | 168 ++++ Magpie_Desktop_GBV/Views/MainWindow.xaml | 59 ++ Magpie_Desktop_GBV/Views/Sidebar.xaml | 76 ++ Magpie_Desktop_GBV/theme.yaml | 21 + 58 files changed, 7244 insertions(+) create mode 100644 Magpie_Desktop/Constants.xaml create mode 100644 Magpie_Desktop/CustomControls/SliderEx.xaml create mode 100644 Magpie_Desktop/CustomControls/WindowBase.xaml create mode 100644 Magpie_Desktop/DefaultControls/Button.xaml create mode 100644 Magpie_Desktop/DefaultControls/CheckBox.xaml create mode 100644 Magpie_Desktop/DefaultControls/ComboBox.xaml create mode 100644 Magpie_Desktop/DefaultControls/DatePicker.xaml create mode 100644 Magpie_Desktop/DefaultControls/RadioButton.xaml create mode 100644 Magpie_Desktop/DefaultControls/TabControl.xaml create mode 100644 Magpie_Desktop/DefaultControls/Thumb.xaml create mode 100644 Magpie_Desktop/DerivedStyles/BottomButton.xaml create mode 100644 Magpie_Desktop/DerivedStyles/DetailsViewGroupStyle.xaml create mode 100644 Magpie_Desktop/DerivedStyles/GridViewItemStyle.xaml create mode 100644 Magpie_Desktop/DerivedStyles/GridViewItemTemplate.xaml create mode 100644 Magpie_Desktop/DerivedStyles/MainWindowStyle.xaml create mode 100644 Magpie_Desktop/DerivedStyles/PlayButton.xaml create mode 100644 Magpie_Desktop/DerivedStyles/Simplebutton.xaml create mode 100644 Magpie_Desktop/DerivedStyles/StandardWindowStyle.xaml create mode 100644 Magpie_Desktop/Views/DetailsViewGameOverview.xaml create mode 100644 Magpie_Desktop/Views/ExplorerPanel.xaml create mode 100644 Magpie_Desktop/Views/FilterPanel.xaml create mode 100644 Magpie_Desktop/Views/GridViewGameOverview.xaml create mode 100644 Magpie_Desktop/Views/Library.xaml create mode 100644 Magpie_Desktop/Views/LibraryDetailsView.xaml create mode 100644 Magpie_Desktop/Views/LibraryGridView.xaml create mode 100644 Magpie_Desktop/Views/MainPanel.xaml create mode 100644 Magpie_Desktop/Views/MainWindow.xaml create mode 100644 Magpie_Desktop/Views/Sidebar.xaml create mode 100644 Magpie_Desktop/theme.yaml create mode 100644 Magpie_Desktop_GBV/Constants.xaml create mode 100644 Magpie_Desktop_GBV/CustomControls/SliderEx.xaml create mode 100644 Magpie_Desktop_GBV/CustomControls/WindowBase.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/Button.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/CheckBox.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/ComboBox.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/DatePicker.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/RadioButton.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/TabControl.xaml create mode 100644 Magpie_Desktop_GBV/DefaultControls/Thumb.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/BottomButton.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/DetailsViewGroupStyle.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/GridViewItemStyle.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/GridViewItemTemplate.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/MainWindowStyle.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/PlayButton.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/Simplebutton.xaml create mode 100644 Magpie_Desktop_GBV/DerivedStyles/StandardWindowStyle.xaml create mode 100644 Magpie_Desktop_GBV/Views/DetailsViewGameOverview.xaml create mode 100644 Magpie_Desktop_GBV/Views/ExplorerPanel.xaml create mode 100644 Magpie_Desktop_GBV/Views/FilterPanel.xaml create mode 100644 Magpie_Desktop_GBV/Views/GridViewGameOverview.xaml create mode 100644 Magpie_Desktop_GBV/Views/Library.xaml create mode 100644 Magpie_Desktop_GBV/Views/LibraryDetailsView.xaml create mode 100644 Magpie_Desktop_GBV/Views/LibraryGridView.xaml create mode 100644 Magpie_Desktop_GBV/Views/MainPanel.xaml create mode 100644 Magpie_Desktop_GBV/Views/MainWindow.xaml create mode 100644 Magpie_Desktop_GBV/Views/Sidebar.xaml create mode 100644 Magpie_Desktop_GBV/theme.yaml diff --git a/Magpie_Desktop/Constants.xaml b/Magpie_Desktop/Constants.xaml new file mode 100644 index 0000000..6363238 --- /dev/null +++ b/Magpie_Desktop/Constants.xaml @@ -0,0 +1,113 @@ + + + 12 + 14 + 15 + 20 + 29 + Trebuchet MS + 1 + 1 + 1 + 0 + + #FF000000 + #FFFFFFFF + #f2f2f2 + #cacaca + #FF000000 + #2b2b2b + #202020 + #4d4d4d + #62C3DF + #FFFF0000 + #121212 + #2B2B2B + #202020 + #6c6c6c + #282828 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + C:\Users\Tally\AppData\Roaming\Playnite + About the Game + false + + 0 + 1 + seguisym.ttf#Segoe UI Symbol + Visible + 1280 + + + #2b2b2b + #4BC937 + #385DA2 + #5C63BB + #e34141 + #00121212 + + + + #282828 + + + + + + + + + + + + + + + + + + + + + diff --git a/Magpie_Desktop/CustomControls/SliderEx.xaml b/Magpie_Desktop/CustomControls/SliderEx.xaml new file mode 100644 index 0000000..9f38486 --- /dev/null +++ b/Magpie_Desktop/CustomControls/SliderEx.xaml @@ -0,0 +1,80 @@ + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/CustomControls/WindowBase.xaml b/Magpie_Desktop/CustomControls/WindowBase.xaml new file mode 100644 index 0000000..5a9bf47 --- /dev/null +++ b/Magpie_Desktop/CustomControls/WindowBase.xaml @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/Button.xaml b/Magpie_Desktop/DefaultControls/Button.xaml new file mode 100644 index 0000000..dcba5d9 --- /dev/null +++ b/Magpie_Desktop/DefaultControls/Button.xaml @@ -0,0 +1,43 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/CheckBox.xaml b/Magpie_Desktop/DefaultControls/CheckBox.xaml new file mode 100644 index 0000000..cf2eab0 --- /dev/null +++ b/Magpie_Desktop/DefaultControls/CheckBox.xaml @@ -0,0 +1,60 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/ComboBox.xaml b/Magpie_Desktop/DefaultControls/ComboBox.xaml new file mode 100644 index 0000000..b1035cc --- /dev/null +++ b/Magpie_Desktop/DefaultControls/ComboBox.xaml @@ -0,0 +1,108 @@ + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/DatePicker.xaml b/Magpie_Desktop/DefaultControls/DatePicker.xaml new file mode 100644 index 0000000..41a8698 --- /dev/null +++ b/Magpie_Desktop/DefaultControls/DatePicker.xaml @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/RadioButton.xaml b/Magpie_Desktop/DefaultControls/RadioButton.xaml new file mode 100644 index 0000000..167f6b3 --- /dev/null +++ b/Magpie_Desktop/DefaultControls/RadioButton.xaml @@ -0,0 +1,51 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/TabControl.xaml b/Magpie_Desktop/DefaultControls/TabControl.xaml new file mode 100644 index 0000000..e9a108f --- /dev/null +++ b/Magpie_Desktop/DefaultControls/TabControl.xaml @@ -0,0 +1,177 @@ + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DefaultControls/Thumb.xaml b/Magpie_Desktop/DefaultControls/Thumb.xaml new file mode 100644 index 0000000..0a145c3 --- /dev/null +++ b/Magpie_Desktop/DefaultControls/Thumb.xaml @@ -0,0 +1,33 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/BottomButton.xaml b/Magpie_Desktop/DerivedStyles/BottomButton.xaml new file mode 100644 index 0000000..93f507a --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/BottomButton.xaml @@ -0,0 +1,37 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/DetailsViewGroupStyle.xaml b/Magpie_Desktop/DerivedStyles/DetailsViewGroupStyle.xaml new file mode 100644 index 0000000..c8a65af --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/DetailsViewGroupStyle.xaml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/GridViewItemStyle.xaml b/Magpie_Desktop/DerivedStyles/GridViewItemStyle.xaml new file mode 100644 index 0000000..a277c15 --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/GridViewItemStyle.xaml @@ -0,0 +1,89 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/GridViewItemTemplate.xaml b/Magpie_Desktop/DerivedStyles/GridViewItemTemplate.xaml new file mode 100644 index 0000000..b8e69da --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/GridViewItemTemplate.xaml @@ -0,0 +1,86 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/MainWindowStyle.xaml b/Magpie_Desktop/DerivedStyles/MainWindowStyle.xaml new file mode 100644 index 0000000..56c5be2 --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/MainWindowStyle.xaml @@ -0,0 +1,60 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/PlayButton.xaml b/Magpie_Desktop/DerivedStyles/PlayButton.xaml new file mode 100644 index 0000000..3198698 --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/PlayButton.xaml @@ -0,0 +1,39 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/Simplebutton.xaml b/Magpie_Desktop/DerivedStyles/Simplebutton.xaml new file mode 100644 index 0000000..2591150 --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/Simplebutton.xaml @@ -0,0 +1,30 @@ + + + + \ No newline at end of file diff --git a/Magpie_Desktop/DerivedStyles/StandardWindowStyle.xaml b/Magpie_Desktop/DerivedStyles/StandardWindowStyle.xaml new file mode 100644 index 0000000..ec3803b --- /dev/null +++ b/Magpie_Desktop/DerivedStyles/StandardWindowStyle.xaml @@ -0,0 +1,61 @@ + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/Views/DetailsViewGameOverview.xaml b/Magpie_Desktop/Views/DetailsViewGameOverview.xaml new file mode 100644 index 0000000..31139d9 --- /dev/null +++ b/Magpie_Desktop/Views/DetailsViewGameOverview.xaml @@ -0,0 +1,834 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop/Views/GridViewGameOverview.xaml b/Magpie_Desktop/Views/GridViewGameOverview.xaml new file mode 100644 index 0000000..75114eb --- /dev/null +++ b/Magpie_Desktop/Views/GridViewGameOverview.xaml @@ -0,0 +1,536 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Magpie_Desktop_GBV/Views/GridViewGameOverview.xaml b/Magpie_Desktop_GBV/Views/GridViewGameOverview.xaml new file mode 100644 index 0000000..7fca0ea --- /dev/null +++ b/Magpie_Desktop_GBV/Views/GridViewGameOverview.xaml @@ -0,0 +1,563 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +