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.
16 lines
568 B
16 lines
568 B
#include "tooltips.h" |
|
|
|
Gdk::Rectangle Tooltips::drawn_tooltips_rectangle = Gdk::Rectangle(); |
|
|
|
Tooltip::Tooltip(std::function<Glib::RefPtr<Gtk::TextBuffer>()> create_tooltip_buffer, |
|
Gtk::TextView *text_view, |
|
Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark, |
|
Glib::RefPtr<Gtk::TextBuffer::Mark> end_mark) : text_view(text_view) {} |
|
|
|
Tooltip::~Tooltip() {} |
|
|
|
void Tooltips::show(Gdk::Rectangle const &, bool) {} |
|
|
|
void Tooltips::show(bool) {} |
|
|
|
void Tooltips::hide(const std::pair<int, int> &, const std::pair<int, int> &) {}
|
|
|