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.
11 lines
356 B
11 lines
356 B
|
5 years ago
|
#include "dialog.hpp"
|
||
|
10 years ago
|
|
||
|
6 years ago
|
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) {}
|
||
|
10 years ago
|
|
||
|
|
bool Dialog::Message::on_delete_event(GdkEventAny *event) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
5 years ago
|
|
||
|
|
void Dialog::init_module(py::module &) {}
|