
#ifndef __FILTEROPTIONS_H
#define __FILTEROPTIONS_H

#include <mapper/config.h>

#include <qtabwidget.h>
#include <qtabbar.h>
#include <locationfilter.h>

namespace iwear
{
    namespace sensor
    {
	namespace location
	{

/**
 * This class is the upper left tab box where u can choose what to filter the
 * locations in the list (and displayed) for.
 */
class FilterOptions : public QTabWidget
{
    Q_OBJECT
private:
protected:
    LocationFilter* d_lf;
public:
    FilterOptions( QWidget* parent );
    virtual ~FilterOptions();
    void setup( void );
};

}
}
}
#endif

