Horizon
tool_place_dot.hpp
1 #pragma once
2 #include "core/tool.hpp"
3 
4 namespace horizon {
5 
6 class ToolPlaceDot : public ToolBase {
7 public:
8  using ToolBase::ToolBase;
9  ToolResponse begin(const ToolArgs &args) override;
10  ToolResponse update(const ToolArgs &args) override;
11  bool can_begin() override;
12  std::set<InToolActionID> get_actions() const override
13  {
14  using I = InToolActionID;
15  return {
16  I::LMB,
17  I::CANCEL,
18  I::RMB,
19  };
20  }
21 
22 private:
23  class Polygon *temp = nullptr;
24 
25  void update_polygon(const Coordi &c);
26  void create_polygon(const Coordi &c);
27 };
28 } // namespace horizon
Polygon used in Padstack, Package and Board for specifying filled Regions.
Definition: polygon.hpp:27
This is what a Tool receives when the user did something.
Definition: tool_pub.hpp:23
Common interface for all Tools.
Definition: tool_pub.hpp:94
Definition: tool_place_dot.hpp:6
ToolResponse update(const ToolArgs &args) override
Gets called whenever the user generated some sort of input.
Definition: tool_place_dot.cpp:50
bool can_begin() override
Definition: tool_place_dot.cpp:9
ToolResponse begin(const ToolArgs &args) override
Gets called right after the constructor has finished.
Definition: tool_place_dot.cpp:38
To signal back to the core what the Tool did, a Tool returns a ToolResponse.
Definition: tool_pub.hpp:40