summaryrefslogtreecommitdiff
path: root/src/dialogs/token.hpp
blob: 9e691c9d2485110f121964aadabce43bc1f23ffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#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;
};