Apollo One (5 Viewers)

morpheus_xx

Retired Team Member
  • Team MediaPortal
  • March 24, 2007
    12,073
    7,459
    Home Country
    Germany Germany
    I'm working on scrollbar style right now. There is a small problem: the size of "Knob" (indicator) is dependent on number of items (or better how much you can scroll), like in Explorer. If I use this variable height it looks this way:
    20141207-Scrollbar_Knob.jpg

    Quite fat :)

    Using your version looks better at first sight, but has the problem that the Knob is not at bottom when the list itself is:
    20141207-Scrollbar_Knob_Fixed.jpg

    What do you think we should do? Your "Dot" looks good, but we would need a solution for a better positioning. We have to calculate the position in any smarter way.
     

    morpheus_xx

    Retired Team Member
  • Team MediaPortal
  • March 24, 2007
    12,073
    7,459
    Home Country
    Germany Germany
    This could be a compromise: the knob is positioned "TopOffset + KnobHeight / 2". For longer list it looks better than for short lists.
    XML:
       <!-- Knob -->
                  <StackPanel Grid.Row="0" Grid.Column="0" Orientation="Vertical">
                    <StackPanel>
                      <StackPanel.Height>
                        <MultiBinding Converter="{StaticResource ExpressionMultiValueConverter}" ConverterParameter="{}{0}+({1}/2)">
                          <TemplateBinding Path="ScrollBarYKnobPos" />
                          <TemplateBinding Path="ScrollBarYKnobHeight" />
                        </MultiBinding>
                      </StackPanel.Height>
                    </StackPanel>
    
                    <Rectangle x:Name="ScrollBarYKnob" Width="{ThemeResource ScrollBarKnobWidth}" Height="18"
                        Stroke="{ThemeResource ScrollBarKnobStrokeColor}" RadiusX="9" RadiusY="9"
                        Fill="{ThemeResource ScrollBarKnobBackgroundColor}">
                    </Rectangle>
                  </StackPanel>

    20141207-Scrollbar_Top+HalfHeight_1.jpg 20141207-Scrollbar_Top+HalfHeight_2.jpg 20141207-Scrollbar_Top+HalfHeight_3.jpg 20141207-Scrollbar_Top+HalfHeight_4.jpg
     

    wizard123

    Retired Team Member
  • Premium Supporter
  • January 24, 2012
    2,569
    2,680
    Home Country
    United Kingdom United Kingdom
    Looks good in those screenshots you just posted (y)

    The knob has to stay as a knob otherwise it looks odd.
     

    morpheus_xx

    Retired Team Member
  • Team MediaPortal
  • March 24, 2007
    12,073
    7,459
    Home Country
    Germany Germany
    Some of the simpler tasks: could you please create some default images for movie, series (or video in general)? And for audio and images. At least the video related should be in poster format, audio and image styles I didn't touch yet...

    TV time now...
     

    morpheus_xx

    Retired Team Member
  • Team MediaPortal
  • March 24, 2007
    12,073
    7,459
    Home Country
    Germany Germany
    @wizard123 can you please create images (bitmaps) for all player controls? Each control as single image:
    • SkipBackButton
    • RewindButton
    • PlayButton
    • PauseButton
    • StopButton
    • ForwardButton
    • SkipForwardButton
    • SelectTitleButton (DVD, BD)
    • PreviousChapterButton
    • SelectChapterButton
    • NextChapterButton
    • SelectSubtitleButton
    • Audio
    • Audio Mute (audio with disabled indicator)
    I created the basic container for OSD now and will continue in ProgressBar style. I really like your idea of chapter indicators (y) Not sure if I can manage it, but the idea is great :)
    20141208-OSD_WiP.jpg
     

    wizard123

    Retired Team Member
  • Premium Supporter
  • January 24, 2012
    2,569
    2,680
    Home Country
    United Kingdom United Kingdom
    Sure i will work on those and some default images next no problem, great progress on the osd (y)
     

    wizard123

    Retired Team Member
  • Premium Supporter
  • January 24, 2012
    2,569
    2,680
    Home Country
    United Kingdom United Kingdom
    Agreed it looks very sexy for a progress bar lol :D
     

    mm1352000

    Retired Team Member
  • Premium Supporter
  • September 1, 2008
    21,577
    8,224
    Home Country
    New Zealand New Zealand
    <off-topic>
    I'd like to encourage you both. It's great to see such an awesome example of positive collaboration, and the results are very impressive!. :)
    Keep it up! (y)
    </off-topic>
     

    wizard123

    Retired Team Member
  • Premium Supporter
  • January 24, 2012
    2,569
    2,680
    Home Country
    United Kingdom United Kingdom
    Missing media poster...
     

    Attachments

    • Apollo_missing media.jpg
      Apollo_missing media.jpg
      1.1 MB
    • ms_media.png
      ms_media.png
      12.2 KB

    Users who are viewing this thread

    Top Bottom