Hello Guest, if you are reading this it means you have not registered yet. Please take a second, Click here to register, and in a few simple steps you will be able to enjoy our community and use our OpenViX support section.
Results 1 to 6 of 6

Thread: Increase GEPG program summary font size

  1. #1
    BubbleBalls's Avatar
    Title
    Forum Supporter
    Donated Member
    Join Date
    Jun 2012
    Location
    Ireland
    Posts
    770
    Thanks
    249
    Thanked 186 Times in 147 Posts

    Increase GEPG program summary font size

    As you can see from my screenshoot I use the largest text available due to lack of 20/20. Build 683. VIX-NIGHT-HD

    screenshot.jpg

    I would like to make the program title and description on the top left a little bigger (and pobably on the second infobar too). I have copied the CommonSkin.xml before using NP++ to change the fontsize on many of GraphicalEPG sections - one by one. After many NP changes, GUI restarts, NP undos etc I have not found the correct lines.

    Am I searching in the correct file? Anyone know which file/line I should change?

    Ta

  2. #2
    Rob van der Does's Avatar
    Title
    ViX Beta Tester
    Join Date
    Apr 2010
    Location
    The Netherlands & France
    Posts
    36,262
    Thanks
    1,720
    Thanked 9,461 Times in 6,675 Posts
    You are in the correct file.
    You are working in the screen 'screen name="GraphicalEPGPIG" , right?
    The name of the show is in
    Code:
    <widget source="Event" render="Label" position="20,70" size="577,30" halign="left" backgroundColor="black" font="Bold;24" noWrap="1" transparent="0" foregroundColor="orange">
    	<convert type="EventName">Name</convert>
    </widget>
    The description of the show is in
    Code:
    <widget source="Event" render="Label" position="20,110" zPosition="1" size="780,170" font="Regular;22" foregroundColor="window-fg" backgroundColor="black" valign="top">
    	<convert type="EventName">FullDescription</convert>
    </widget>

    Help asked via PM will be ignored.
    The forum is there for help and all will benefit from your questions.
    NO CARD SHARING TALK WILL BE TOLERATED, LAN OR WAN, IN OPEN FORUM OR PM !

    English is not my native tongue.
    I apologise for all my grammar, spelling and idiom errors.

  3. The Following User Says Thank You to Rob van der Does For This Useful Post:

    BubbleBalls (26-06-13)

  4. #3
    BubbleBalls's Avatar
    Title
    Forum Supporter
    Donated Member
    Join Date
    Jun 2012
    Location
    Ireland
    Posts
    770
    Thanks
    249
    Thanked 186 Times in 147 Posts

    Increase GEPG program summary font size

    Cheers, I saw several options under graphicalepg and do remember changing graphicalepgPIG but obviously missed that line. Being on the forum regularly lets me see how many requests you guys get and I realised that font size is already set to suit the masses. Changing font size on a couple of screens will be very helpful for me. I'll try again tonight.


    Tapatalker

  5. #4
    BubbleBalls's Avatar
    Title
    Forum Supporter
    Donated Member
    Join Date
    Jun 2012
    Location
    Ireland
    Posts
    770
    Thanks
    249
    Thanked 186 Times in 147 Posts
    Quote Originally Posted by Rob van der Does View Post
    You are in the correct file.
    Code:
    <widget source="Event" render="Label" position="20,70" size="577,30" halign="left" backgroundColor="black" font="Bold;24" noWrap="1" transparent="0" foregroundColor="orange">
    	<convert type="EventName">Name</convert>
    </widget>
    Code:
    <widget source="Event" render="Label" position="20,110" zPosition="1" size="780,170" font="Regular;22" foregroundColor="window-fg" backgroundColor="black" valign="top">
    	<convert type="EventName">FullDescription</convert>
    </widget>
    Rob,
    Copying and pasting that code has helped me see the logic of the CommonSkin file and I have increased the font size on GEPG and 2nd infobar. These are small tweaks in the code but it has taken me quite some time, and is only a tiny portion of the coding you guys must trawl through regularly. I am only beginning to understand the effort you guys put into VIX.

    This is a small but extremely helpful tweak for me - Thanks very much for the time and effort.

  6. The Following User Says Thank You to BubbleBalls For This Useful Post:

    Larry-G (27-06-13)

  7. #5
    BubbleBalls's Avatar
    Title
    Forum Supporter
    Donated Member
    Join Date
    Jun 2012
    Location
    Ireland
    Posts
    770
    Thanks
    249
    Thanked 186 Times in 147 Posts
    Hi,

    Hope I can pick your brains again Rob? I have been quite happy playing around with xml files for the past couple of weeks and seeing changes take effect. I am almost happy with the increased font sizes I have used on different screens and would now like to make them a user file.

    Am I correct in creating a skin_user.xml and locating it in etc/enigma2

    If, for example, I want to keep changes to "event" from commonskin would my new skin_user.xml simply contain the following? (As you copied above)

    <widget source="Event" render="Label" position="20,70" size="577,30" halign="left" backgroundColor="black" font="Bold;24" noWrap="1" transparent="0" foregroundColor="orange">
    <convert type="EventName">Name</convert>
    </widget>

    Does </widget> signify the end of the code for a particular section?

    Cheers

  8. #6
    Rob van der Does's Avatar
    Title
    ViX Beta Tester
    Join Date
    Apr 2010
    Location
    The Netherlands & France
    Posts
    36,262
    Thanks
    1,720
    Thanked 9,461 Times in 6,675 Posts
    Quote Originally Posted by BubbleBalls View Post
    Am I correct in creating a skin_user.xml and locating it in etc/enigma2
    That is an option, but that would apply to any skin you use.
    If you give the file the name skin_user_skinname.xml it would only apply to this specific skin (giving you the option to use any other skin without any problems.


    Quote Originally Posted by BubbleBalls View Post
    If, for example, I want to keep changes to "event" from commonskin would my new skin_user.xml simply contain the following? (As you copied above)

    <widget source="Event" render="Label" position="20,70" size="577,30" halign="left" backgroundColor="black" font="Bold;24" noWrap="1" transparent="0" foregroundColor="orange">
    <convert type="EventName">Name</convert>
    </widget>
    No: you need to include complete screens in this file.

    Quote Originally Posted by BubbleBalls View Post
    Does </widget> signify the end of the code for a particular section?
    Yes: Any '/' indicates the end of any 'sub section'.


    See also this thread.
    Last edited by Rob van der Does; 10-07-13 at 04:14.

    Help asked via PM will be ignored.
    The forum is there for help and all will benefit from your questions.
    NO CARD SHARING TALK WILL BE TOLERATED, LAN OR WAN, IN OPEN FORUM OR PM !

    English is not my native tongue.
    I apologise for all my grammar, spelling and idiom errors.

  9. The Following User Says Thank You to Rob van der Does For This Useful Post:

    BubbleBalls (12-07-13)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.