diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-06-01 16:08:32 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-06-10 14:46:31 +0200 |
| commit | f2b1a7e86c4143b6112a119bd00a2adcc0844b71 (patch) | |
| tree | c01dcabb2ff331d4800fc8103c9c51e0f82819f4 /data | |
| parent | 4f571e01bc8f25b5b1c7ff5a147d91fbf795038a (diff) | |
| download | enigma2-f2b1a7e86c4143b6112a119bd00a2adcc0844b71.tar.gz enigma2-f2b1a7e86c4143b6112a119bd00a2adcc0844b71.zip | |
add support for rbg565 color oled
Diffstat (limited to 'data')
| -rwxr-xr-x | data/skin.xml | 14 | ||||
| -rwxr-xr-x | data/skin_default.xml | 16 |
2 files changed, 30 insertions, 0 deletions
diff --git a/data/skin.xml b/data/skin.xml index 32adb2be..868fbc4b 100755 --- a/data/skin.xml +++ b/data/skin.xml @@ -61,6 +61,20 @@ <color name="WindowTitleForeground" color="#ffffff" /> <color name="WindowTitleBackground" color="#000000" /> </windowstyle> + <windowstyle type="skinned" id="2"> + <color name="Background" color="#000000" /> + <color name="LabelForeground" color="#ffffff" /> + <color name="ListboxBackground" color="#000000" /> + <color name="ListboxForeground" color="#ffffff" /> + <color name="ListboxSelectedBackground" color="#000000" /> + <color name="ListboxSelectedForeground" color="#ffffff" /> + <color name="ListboxMarkedBackground" color="#000000" /> + <color name="ListboxMarkedForeground" color="#ffffff" /> + <color name="ListboxMarkedAndSelectedBackground" color="#000000" /> + <color name="ListboxMarkedAndSelectedForeground" color="#ffffff" /> + <color name="WindowTitleForeground" color="#ffffff" /> + <color name="WindowTitleBackground" color="#000000" /> + </windowstyle> <!-- Fonts --> <fonts> <!-- <font filename="md_khmurabi_10.ttf" name="Regular" scale="90" /> --> diff --git a/data/skin_default.xml b/data/skin_default.xml index aceafd73..7262f43c 100755 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -1130,6 +1130,22 @@ self.instance.move(ePoint(orgpos.x() + (orgwidth - newwidth)/2, orgpos.y())) <convert type="ConditionalShowHide">Blink</convert> </widget> </screen> + <!-- Color OLED screen (main) --> + <screen name="InfoBarSummary" position="0,0" size="96,64" id="2"> + <widget source="session.CurrentService" render="Label" position="0,0" size="96,25" font="Regular;14" halign="center" valign="center" > + <convert type="ServiceName">Name</convert> + </widget> + <widget source="session.Event_Now" render="Progress" position="0,27" size="96,5" borderWidth="1" > + <convert type="EventTime">Progress</convert> + </widget> + <widget source="global.CurrentTime" render="Label" position="0,32" size="96,32" font="Regular;32" halign="center" valign="center" foregroundColor="#FFFFFF" backgroundColor="#000000" > + <convert type="ClockToText">Format:%H:%M</convert> + </widget> + <widget source="session.RecordState" render="FixedLabel" text=" " position="0,32" zPosition="1" size="96,32"> + <convert type="ConfigEntryTest">config.usage.blinking_display_clock_during_recording,True,CheckSourceBoolean</convert> + <convert type="ConditionalShowHide">Blink</convert> + </widget> + </screen> <!-- LCD screen (menus) --> <screen name="MenuSummary" position="0,0" size="132,64"> <widget source="parent.title" render="Label" position="6,0" size="120,32" font="Regular;14" halign="center" valign="center"/> |
