mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
314 B
9 lines
314 B
#include "dialog.hpp" |
|
|
|
Dialog::Message::Message(const std::string &text, std::function<void()> &&on_cancel, bool show_progress_bar) : Gtk::Window(Gtk::WindowType::WINDOW_POPUP) {} |
|
|
|
void Dialog::Message::set_fraction(double fraction) {} |
|
|
|
bool Dialog::Message::on_delete_event(GdkEventAny *event) { |
|
return true; |
|
}
|
|
|