Horizon
Loading...
Searching...
No Matches
tool_helper_edit_plane.hpp
1#pragma once
2#include "core/tool.hpp"
3
4namespace horizon {
5class ToolHelperEditPlane : public virtual ToolBase {
6
7protected:
8 void show_edit_plane_window(class Plane &plane, class Board &brd);
9 ToolResponse update_for_plane(const ToolArgs &args);
10
11private:
12 bool pick_net_mode = false;
13 class EditPlaneWindow *win = nullptr;
14};
15} // namespace horizon
Definition board.hpp:47
Definition edit_plane_window.hpp:12
Definition plane.hpp:54
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_helper_edit_plane.hpp:5
To signal back to the core what the Tool did, a Tool returns a ToolResponse.
Definition tool_pub.hpp:40