summaryrefslogtreecommitdiff
path: root/osframework/source/SexyAppFramework/ListListener.h
diff options
context:
space:
mode:
Diffstat (limited to 'osframework/source/SexyAppFramework/ListListener.h')
-rw-r--r--osframework/source/SexyAppFramework/ListListener.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/osframework/source/SexyAppFramework/ListListener.h b/osframework/source/SexyAppFramework/ListListener.h
new file mode 100644
index 0000000..244d337
--- /dev/null
+++ b/osframework/source/SexyAppFramework/ListListener.h
@@ -0,0 +1,17 @@
+#ifndef __LISTLISTENER_H__
+#define __LISTLISTENER_H__
+
+namespace Sexy
+{
+
+class ListListener
+{
+public:
+ virtual void ListClicked(int theId, int theIdx, int theClickCount) {}
+ virtual void ListClosed(int theId) {}
+ virtual void ListHiliteChanged(int theId, int theOldIdx, int theNewIdx) {}
+};
+
+}
+
+#endif //__LISTLISTENER_H__