diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-30 20:47:43 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-30 20:47:43 +0000 |
| commit | a2ad8bed55ff15188ce37107c3d44945cd2df0a7 (patch) | |
| tree | 74630c1ec2de0660ad4e3ad98c271164be1655c4 | |
| parent | 335b887e2dadc805707ee929202893de6c3fa170 (diff) | |
| download | enigma2-a2ad8bed55ff15188ce37107c3d44945cd2df0a7.tar.gz enigma2-a2ad8bed55ff15188ce37107c3d44945cd2df0a7.zip | |
add possibility to set a callable check function
| -rw-r--r-- | lib/gui/elistboxcontent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/gui/elistboxcontent.h b/lib/gui/elistboxcontent.h index e335bc2e..d3df3b14 100644 --- a/lib/gui/elistboxcontent.h +++ b/lib/gui/elistboxcontent.h @@ -62,6 +62,7 @@ private: class eListboxPythonMultiContent: public eListboxPythonStringContent { ePyObject m_buildFunc; + ePyObject m_callableFunc; eRect m_selection_clip; gRegion m_temp_clip; public: @@ -73,6 +74,7 @@ public: void setFont(int fnt, gFont *fnt); void setBuildFunc(SWIG_PYOBJECT(ePyObject) func); + void setCallableFunc(SWIG_PYOBJECT(ePyObject) func); void setItemHeight(int height); void setSelectionClip(eRect &rect, bool update=false); private: |
