diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-11-28 01:52:37 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-11-28 01:52:37 +0000 |
| commit | 5d4117d8e413629c17fee5c13589375a3f1cc2bd (patch) | |
| tree | 69cba75f3b4ae24b9d8f73c7ab9f5d3b04748cf0 | |
| parent | c5f61282a2391235e05ff40bc40a2f0852ea1a9f (diff) | |
| download | enigma2-5d4117d8e413629c17fee5c13589375a3f1cc2bd.tar.gz enigma2-5d4117d8e413629c17fee5c13589375a3f1cc2bd.zip | |
listbox: add ability to disable selection highlight
| -rw-r--r-- | data/skin.xml | 2 | ||||
| -rw-r--r-- | lib/gui/elistbox.cpp | 11 | ||||
| -rw-r--r-- | lib/gui/elistbox.h | 4 | ||||
| -rw-r--r-- | skin.py | 2 |
4 files changed, 16 insertions, 3 deletions
diff --git a/data/skin.xml b/data/skin.xml index 91219277..f36874b2 100644 --- a/data/skin.xml +++ b/data/skin.xml @@ -43,7 +43,7 @@ <screen name="ScartLoopThrough" position="0,0" size="720,576"> </screen> <screen name="ServiceInfo" position="180,120" size="360,330" title="Serviceinfo"> - <widget name="infolist" position="20,10" size="320,325" /> + <widget name="infolist" position="20,10" size="320,325" selectionDisabled="1"/> </screen> <screen name="AudioSelection" position="210,150" size="300,170" title="Audio"> <widget name="tracks" position="20,10" size="260,150" /> diff --git a/lib/gui/elistbox.cpp b/lib/gui/elistbox.cpp index c3dd659b..28d220a2 100644 --- a/lib/gui/elistbox.cpp +++ b/lib/gui/elistbox.cpp @@ -10,6 +10,7 @@ eListbox::eListbox(eWidget *parent): eWidget(parent) eActionMap::getInstance(ptr); m_itemheight = 25; + m_selection_enabled = 1; ptr->bindAction("ListboxActions", 0, 0, this); } @@ -144,7 +145,7 @@ int eListbox::event(int event, void *data, void *data2) for (int y = 0, i = 0; i <= m_items_per_page; y += m_itemheight, ++i) { - m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size()); + m_content->paint(painter, *style, ePoint(0, y), m_selected == m_content->cursorGet() && m_content->size() && m_selection_enabled); m_content->cursorMove(+1); } @@ -183,6 +184,14 @@ void eListbox::setItemHeight(int h) recalcSize(); } +void eListbox::setSelectionEnable(int en) +{ + if (m_selection_enabled == en) + return; + m_selection_enabled = en; + entryChanged(m_selected); /* redraw current entry */ +} + void eListbox::entryAdded(int index) { /* manage our local pointers. when the entry was added before the current position, we have to advance. */ diff --git a/lib/gui/elistbox.h b/lib/gui/elistbox.h index 29349cbb..a7ed637d 100644 --- a/lib/gui/elistbox.h +++ b/lib/gui/elistbox.h @@ -75,6 +75,7 @@ public: }; void setItemHeight(int h); + void setSelectionEnable(int en); #ifndef SWIG /* entryAdded: an entry was added *before* the given index. it's index is the given number. */ @@ -89,11 +90,12 @@ public: protected: int event(int event, void *data=0, void *data2=0); void recalcSize(); - + private: int m_top, m_selected; int m_itemheight; int m_items_per_page; + int m_selection_enabled; ePtr<iListboxContent> m_content; #endif @@ -126,6 +126,8 @@ def applySingleAttribute(guiObject, desktop, attrib, value): guiObject.setBackgroundColor(parseColor(value)) elif attrib == "foregroundColor": guiObject.setForegroundColor(parseColor(value)) + elif attrib == "selectionDisabled": + guiObject.setSelectionEnable(0) elif attrib != 'name': print "unsupported attribute " + attrib + "=" + value except int: |
