#pragma once #include #include namespace dchat { class InputDialog : public Gtk::Dialog { public: InputDialog(const char *title, const char *text, const char *acceptText = "Create", const char *cancelText = "Cancel"); Glib::ustring getInput() const; Gtk::Entry entry; }; }