Initial import from SVN

This commit is contained in:
emeric
2014-03-09 10:58:52 +01:00
commit b6abce0c2f
440 changed files with 30862 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#ifndef SEARCH_FILTER_WIDGET_PP
#define SEARCH_FILTER_WIDGET_PP
#include <Wt/WLineEdit>
#include "FilterWidget.hpp"
class SearchFilterWidget : public FilterWidget {
public:
SearchFilterWidget(Wt::WContainerWidget* parent = 0);
void setText(const std::string& text);
// Set constraint on this filter
void refresh(const Constraint& constraint) {}
// Get constraints created by this filter
void getConstraint(Constraint& constraint);
private:
void handleKeyWentUp(void);
std::string _lastEmittedText;
};
#endif