diff options
Diffstat (limited to 'src/gui/ConnectWindow.hpp')
-rw-r--r-- | src/gui/ConnectWindow.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/ConnectWindow.hpp b/src/gui/ConnectWindow.hpp index 06283c70..d78bcd39 100644 --- a/src/gui/ConnectWindow.hpp +++ b/src/gui/ConnectWindow.hpp @@ -55,6 +55,8 @@ public: void start(Ingen::Shared::World* world); void on_response(int32_t id) { _attached = true; } + bool attached() const { return _finished_connecting; } + private: enum Mode { CONNECT_REMOTE, LAUNCH_REMOTE, INTERNAL }; @@ -78,9 +80,9 @@ private: Mode _mode; int32_t _ping_id; bool _attached; - - bool _widgets_loaded; - int _connect_stage; + bool _finished_connecting; + bool _widgets_loaded; + int _connect_stage; SharedPtr<Glib::Module> _engine_module; SharedPtr<Glib::Module> _engine_jack_module; |