jumping to an entry beginning with a character works now :)
[enigma2.git] / lib / gui / elistbox.h
index 9e23bde35f2a8b9e89fbd942cdb7577bf45ff2f9..60429d2e49ac5c55872c80c4ee80d86738d15eac 100644 (file)
@@ -63,6 +63,7 @@ public:
        }; */
        
        void moveSelection(int how);
+       void moveSelectionTo(int index);
 
        enum ListboxActions {
                moveUp,
@@ -73,6 +74,9 @@ public:
                pageDown,
                justCheck
        };
+       
+       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. */
@@ -87,11 +91,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