abaddon/dialogs/confirm.hpp

16 lines
313 B
C++
Raw Normal View History

2020-10-12 04:36:18 +00:00
#pragma once
#include <gtkmm.h>
class ConfirmDialog : public Gtk::Dialog {
public:
ConfirmDialog(Gtk::Window &parent);
2020-10-12 22:17:53 +00:00
void SetConfirmText(const Glib::ustring &text);
2020-10-12 04:36:18 +00:00
protected:
Gtk::Label m_label;
Gtk::Box m_layout;
Gtk::Button m_ok;
Gtk::Button m_cancel;
Gtk::ButtonBox m_bbox;
};