aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs')
-rw-r--r--MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs94
1 files changed, 94 insertions, 0 deletions
diff --git a/MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs b/MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs
new file mode 100644
index 000000000..e164809cf
--- /dev/null
+++ b/MediaBrowser.Plugins.DefaultTheme/DisplayPreferences/ViewMenuPage.xaml.cs
@@ -0,0 +1,94 @@
+using MediaBrowser.Model.Entities;
+using System.Windows;
+
+namespace MediaBrowser.Plugins.DefaultTheme.DisplayPreferences
+{
+ /// <summary>
+ /// Interaction logic for ViewMenuPage.xaml
+ /// </summary>
+ public partial class ViewMenuPage : BaseDisplayPreferencesPage
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ViewMenuPage" /> class.
+ /// </summary>
+ public ViewMenuPage()
+ {
+ InitializeComponent();
+
+ radioCoverFlow.Click += radioCoverFlow_Click;
+ radioList.Click += radioList_Click;
+ radioPoster.Click += radioPoster_Click;
+ radioThumbstrip.Click += radioThumbstrip_Click;
+ }
+
+ /// <summary>
+ /// Called when [loaded].
+ /// </summary>
+ protected override void OnLoaded()
+ {
+ base.OnLoaded();
+
+ UpdateFields();
+ }
+
+ /// <summary>
+ /// Handles the Click event of the radioThumbstrip control.
+ /// </summary>
+ /// <param name="sender">The source of the event.</param>
+ /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
+ void radioThumbstrip_Click(object sender, RoutedEventArgs e)
+ {
+ MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Horizontal;
+ MainPage.DisplayPreferences.ViewType = ViewTypes.ThumbStrip;
+ MainPage.NotifyDisplayPreferencesChanged();
+ }
+
+ /// <summary>
+ /// Handles the Click event of the radioPoster control.
+ /// </summary>
+ /// <param name="sender">The source of the event.</param>
+ /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
+ void radioPoster_Click(object sender, RoutedEventArgs e)
+ {
+ MainPage.DisplayPreferences.ViewType = ViewTypes.Poster;
+ MainPage.NotifyDisplayPreferencesChanged();
+ }
+
+ /// <summary>
+ /// Handles the Click event of the radioList control.
+ /// </summary>
+ /// <param name="sender">The source of the event.</param>
+ /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
+ void radioList_Click(object sender, RoutedEventArgs e)
+ {
+ MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Vertical;
+ MainPage.DisplayPreferences.ViewType = ViewTypes.List;
+ MainPage.NotifyDisplayPreferencesChanged();
+ }
+
+ /// <summary>
+ /// Handles the Click event of the radioCoverFlow control.
+ /// </summary>
+ /// <param name="sender">The source of the event.</param>
+ /// <param name="e">The <see cref="RoutedEventArgs" /> instance containing the event data.</param>
+ void radioCoverFlow_Click(object sender, RoutedEventArgs e)
+ {
+ MainPage.DisplayPreferences.ScrollDirection = ScrollDirection.Horizontal;
+ MainPage.DisplayPreferences.ViewType = ViewTypes.CoverFlow;
+ MainPage.NotifyDisplayPreferencesChanged();
+ }
+
+ /// <summary>
+ /// Updates the fields.
+ /// </summary>
+ private void UpdateFields()
+ {
+ var displayPreferences = MainPage.DisplayPreferences;
+
+ radioCoverFlow.IsChecked = displayPreferences.ViewType == ViewTypes.CoverFlow;
+ radioList.IsChecked = displayPreferences.ViewType == ViewTypes.List;
+ radioPoster.IsChecked = displayPreferences.ViewType == ViewTypes.Poster;
+ radioThumbstrip.IsChecked = displayPreferences.ViewType == ViewTypes.ThumbStrip;
+ }
+ }
+}