Blue Vision (2 Viewers)

breese

Retired Team Member
  • Premium Supporter
  • July 11, 2011
    3,902
    770
    66
    Arlington Heights, Illinois
    Home Country
    United States of America United States of America
    I like the previous one...
    Would the Sections be choosable (clicking on the word Movies takes you there)?
    Will it be configurable?
    1-Not seeing me putting Email message info on the screen
    2-Would like the Weather where Email is
    3-Be able to replace News with maybe Recordings?

    Of the 2 new mock-ups, the one on the left. But again, the above questions remain
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    1-Not seeing me putting Email message info on the screen
    2-Would like the Weather where Email is
    3-Be able to replace News with maybe Recordings?

    1) Acutally I didn't get your point :)
    2) Agree, weather should be on the top
    3) Hmm, at first it won't be configurable. Not because I don't want, but because the code would be complicated. When more plugins, like email, are available the user should set up the home screen as he like. Can be a future feature
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    I added 2 more mock-ups. I think it was good to ask, because I do not prefer the "old" one ;) It will be problematic to put the same amount of mediaitems per view due to space limitations.
    I personally like most #4. Hope this comes closer to what you like.
    https://forum.team-mediaportal.com/threads/new-skin-bluevision.129477/page-30#post-1130632

    EDIT: Perhaps it would be better to replace "images" with "recordings" in case a TV-tunter is installed.
     

    osre

    Retired Team Member
  • Premium Supporter
  • December 14, 2014
    775
    387
    Home Country
    Germany Germany
    I think #3 fits best into the overall design and also shows best which items belongs to which caption.
     

    breese

    Retired Team Member
  • Premium Supporter
  • July 11, 2011
    3,902
    770
    66
    Arlington Heights, Illinois
    Home Country
    United States of America United States of America
    I also like 3.
    Accross the top of each section is what it is, Movies, Series, Audo, Etc
    Can those words be clickable shortcuts to what they are?
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    @morpheus_xx
    I prepared below template for the homescreen. Currently I put the content into MediaItemsList.inc in order to see the effects in MP2.
    The weather extract is shown and it's working. The NestedListView does not show up. Anyway it would be better to distiguish between the media types (audio, movie, series, image, recordings).
    This gives more flexibility for later, e.g. user might selected the content in homescreen and the view style can be different between the different media types as I have sketched in my mock-ups. Can you help here? :) Thanks

    <According to the feedbacks I'll implement the design proposal #3>

    HTML:
    <?xml version="1.0" encoding="utf-8"?>
    <Grid
        xmlns="www.team-mediaportal.com/2008/mpf/directx"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:collections="clr-namespace:MediaPortal.UI.Presentation.DataObjects;assembly=MediaPortal.UI"
        DataContext="{Binding Source={Model 4CDD601F-E280-43b9-AD0A-6D7B2403C856},Path=NavigationData.CurrentScreenData}"
    
        > <!-- Model = MediaNavigationModel -->
      <Grid.Resources>
        <Model x:Key="MediaModel" Id="4CDD601F-E280-43b9-AD0A-6D7B2403C856"/>
        <Model x:Key="CurrentWeatherModel" Id="FC57FF5C-F72F-47E9-B973-338E31FF7FF1"/>
      </Grid.Resources>
      <Grid.RowDefinitions>
        <RowDefinition Height="Auto"/>
        <RowDefinition Height="*"/>
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
        <ColumnDefinition Width="Auto"/>
        <ColumnDefinition Width="*"/>
      </Grid.ColumnDefinitions>
    
    
      <Grid Grid.Row="0" Grid.RowSpan="2" Grid.Column="0" DataContext="{Binding Source={Model 11193401-D85D-4D50-9825-E9EB34D87062}}">
        <Grid.RowDefinitions>
          <RowDefinition Height="Auto"/>
          <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
          <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <ListView x:Name="MasterList" ItemsSource="{Binding AllItems}" Style="{ThemeResource NestedMediaListViewStyle}">
        </ListView>
      </Grid>
    
      <StackPanel Grid.Row="1" Grid.Column="1" >
      <Image  x:Name="SmallIcon" Source="{Binding Source={StaticResource CurrentWeatherModel}, Path=CurrentLocation.Condition.BigIconProperty}"
              IsVisible="{Binding UseInHome}" HorizontalAlignment="Center" Margin="0,0,0,0"/>
    
      <Label  x:Name="Temp" Content="{Binding Source={StaticResource CurrentWeatherModel}, Path=CurrentLocation.Condition.Temperature}"
              FontFamily="TitanBold" Color="{ThemeResource TextColor}" IsVisible="{Binding UseInHome}"
              VerticalAlignment="Center" HorizontalAlignment="Center"/>
    
      <Label  x:Name="Place" Content="{Binding Source={StaticResource CurrentWeatherModel}, Path=CurrentLocation.Name}"
            FontFamily="TitanBold" Color="{ThemeResource TextColor}" IsVisible="{Binding UseInHome}"
            VerticalAlignment="Center" HorizontalAlignment="Center"/>
      </StackPanel>
    
    
    </Grid>
     

    Users who are viewing this thread

    Top Bottom