mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-19 20:11:59 +03:00
settings, token entry, receive READY
This commit is contained in:
19
dialogs/token.hpp
Normal file
19
dialogs/token.hpp
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user