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