

#ifndef __RIGHTFIELD_H
#define __RIGHTFIELD_H
#include <mapper/config.h>

#include <qwidget.h>

namespace iwear
{
    namespace sensor
    {
	namespace location
	{
/**
 * On the right side there is a main tab for the map view, and there can be
 * tabs for wlan locator live views.
 */
class RightField : public QWidget
{
    Q_OBJECT
private:
protected:
    void setup( void );
public:
    /**
     * We give it the MapperWindow instance, since the rightfield is the main
     * "document" view which will control and change the menu items (to get the
     * menu commands)
     */
    RightField( QWidget* parent );
    virtual ~RightField();
};

}
}
}
#endif
