Facadeview GUIListItem IconImage is missing (1 Viewer)

horned_reaper

Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    Hi all,

    apparently the GUIListItem's IconImage property is not displayed with Titan skin. My plugin has a facadeview control with GUIListItems having the IconImage property set.
    With Default and DefaultWide skin I can see the icons but not with Titan skin. Is this a known limitation?
     

    ncoH

    Retired Team Member
  • Premium Supporter
  • January 27, 2007
    925
    1,569
    Hannover
    Home Country
    Germany Germany
    Hi all,

    apparently the GUIListItem's IconImage property is not displayed with Titan skin. My plugin has a facadeview control with GUIListItems having the IconImage property set.
    With Default and DefaultWide skin I can see the icons but not with Titan skin. Is this a known limitation?

    Hi,

    we don`t show the iconImage by default. But it could be added if necessary. Which plugin do you mean?
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    Hi all,

    apparently the GUIListItem's IconImage property is not displayed with Titan skin. My plugin has a facadeview control with GUIListItems having the IconImage property set.
    With Default and DefaultWide skin I can see the icons but not with Titan skin. Is this a known limitation?

    Hi,

    we don`t show the iconImage by default. But it could be added if necessary. Which plugin do you mean?
    FRITZ!Box Manager.
    How to add the IconImage?
     
    Last edited:

    ncoH

    Retired Team Member
  • Premium Supporter
  • January 27, 2007
    925
    1,569
    Hannover
    Home Country
    Germany Germany
    ok, just add e.g.
    Code:
    		<PinIconXOff>28</PinIconXOff>
    		<PinIconYOff>15</PinIconYOff>
    		<PinIconWidth>24</PinIconWidth>
    		<PinIconHeight>24</PinIconHeight>

    or
    Code:
    		<IconXOff>28<IconXOff>
    		<IconYOff>15</IconYOff>
    to the listview facade in common.facade.fritz.xml (depends on what you use in plugin code).
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    ok, just add e.g.
    Code:
    		<PinIconXOff>28</PinIconXOff>
    		<PinIconYOff>15</PinIconYOff>
    		<PinIconWidth>24</PinIconWidth>
    		<PinIconHeight>24</PinIconHeight>

    or
    Code:
    		<IconXOff>28<IconXOff>
    		<IconYOff>15</IconYOff>
    to the listview facade in common.facade.fritz.xml (depends on what you use in plugin code).
    Thank you for your quick response!
    To which XML element is this code to be added?
     

    ncoH

    Retired Team Member
  • Premium Supporter
  • January 27, 2007
    925
    1,569
    Hannover
    Home Country
    Germany Germany
    Code:
    <control>
      <description>listcontrol</description>
      <type>listcontrol</type>
      ...
      ...
    </control>
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    Code:
    <control>
      <description>listcontrol</description>
      <type>listcontrol</type>
      ...
      ...
    </control>
    I'm sorry to bother you. I had already tried that but the result is only huge overlapped pictures. They don't seem to be aligned with the facadeview list items.
    What I'm doing wrong?
    ...
    <control>
    <animation effect="fade" start="0" end="100" time="300" delay="350">WindowOpen</animation>
    <animation effect="fade" start="100" end="0" time="0" delay="0">WindowClose</animation>
    <description>Composite control consisting of a list control and a thumbnail panel</description>
    <type>facadeview</type>
    <id>50</id>
    <control>
    <description>Listcontrol</description>
    <type>listcontrol</type>

    <IconXOff>4</IconXOff>
    <IconYOff>2</IconYOff>
    <PinIconXOff>785</PinIconXOff>
    <PinIconYOff>6</PinIconYOff>
    <PinIconWidth>35</PinIconWidth>
    <PinIconHeight>25</PinIconHeight>

    <id>50</id>
    <onleft>2</onleft>
    <onright>50</onright>
    <scrollOffset>1</scrollOffset>
    <posX>800</posX>
    <posY>331</posY>
    <width>1085</width>
    <height>700</height>
    <textXOff>0</textXOff>
    <dimColor>ffffffff</dimColor>
    <textureFocus>listcontrol_item_selected_wide.png</textureFocus>
    <textureNoFocus>-</textureNoFocus>
    <spinPosX>1828</spinPosX>
    <spinPosY>1000</spinPosY>
    </control>
    ...
     

    Attachments

    • common.facade.fritz.xml
      9.3 KB
    Last edited:

    ncoH

    Retired Team Member
  • Premium Supporter
  • January 27, 2007
    925
    1,569
    Hannover
    Home Country
    Germany Germany
    You have to set the width/height of the icon.

    e.g.:

    Code:
    <itemWidth>32</itemWidth>
    <itemHeight>32</itemHeight>
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    You have to set the width/height of the icon.

    e.g.:

    Code:
    <itemWidth>32</itemWidth>
    <itemHeight>32</itemHeight>
    Thank you very much! I appreciate your support.
    Only one more question: Do you know how to change the top header's color? <textcolor> seems to be ignored.
     
    Last edited:

    Users who are viewing this thread

    Top Bottom