forked from OpenGamers/abaddon
16 lines
313 B
C++
16 lines
313 B
C++
#pragma once
|
|
#include <gtkmm.h>
|
|
|
|
class ConfirmDialog : public Gtk::Dialog {
|
|
public:
|
|
ConfirmDialog(Gtk::Window &parent);
|
|
void SetConfirmText(const Glib::ustring &text);
|
|
|
|
protected:
|
|
Gtk::Label m_label;
|
|
Gtk::Box m_layout;
|
|
Gtk::Button m_ok;
|
|
Gtk::Button m_cancel;
|
|
Gtk::ButtonBox m_bbox;
|
|
};
|