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.
19 lines
273 B
19 lines
273 B
|
8 years ago
|
#pragma once
|
||
|
10 years ago
|
#include <gtkmm.h>
|
||
|
|
|
||
|
|
class Info : public Gtk::InfoBar {
|
||
|
|
Info();
|
||
|
8 years ago
|
|
||
|
10 years ago
|
public:
|
||
|
|
static Info &get() {
|
||
|
|
static Info instance;
|
||
|
|
return instance;
|
||
|
|
}
|
||
|
8 years ago
|
|
||
|
10 years ago
|
void print(const std::string &text);
|
||
|
8 years ago
|
|
||
|
10 years ago
|
private:
|
||
|
|
Gtk::Label label;
|
||
|
|
sigc::connection timeout_connection;
|
||
|
|
};
|