Final changes, branch now buildable

This commit is contained in:
Thanatomanic
2020-10-16 16:15:10 +02:00
parent badf92ba64
commit c8ef1ee628
11 changed files with 34 additions and 34 deletions

View File

@@ -26,9 +26,10 @@
class Circle;
class Line;
class OPIcon;
class Rectangle;
class EditRectangle;
class RTSurface;
struct ControlLine {
static constexpr int OBJ_COUNT = 4;
std::unique_ptr<Line> line;
@@ -45,7 +46,7 @@ class ControlLineManager: EditSubscriber
protected:
/** Hidden object for capturing mouse events. */
std::unique_ptr<Rectangle> canvas_area;
std::unique_ptr<EditRectangle> canvas_area;
rtengine::Coord drag_delta;
std::vector<std::unique_ptr<ControlLine>> control_lines;
CursorShape cursor;