settings, token entry, receive READY

This commit is contained in:
ouwou
2020-08-19 01:07:55 -04:00
parent 18af78e6af
commit 3c3fe3b9f7
15 changed files with 360 additions and 36 deletions

19
dialogs/token.hpp Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <gtkmm.h>
#include <string>
class TokenDialog : public Gtk::Dialog {
public:
TokenDialog(Gtk::Window &parent);
std::string GetToken();
protected:
Gtk::Box m_layout;
Gtk::Button m_ok;
Gtk::Button m_cancel;
Gtk::ButtonBox m_bbox;
Gtk::Entry m_entry;
private:
std::string m_token;
};