diff widgets/TypingSelectWidget.h @ 28:7d8a6167febb classical-rdf

* Begin new text entry / search widget & test utility for it * Improve typing matching methods * Update code to use ObjectLoader/Storer instead of old-style ObjectMapper
author Chris Cannam
date Mon, 01 Mar 2010 16:51:14 +0000
parents
children 8bed05455706
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/widgets/TypingSelectWidget.h	Mon Mar 01 16:51:14 2010 +0000
@@ -0,0 +1,29 @@
+/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
+
+#ifndef _TYPING_SELECT_WIDGET_H_
+#define _TYPING_SELECT_WIDGET_H_
+
+#include <QWidget>
+#include <QList>
+
+namespace ClassicalData
+{
+
+class Matcher;
+
+class TypingSelectWidget : public QWidget
+{
+public:
+    TypingSelectWidget(QWidget *parent = 0);
+    
+    void setMatchers(QList<Matcher *> m) { m_matchers = m; }
+
+private:
+    QList<Matcher *> m_matchers;
+};
+
+}
+
+#endif
+
+