
#ifndef __LEFTBAR_H
#define __LEFTBAR_H

#include <mapper/config.h>

#include <qlayout.h>
#include <filteroptions.h>
#include <locationlister.h>
#include <qvbox.h>

namespace iwear
{
    namespace sensor
    {
	namespace location
	{
/**
 * This is the left side of the main window, which holds the lists and list
 * option fields.
 */
class LeftBar : public QWidget
{
    Q_OBJECT
private:
protected:
    QBoxLayout* d_layout;
    FilterOptions* d_fopt;
    LocationLister* d_llister;
public:
    LeftBar( QWidget* parent );
    virtual ~LeftBar( );
    void setup( void );
    LocationLister* get_locationlister( void ) { return d_llister; }
};

}
}
}
#endif
