#ifndef WORKSPACE_H
#define WORKSPACE_H

#include <qwidget.h>

class Workspace : public QWidget
{
	Q_OBJECT
	public:
		Workspace(QWidget *parent = NULL, const char *name = NULL);
		~Workspace();

	protected:
		void mousePressEvent(QMouseEvent *e);
		void paintEvent(QPaintEvent *e);
		void timerEvent(QTimerEvent *e);

	private:
		float degree, factor;
		int quests[4][2];
		int positions[4][2];
};

#endif

