Dear visitor, welcome to Dreamboard. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
This post has been edited 1 times, last edit by "Brutzelkarte" (Oct 16th 2008, 4:25pm)
Quoted
Original von hellmaster1024
ist es möglich oben wo "Kanalliste" steht den namen des Boquets auszugeben?
z.b. Free-TV, Premiere, Arena. Dirtte etc?
This post has been edited 1 times, last edit by "Homey" (Dec 5th 2008, 4:10pm)
Quoted
Original von Kerni
nein, geht nicht.
Das Boquets wird als Titel im Rahmen angezeigt, da aber alle Screens ohne Rahmen sind, wird der Titel leider nicht angezeigt.

This post has been edited 1 times, last edit by "Homey" (Dec 8th 2008, 11:14pm)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
- from Components.Button import Button
+ from Components.Button import Button
+ from Components.Label import Label
---------------------
class ChannelSelectionBase(Screen):
***
- self["key_blue"] = Button(_("Favourites"))
+ self["key_blue"] = Button(_("Favourites"))
+ self["title"] = Label(_("Channel Selection"))
---------------------
def buildTitleString(self):
***
- self.setTitle(titleStr)
+ self.setTitle(titleStr)
+ self["title"].setText(titleStr)
|
|
|
Source code |
1 2 3 4 |
<screen name="ChannelSelection" **** - <eLabel text="Channel Selection" position="500,63" size="330,30" font="Regular;27" halign="center" backgroundColor="#0b67a2" transparent="1"/> + <widget name="title" transparent="1" halign="left" position="420,70" size="430,30" font="Regular;20" backgroundColor="#0b67a2"/> |
This post has been edited 1 times, last edit by "fuchs" (Jan 21st 2009, 11:43pm)