mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
15 lines
349 B
C++
15 lines
349 B
C++
#pragma once
|
|
#include <gtkmm/dialog.h>
|
|
#include <gtkmm/entry.h>
|
|
|
|
class TextInputDialog : public Gtk::Dialog {
|
|
public:
|
|
TextInputDialog(const Glib::ustring &prompt, const Glib::ustring &title, const Glib::ustring &placeholder, Gtk::Window &parent);
|
|
|
|
Glib::ustring GetInput() const;
|
|
|
|
private:
|
|
Gtk::Label m_label;
|
|
Gtk::Entry m_entry;
|
|
};
|