OpenMW
apps/opencs/view/filter/filterbox.hpp
Go to the documentation of this file.
00001 #ifndef CSV_FILTER_FILTERBOX_H
00002 #define CSV_FILTER_FILTERBOX_H
00003 
00004 #include <QWidget>
00005 
00006 #include "../../model/filter/node.hpp"
00007 
00008 namespace CSMWorld
00009 {
00010     class Data;
00011 }
00012 
00013 namespace CSVFilter
00014 {
00015     class FilterBox : public QWidget
00016     {
00017             Q_OBJECT
00018 
00019         public:
00020 
00021             FilterBox (CSMWorld::Data& data, QWidget *parent = 0);
00022 
00023         signals:
00024 
00025             void recordFilterChanged (boost::shared_ptr<CSMFilter::Node> filter);
00026     };
00027 
00028 }
00029 
00030 #endif