mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-10 17:28:24 +01:00
22 lines
418 B
C++
22 lines
418 B
C++
#ifndef __TOOL_COPY_H__
|
|
#define __TOOL_COPY_H__
|
|
|
|
#include "sim_local.h"
|
|
#include "Tool_Base.h"
|
|
#include "Coord.h"
|
|
|
|
class Tool_Copy : public Tool_Base {
|
|
class CShape *copyingObject;
|
|
Coord prevMousePos;
|
|
public:
|
|
Tool_Copy();
|
|
~Tool_Copy();
|
|
virtual const char *getName() const {
|
|
return "Copy";
|
|
}
|
|
virtual void onMouseDown(const class Coord &pos, int button);
|
|
virtual void drawTool();
|
|
};
|
|
|
|
#endif // __TOOL_COPY_H__
|