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.
317 lines
12 KiB
317 lines
12 KiB
#include "tooltips.h" |
|
#include "filesystem.h" |
|
#include "notebook.h" |
|
#include "selection_dialog.h" |
|
#include <regex> |
|
|
|
std::set<Tooltip *> Tooltips::shown_tooltips; |
|
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> &)> set_buffer_) |
|
: start_mark(std::move(start_mark_)), end_mark(std::move(end_mark_)), text_view(text_view), set_buffer(std::move(set_buffer_)) {} |
|
|
|
Tooltip::~Tooltip() { |
|
Tooltips::shown_tooltips.erase(this); |
|
if(text_view) { |
|
text_view->get_buffer()->delete_mark(start_mark); |
|
text_view->get_buffer()->delete_mark(end_mark); |
|
} |
|
} |
|
|
|
void Tooltip::update() { |
|
if(text_view) { |
|
auto iter = start_mark->get_iter(); |
|
auto end_iter = end_mark->get_iter(); |
|
text_view->get_iter_location(iter, activation_rectangle); |
|
if(iter.get_offset() < end_iter.get_offset()) { |
|
while(iter.forward_char() && iter != end_iter) { |
|
Gdk::Rectangle rectangle; |
|
text_view->get_iter_location(iter, rectangle); |
|
activation_rectangle.join(rectangle); |
|
} |
|
} |
|
int location_window_x, location_window_y; |
|
text_view->buffer_to_window_coords(Gtk::TextWindowType::TEXT_WINDOW_TEXT, activation_rectangle.get_x(), activation_rectangle.get_y(), location_window_x, location_window_y); |
|
activation_rectangle.set_x(location_window_x); |
|
activation_rectangle.set_y(location_window_y); |
|
} |
|
} |
|
|
|
void Tooltip::show(bool disregard_drawn, const std::function<void()> &on_motion) { |
|
Tooltips::shown_tooltips.emplace(this); |
|
|
|
if(!window) { |
|
//init window |
|
window = std::make_unique<Gtk::Window>(Gtk::WindowType::WINDOW_POPUP); |
|
|
|
auto g_application = g_application_get_default(); |
|
auto gio_application = Glib::wrap(g_application, true); |
|
auto application = Glib::RefPtr<Gtk::Application>::cast_static(gio_application); |
|
window->set_transient_for(*application->get_active_window()); |
|
|
|
window->set_type_hint(Gdk::WindowTypeHint::WINDOW_TYPE_HINT_TOOLTIP); |
|
|
|
window->set_events(Gdk::POINTER_MOTION_MASK); |
|
window->property_decorated() = false; |
|
window->set_accept_focus(false); |
|
window->set_skip_taskbar_hint(true); |
|
window->set_default_size(0, 0); |
|
|
|
window->signal_motion_notify_event().connect([on_motion](GdkEventMotion *event) { |
|
if(on_motion) |
|
on_motion(); |
|
return false; |
|
}); |
|
|
|
window->get_style_context()->add_class("juci_tooltip_window"); |
|
auto visual = window->get_screen()->get_rgba_visual(); |
|
if(visual) |
|
gtk_widget_set_visual(reinterpret_cast<GtkWidget *>(window->gobj()), visual->gobj()); |
|
|
|
auto box = Gtk::manage(new Gtk::Box(Gtk::Orientation::ORIENTATION_VERTICAL)); |
|
box->get_style_context()->add_class("juci_tooltip_box"); |
|
window->add(*box); |
|
|
|
if(text_view) { |
|
text_buffer = Gtk::TextBuffer::create(text_view->get_buffer()->get_tag_table()); |
|
link_tag = text_buffer->get_tag_table()->lookup("link"); |
|
} |
|
else { |
|
text_buffer = Gtk::TextBuffer::create(); |
|
link_tag = text_buffer->create_tag("link"); |
|
link_tag->property_underline() = Pango::Underline::UNDERLINE_SINGLE; |
|
link_tag->property_foreground_rgba() = window->get_style_context()->get_color(Gtk::StateFlags::STATE_FLAG_LINK); |
|
} |
|
set_buffer(text_buffer); |
|
|
|
wrap_lines(); |
|
|
|
auto tooltip_text_view = Gtk::manage(new Gtk::TextView(text_buffer)); |
|
tooltip_text_view->get_style_context()->add_class("juci_tooltip_text_view"); |
|
tooltip_text_view->set_editable(false); |
|
|
|
static auto link_mouse_cursor = Gdk::Cursor::create(Gdk::CursorType::HAND1); |
|
static auto default_mouse_cursor = Gdk::Cursor::create(Gdk::CursorType::XTERM); |
|
tooltip_text_view->signal_motion_notify_event().connect([this, tooltip_text_view](GdkEventMotion *event) { |
|
Gtk::TextIter iter; |
|
int location_x, location_y; |
|
tooltip_text_view->window_to_buffer_coords(Gtk::TextWindowType::TEXT_WINDOW_TEXT, event->x, event->y, location_x, location_y); |
|
tooltip_text_view->get_iter_at_location(iter, location_x, location_y); |
|
if(iter.has_tag(link_tag)) |
|
tooltip_text_view->get_window(Gtk::TextWindowType::TEXT_WINDOW_TEXT)->set_cursor(link_mouse_cursor); |
|
else |
|
tooltip_text_view->get_window(Gtk::TextWindowType::TEXT_WINDOW_TEXT)->set_cursor(default_mouse_cursor); |
|
return false; |
|
}); |
|
tooltip_text_view->signal_button_press_event().connect([this, tooltip_text_view](GdkEventButton *event) { |
|
if(event->type == GDK_BUTTON_PRESS && event->button == GDK_BUTTON_PRIMARY) { |
|
Gtk::TextIter iter; |
|
int location_x, location_y; |
|
tooltip_text_view->window_to_buffer_coords(Gtk::TextWindowType::TEXT_WINDOW_TEXT, event->x, event->y, location_x, location_y); |
|
tooltip_text_view->get_iter_at_location(iter, location_x, location_y); |
|
if(iter.has_tag(link_tag)) { |
|
auto start = iter; |
|
start.backward_to_tag_toggle(link_tag); |
|
auto end = iter; |
|
end.forward_to_tag_toggle(link_tag); |
|
std::string text = tooltip_text_view->get_buffer()->get_text(start, end); |
|
|
|
if(text.compare(0, 7, "http://") == 0 || text.compare(0, 8, "https://") == 0) { |
|
Notebook::get().open_uri(text); |
|
return true; |
|
} |
|
|
|
static std::regex regex("^([^:]+):([^:]+):([^:]+)$"); |
|
std::smatch sm; |
|
if(std::regex_match(text, sm, regex)) { |
|
auto path = boost::filesystem::path(sm[1].str()); |
|
if(auto view = dynamic_cast<Source::View *>(text_view)) |
|
path = filesystem::get_normal_path(view->file_path.parent_path() / path); |
|
|
|
if(boost::filesystem::is_regular_file(path)) { |
|
Notebook::get().open(path); |
|
if(auto view = Notebook::get().get_current_view()) { |
|
try { |
|
auto line = atoi(sm[2].str().c_str()) - 1; |
|
auto offset = atoi(sm[3].str().c_str()) - 1; |
|
view->place_cursor_at_line_offset(line, offset); |
|
view->scroll_to_cursor_delayed(view, true, false); |
|
} |
|
catch(...) { |
|
} |
|
} |
|
return true; |
|
} |
|
} |
|
} |
|
} |
|
return false; |
|
}); |
|
|
|
#if GTK_VERSION_GE(3, 20) |
|
box->add(*tooltip_text_view); |
|
#else |
|
auto box2 = Gtk::manage(new Gtk::Box()); |
|
box2->pack_start(*tooltip_text_view, true, true, 3); |
|
box->pack_start(*box2, true, true, 3); |
|
#endif |
|
|
|
auto layout = Pango::Layout::create(tooltip_text_view->get_pango_context()); |
|
layout->set_text(text_buffer->get_text()); |
|
layout->get_pixel_size(size.first, size.second); |
|
size.first += 6; // 2xpadding |
|
size.second += 8; // 2xpadding + 2 |
|
|
|
window->signal_realize().connect([this] { |
|
if(!text_view) { |
|
auto &dialog = SelectionDialog::get(); |
|
if(dialog && dialog->is_visible()) { |
|
int root_x, root_y; |
|
dialog->get_position(root_x, root_y); |
|
root_x -= 3; // -1xpadding |
|
rectangle.set_x(root_x); |
|
rectangle.set_y(root_y - size.second); |
|
if(rectangle.get_y() < 0) |
|
rectangle.set_y(0); |
|
} |
|
} |
|
window->move(rectangle.get_x(), rectangle.get_y()); |
|
}); |
|
} |
|
|
|
int root_x = 0, root_y = 0; |
|
if(text_view) { |
|
//Adjust if tooltip is left of text_view |
|
Gdk::Rectangle visible_rect; |
|
text_view->get_visible_rect(visible_rect); |
|
int visible_x, visible_y; |
|
text_view->buffer_to_window_coords(Gtk::TextWindowType::TEXT_WINDOW_TEXT, visible_rect.get_x(), visible_rect.get_y(), visible_x, visible_y); |
|
auto activation_rectangle_x = std::max(activation_rectangle.get_x(), visible_x); |
|
|
|
text_view->get_window(Gtk::TextWindowType::TEXT_WINDOW_TEXT)->get_root_coords(activation_rectangle_x, activation_rectangle.get_y(), root_x, root_y); |
|
root_x -= 3; // -1xpadding |
|
if(root_y < size.second) |
|
root_x += visible_rect.get_width() * 0.1; |
|
} |
|
rectangle.set_x(root_x); |
|
rectangle.set_y(std::max(0, root_y - size.second)); |
|
rectangle.set_width(size.first); |
|
rectangle.set_height(size.second); |
|
|
|
if(!disregard_drawn) { |
|
if(Tooltips::drawn_tooltips_rectangle.get_width() != 0) { |
|
if(rectangle.intersects(Tooltips::drawn_tooltips_rectangle)) { |
|
int new_y = Tooltips::drawn_tooltips_rectangle.get_y() - size.second; |
|
if(new_y >= 0) |
|
rectangle.set_y(new_y); |
|
else |
|
rectangle.set_x(Tooltips::drawn_tooltips_rectangle.get_x() + Tooltips::drawn_tooltips_rectangle.get_width() + 2); |
|
} |
|
Tooltips::drawn_tooltips_rectangle.join(rectangle); |
|
} |
|
else |
|
Tooltips::drawn_tooltips_rectangle = rectangle; |
|
} |
|
|
|
if(window->get_realized()) |
|
window->move(rectangle.get_x(), rectangle.get_y()); |
|
window->show_all(); |
|
shown = true; |
|
} |
|
|
|
void Tooltip::hide(const std::pair<int, int> &last_mouse_pos, const std::pair<int, int> &mouse_pos) { |
|
// Keep tooltip if mouse is moving towards it |
|
// Calculated using dot product between the mouse_pos vector and the corners of the tooltip window |
|
if(text_view && window && shown && last_mouse_pos.first != -1 && last_mouse_pos.second != -1 && mouse_pos.first != -1 && mouse_pos.second != -1) { |
|
static int root_x, root_y; |
|
text_view->get_window(Gtk::TextWindowType::TEXT_WINDOW_TEXT)->get_root_coords(last_mouse_pos.first, last_mouse_pos.second, root_x, root_y); |
|
int diff_x = mouse_pos.first - last_mouse_pos.first; |
|
int diff_y = mouse_pos.second - last_mouse_pos.second; |
|
class Corner { |
|
public: |
|
Corner(int x, int y) : x(x - root_x), y(y - root_y) {} |
|
int x, y; |
|
}; |
|
std::vector<Corner> corners; |
|
corners.emplace_back(rectangle.get_x(), rectangle.get_y()); |
|
corners.emplace_back(rectangle.get_x() + rectangle.get_width(), rectangle.get_y()); |
|
corners.emplace_back(rectangle.get_x(), rectangle.get_y() + rectangle.get_height()); |
|
corners.emplace_back(rectangle.get_x() + rectangle.get_width(), rectangle.get_y() + rectangle.get_height()); |
|
for(auto &corner : corners) { |
|
if(diff_x * corner.x + diff_y * corner.y >= 0) |
|
return; |
|
} |
|
} |
|
Tooltips::shown_tooltips.erase(this); |
|
if(window) |
|
window->hide(); |
|
shown = false; |
|
} |
|
|
|
void Tooltip::wrap_lines() { |
|
if(!text_buffer) |
|
return; |
|
|
|
auto iter = text_buffer->begin(); |
|
|
|
while(iter) { |
|
auto last_space = text_buffer->end(); |
|
bool end = false; |
|
for(unsigned c = 0; c <= 80; c++) { |
|
if(!iter) { |
|
end = true; |
|
break; |
|
} |
|
if(*iter == ' ') |
|
last_space = iter; |
|
if(*iter == '\n') { |
|
end = true; |
|
iter.forward_char(); |
|
break; |
|
} |
|
iter.forward_char(); |
|
} |
|
if(!end) { |
|
while(!last_space && iter) { //If no space (word longer than 80) |
|
iter.forward_char(); |
|
if(iter && *iter == ' ') |
|
last_space = iter; |
|
} |
|
if(iter && last_space) { |
|
auto mark = text_buffer->create_mark(last_space); |
|
auto last_space_p = last_space; |
|
last_space.forward_char(); |
|
text_buffer->erase(last_space_p, last_space); |
|
text_buffer->insert(mark->get_iter(), "\n"); |
|
|
|
iter = mark->get_iter(); |
|
iter.forward_char(); |
|
|
|
text_buffer->delete_mark(mark); |
|
} |
|
} |
|
} |
|
} |
|
|
|
void Tooltips::show(const Gdk::Rectangle &rectangle, bool disregard_drawn) { |
|
for(auto &tooltip : tooltip_list) { |
|
tooltip.update(); |
|
if(rectangle.intersects(tooltip.activation_rectangle)) |
|
tooltip.show(disregard_drawn, on_motion); |
|
else |
|
tooltip.hide(); |
|
} |
|
} |
|
|
|
void Tooltips::show(bool disregard_drawn) { |
|
for(auto &tooltip : tooltip_list) { |
|
tooltip.update(); |
|
tooltip.show(disregard_drawn, on_motion); |
|
} |
|
} |
|
|
|
void Tooltips::hide(const std::pair<int, int> &last_mouse_pos, const std::pair<int, int> &mouse_pos) { |
|
for(auto &tooltip : tooltip_list) |
|
tooltip.hide(last_mouse_pos, mouse_pos); |
|
}
|
|
|