|
Problem You want to display tooltips for items in a treeview as shown below:

Solution GtkTooltips::set_tip() only works on a GtkWidget. A GtkCellrenderer is not a GtkWidget. We cannot display tooltips in a treeview using GtkTooltips. So we write a small class here to display our own tooltip window.
Sample Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
| <?php $window = new GtkWindow(); $window->set_size_request(400, 200); $window->connect_simple('destroy', array('Gtk','main_quit')); $window->add($vbox = new GtkVBox());
// display title
$title = new GtkLabel("Display tooltips in a GtkTreeView - Part 1"); $title->modify_font(new PangoFontDescription("Times New Roman Italic 10")); $title->modify_fg(Gtk::STATE_NORMAL, GdkColor::parse("#0000ff")); $title->set_size_request(-1, 40); $vbox->pack_start($title, 0, 0); $vbox->pack_start(new GtkLabel(''), 0, 0); // add a small gap
// Set up treeview
$data = array( array('row0', 'item 42', 2, 3.1), array('row1', 'item 36', 20, 6.21), array('row2', 'item 21', 8, 9.36), array('row3', 'item 10', 11, 12.4), array('row4', 'item 7', 5, 15.5), array('row5', 'item 4', 17, 18.6), array('row6', 'item 3', 20, 21.73));
$view1 = display_table ($vbox, $data);
$window->show_all(); Gtk::main();
// the class to display tooltips in treeview
class TreeviewTooltips { // note 1
// constructor
function TreeviewTooltips($view) { // create the tooltip window
$this->tooltip_window = new GtkWindow(Gtk::WINDOW_POPUP); $this->tooltip_window->set_name('gtk-tooltips'); $this->tooltip_window->set_resizable(False); $this->tooltip_window->set_border_width(4); $this->tooltip_window->set_app_paintable(True); $this->tooltip_window->connect('expose-event', array(&$this, 'on_expose_event'));
$label = new GtkLabel(''); $label->set_line_wrap(True); $label->set_alignment(0.5, 0.5); $label->set_use_markup(True); $label->show(); $this->tooltip_window->add($label);
$this->set_view($view); // setup event handlers
}
function set_view($view) { // track the mouse location
$view->connect('motion-notify-event', array(&$this, 'on_motion')); $view->connect('leave-notify-event', array(&$this, 'on_leave')); }
function on_motion($view, $event) { $path_array = $view->get_path_at_pos($event->x, $event->y); // note 2
$path = $path_array[0][0]; $col = $path_array[1]; $col_title = $col->get_title(); // note 3
if ($col!=null) { $size = $this->tooltip_window->size_request(); // set the location of the tooltip
$this->tooltip_window->move($event->x_root - $size->width/2, $event->y_root + 12); $this->tooltip_window->child->set_text("row $path col $col_title"); // note 4
$this->tooltip_window->show(); // show it!
} }
function on_leave($view, $event) { $this->tooltip_window->hide(); // mouse is out of treeview. hide it!
}
// this is here to display a border around the tooltip
function on_expose_event($tooltip_window, $event) { $size = $tooltip_window->size_request(); $tooltip_window->style->paint_flat_box($tooltip_window->window, Gtk::STATE_NORMAL, Gtk::SHADOW_OUT, null, $tooltip_window, 'tooltip', 0, 0, $size->width, $size->height); } }
function display_table($vbox, $data) {
// Set up a scroll window
$scrolled_win = new GtkScrolledWindow(); $scrolled_win->set_policy( Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); $vbox->pack_start($scrolled_win);
// Creates the list store
if (defined("GObject::TYPE_STRING")) { $model = new GtkListStore(GObject::TYPE_STRING, GObject::TYPE_STRING, GObject::TYPE_LONG, GObject::TYPE_DOUBLE); } else { $model = new GtkListStore(Gtk::TYPE_STRING, Gtk::TYPE_STRING, Gtk::TYPE_LONG, Gtk::TYPE_DOUBLE); } $field_header = array('Row #', 'Description', 'Qty', 'Price'); $field_justification = array(0.5, 0.0, 0.5, 1.0);
// Creates the view to display the list store
$view = new GtkTreeView($model); $scrolled_win->add($view);
// Creates the columns
for ($col=0; $col<count($field_header); ++$col) { $cell_renderer = new GtkCellRendererText(); $cell_renderer->set_property("xalign", $field_justification[$col]); $column = new GtkTreeViewColumn($field_header[$col], $cell_renderer, 'text', $col); $column->set_alignment($field_justification[$col]); $column->set_sort_column_id($col);
|
- Note that this is only 70% of the sample code. You have to be a registered member to see the entire sample code. Please login or register.
- Registration is free and immediate.
- Have some doubt about the registration? Please read this forum article.
Explanation The above example is based on How to display a 2D array in GtkTreeView - Part 5 - get user selection?.
What's new here:
- We created the
TreeviewTooltips class so as to hide the complexities and allowing the display of tooltip in treeview with a one-liner: $tooltips = new TreeviewTooltips($view)
- GtkTreeview::get_path_at_pos() is a handy function to get the row and column from the x,y location of the mouse.
- Note that
$col is a GtkTreeViewColumn. Here we get the column heading with $col->get_title().
- Set the text of your tooltips here. Here we display tooltips for every row and column. However, with the values of both
$path and $col_title, you can easily expand the code to place tooltips on selected cells of the treeview.
Note
If you have played with the above, you will find that the tooltips get displayed even for column headers. Also, because function on_enter($view, $event) continues to give x and y in the column header, the tooltip does not disappear if you move the mouse out from the treeview from the top.
We will fix these in Part 2.
Related Links
User reviews Average user ratings: 4.0 (from 3 users) Note: You have to be a registered member to leave a comment. Free registration here. |
July 20, 2007 3:55am
kksou,
I have tried to implement your solution with a directory tree (thank you for you code by the way for the directory tree) but it is not working in this case.
The issue reside in the way that the $path value is never set correctly as it is always returning zero
$path_array = $view->get_path_at_pos($event->x, $event->y); // note 2
$path = $path_array[0][0];
$path is always zero.
How can I use the tooltip for a directory tree?
Regards,
Alain
July 22, 2007 9:10pm
Here's a sample code that shows you how to display tooltips in a directory tree:
How to display directory tree using GtkTreeView - Part 4 - add tooltips?
March 18, 2008 8:11am