diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-18 19:56:38 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-12-18 19:56:40 +0000 |
commit | 5cba33aedccdfa79f1c291bc1da8ff2223d5c70a (patch) | |
tree | 1aeb276c496edbd8beea180d9d032583d27cef49 /ui/builders/straight.h | |
parent | Add sanity checking logic to GeoData (diff) | |
download | ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.tar.bz2 ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.tar.xz ilt-5cba33aedccdfa79f1c291bc1da8ff2223d5c70a.zip |
Give UI builders an interface that can be programmatically called
Diffstat (limited to 'ui/builders/straight.h')
-rw-r--r-- | ui/builders/straight.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/builders/straight.h b/ui/builders/straight.h index 28eb66e..1717cad 100644 --- a/ui/builders/straight.h +++ b/ui/builders/straight.h @@ -5,13 +5,16 @@ class Network; class GeoData; class BuilderStraight : public EditNetwork::Builder { +private: std::string hint() const override; void click(Network * network, const GeoData * geoData, const SDL_MouseButtonEvent & e, const Ray<GlobalPosition3D> & ray) override; void move(Network * network, const GeoData * geoData, const SDL_MouseMotionEvent & e, const Ray<GlobalPosition3D> & ray) override; - void create(Network * network, GlobalPosition3D p1, GlobalPosition3D p2) const; +public: + Link::CCollection create(Network * network, GlobalPosition3D p1, GlobalPosition3D p2) const; +private: std::optional<GlobalPosition3D> p1; }; |