Blue Vision (1 Viewer)

ge2301

Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    Whaooo its an castle
    Yes, m² of course, in case of m³ it would be problematic ;)
    It's not a castle, just a huge dublex apartment with 390m². And before you think something wrong. It's paid by company, I could not effort this :D
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    Does it happen only in specific screens?
    After reading 2nd time I saw that screen didn't mean TV screens, but screens of the skin :)
    I see it strongly in grid view for example movies. The shadow edge radius is little bit smaller than the edge radius of the poster, resulting in seeing too much shadow in the corners.
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    By the way. Just about you not getting bored...;)
    For sure I'm not bored :p

    After SR15 is out I would love to have some "extra" buttons. First is a button in OSD linked to the CP screen This would make things easier a lot and should not be too hard to implement. And I also would love to have buttons (maybe in hidden menu) to refresh the recent shares. E.G. when I'm somewhere in the series section I want to have a button to manually refresh the series share(s) directly from here.
    A button in OSD is not planned, because when a movie is playing the play symbol in Group Main Menu will be available. Selecting it will directly refer to CP screen.
    For the other points it could be possible. I also have several ideas. I must see, how everything comes together. Actually I'd also like to add a button to the left side, that opens the hidden menu
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    I especially ment the input issue, not the shadow ;)
    :whistle: ah ok. After reading 3rd time. I have this problem in all screens. There is a lag and sometimes I have to press buttons 2 times.
    in WMC I didn't observe it like this, so I wondered. Anyway I'll exchange the battaries of remote control once and clean the IR receiver and see ...
     

    morpheus_xx

    Retired Team Member
  • Team MediaPortal
  • March 24, 2007
    12,073
    7,459
    Home Country
    Germany Germany
    I thought to make a break, but then I got an idea how to implement the fading in media list:
    01_media_scroll_top.jpg 02_media_scroll_mid.jpg 03_media_scroll_bottom.jpg
    Please ignore the duplicated knobs, I have no idea yet about the cause. But the listview itself looks good with this. And code is also not very complicated. I only need to distinguish horizontal/vertical gradient.

    In principle I set the fade offsets depeding on knob position (relative to scrollviewer top/bottom)
    XML:
      <Style x:Key="LeftSideScrollViewerStyle" TargetType="{x:Type ScrollViewer}">
        <Setter Property="Template">
          <Setter.Value>
            <ControlTemplate TargetType="{x:Type ScrollViewer}">
              <Grid x:Name="ScrollViewerGrid">
                <Grid.OpacityMask>
                  <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
                    <GradientStop Offset="0" Color="#00FFFFFF"/>
                    <GradientStop Color="#FFFFFFFF">
                      <GradientStop.Offset>
                        <MultiBinding Converter="{StaticResource ExpressionMultiValueConverter}" ConverterParameter="{}{0} &gt; 0 ? {1} : {2}">
                          <TemplateBinding Path="ScrollBarYKnobPos" />
                          <Binding Source="0.10" />
                          <Binding Source="0" />
                        </MultiBinding>
                      </GradientStop.Offset>
                    </GradientStop>
                    <GradientStop Color="#FFFFFFFF">
                      <GradientStop.Offset>
                        <MultiBinding Converter="{StaticResource ExpressionMultiValueConverter}" ConverterParameter="{}{0}+{1} &lt; {2} ? {3} : {4}">
                          <TemplateBinding Path="ScrollBarYKnobPos" />
                          <TemplateBinding Path="ScrollBarYKnobHeight" />
                          <TemplateBinding Path="ScrollBarYSize" />
                          <Binding Source="0.9" />
                          <Binding Source="1" />
                        </MultiBinding>
                      </GradientStop.Offset>
                    </GradientStop>
                    <GradientStop Offset="1" Color="#00FFFFFF"/>
                  </LinearGradientBrush >
                </Grid.OpacityMask>
                <Grid.ColumnDefinitions>
    ...
     

    ge2301

    Lead Design MP2
  • Team MediaPortal
  • January 11, 2014
    8,736
    3,501
    Stuttgart
    Home Country
    Germany Germany
    I thought to make a break, but then I got an idea how to implement the fading in media list:
    View attachment 166677 View attachment 166678 View attachment 166679
    Please ignore the duplicated knobs, I have no idea yet about the cause. But the listview itself looks good with this. And code is also not very complicated. I only need to distinguish horizontal/vertical gradient.

    In principle I set the fade offsets depeding on knob position (relative to scrollviewer top/bottom)

    I have tried this as well, because I like it too :) Just I see the same graphic errors for the edges of the poster.
    The opacity mask for the rounded edges is somehow applied, but you can see the rectangle shape of the posters also in your screenshots.
    Please look here: https://forum.team-mediaportal.com/threads/apollo-one.121706/page-61#post-1130252
     

    Lehmden

    Retired Team Member
  • Premium Supporter
  • December 17, 2010
    12,562
    3,944
    Lehmden
    Home Country
    Germany Germany
    Hi.
    Just want to tell... I just have seen some earlier screenshots from BV skin (older posting) and I have to say that there is a giant progress visible. The look and feel of BV really is impressing. Especially the new "buttons" are making a big difference in look and the new menu navigation is responsible for the best navigation behaviour MP2 ever had. Great job. (y)
     

    Users who are viewing this thread

    Top Bottom