Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 345aa895e80053137c21f8693106c3a0 > files > 191

gtkmm2.4-documentation-2.17.4-1mdv2010.0.noarch.rpm

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Popup Context Menu</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.1">
<link rel="home" href="index.html" title="Programming with gtkmm">
<link rel="up" href="chapter-treeview.html" title="Chapter 8. The TreeView widget">
<link rel="prev" href="sec-treeview-draganddrop.html" title="Drag and Drop">
<link rel="next" href="sec-treeview-examples.html" title="Examples">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">Popup Context Menu</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="sec-treeview-draganddrop.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<th width="60%" align="center">Chapter 8. The TreeView widget</th>
<td width="20%" align="right"> <a accesskey="n" href="sec-treeview-examples.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
</table>
<hr>
</div>
<div class="sect1" title="Popup Context Menu">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-treeview-contextmenu"></a>Popup Context Menu</h2></div></div></div>
<p>
Lots of people need to implement right-click context menus for
<code class="classname">TreeView</code>'s so we will explain how to do that  here to
save you some time. Apart from one or two points, it's  much the same as a
normal context menu, as described in the <a class="link" href="sec-menus-popup.html" title="Popup Menus">menus
    chapter</a>.
</p>
<div class="sect2" title="Handling button_press_event">
<div class="titlepage"><div><div><h3 class="title">
<a name="treeview-button-press-event"></a>Handling <code class="literal">button_press_event</code>
</h3></div></div></div>
<p>
To detect a click of the right mouse button, you need to handle the
<code class="literal">button_press_event</code> signal, and check exactly which button
was pressed. Because the <code class="classname">TreeView</code> normally handles this
signal completely, you need to either override the default signal handler in a
derived <code class="classname">TreeView</code> class, or use
<code class="methodname">connect_nofify()</code> instead of <code class="methodname">connect()</code>.
You probably also want to call the default handler before doing anything else,
so that the right-click will cause the row to be selected first.
</p>
<p>This is demonstrated in the Popup Custom Menu example.</p>
</div>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="sec-treeview-draganddrop.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<td width="20%" align="center"><a accesskey="u" href="chapter-treeview.html"><img src="icons/up.png" alt="Up"></a></td>
<td width="40%" align="right"> <a accesskey="n" href="sec-treeview-examples.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Drag and Drop </td>
<td width="20%" align="center"><a accesskey="h" href="index.html"><img src="icons/home.png" alt="Home"></a></td>
<td width="40%" align="right" valign="top"> Examples</td>
</tr>
</table>
</div>
</body>
</html>