This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
neofx-zoomedit/ToolAddRect.h

66 lines
1.3 KiB
C
Raw Normal View History

2007-12-25 03:27:03 +00:00
#ifndef TOOLADDRECT_H_
#define TOOLADDRECT_H_
#include "Tool.h"
#include "SidebarAdd.h"
class ToolAddRect : public Tool, public EventHandler, public Renderer {
private:
GtkWidget *image;
EditManager *editManager;
SidebarAdd sidebar;
bool pressed;
Vertex v1;
// prevent shallow copy
ToolAddRect(const ToolAddRect &t);
const ToolAddRect& operator=(const ToolAddRect &t);
Room createRoom();
public:
ToolAddRect(EditManager *editManager);
virtual ~ToolAddRect();
virtual void activate();
virtual const char *getType() const {
return "ToolAddRect";
}
virtual const char *getName() const {
return "Add rectangular room";
}
virtual bool isSensitive() {
return TRUE;
}
virtual GtkWidget *getImage() {
return image;
}
virtual EventHandler* getEventHandler() {
return this;
}
virtual Renderer *getRenderer() {
return this;
}
virtual void render(const Level &level, const Rectangle &rect, float scale);
2008-02-15 22:44:03 +00:00
virtual bool buttonPress(unsigned int button, const Vertex *v);
virtual bool buttonRelease(unsigned int button, const Vertex *v);
2007-12-25 03:27:03 +00:00
virtual Sidebar* getSidebar() {
return &sidebar;
}
};
#endif /*TOOLADDRECT_H_*/