File: sec-dnd-methods.html

package info (click to toggle)
gtkmm-documentation 4.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,772 kB
  • sloc: cpp: 15,541; javascript: 1,208; makefile: 1,080; python: 401; xml: 106; perl: 67; sh: 8
file content (125 lines) | stat: -rw-r--r-- 4,634 bytes parent folder | download
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
121
122
123
124
125
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="highlight.min.css">
<script src="highlight.min.js"></script><script>
      hljs.configure({languages: ['cpp']});
      hljs.highlightAll();
    </script><title>Methods</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
<link rel="home" href="index.html" title="Programming with gtkmm 4">
<link rel="up" href="chapter-draganddrop.html" title="Chapter 19. Drag and Drop">
<link rel="prev" href="chapter-draganddrop.html" title="Chapter 19. Drag and Drop">
<link rel="next" href="sec-dnd-signals.html" title="Signals">
</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">Methods</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="chapter-draganddrop.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<th width="60%" align="center">Chapter 19. Drag and Drop</th>
<td width="20%" align="right"> <a accesskey="n" href="sec-dnd-signals.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
</table>
<hr>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-dnd-methods"></a>Methods</h2></div></div></div>


<p>
<code class="classname">Widget</code>s can be identified as sources or targets using
<code class="classname">Gtk::DragSource</code> and <code class="classname">Gtk::DropTarget</code>
event controllers.
</p>
<pre class="programlisting"><code class="code">auto source = Gtk::DragSource::create();
m_source_widget.add_controller(source);</code></pre>

<p>
Some <code class="classname">DragSource</code> methods:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
    <p>
        <code class="literal">void set_content(const Glib::RefPtr&lt;Gdk::ContentProvider&gt;&amp; content)</code>:
        Sets a content provider on the drag source.
    </p>
</li>
<li class="listitem">
    <p>
        <code class="literal">void set_actions(Gdk::DragAction actions)</code>:
        Sets the actions on the drag source. For instance <code class="literal">Gdk::DragAction::COPY
        | Gdk::DragAction::MOVE</code>.
    </p>
</li>
<li class="listitem">
    <p>
        <code class="literal">void set_icon(const Glib::RefPtr&lt;const Gdk::Paintable&gt;&amp; paintable, int hot_x, int hot_y)</code>:
        Sets a paintable to use as icon during DND operations.
    </p>
</li>
</ul></div>
<p>
</p>

<pre class="programlisting"><code class="code">auto target = Gtk::DropTarget::create(gtype, actions);
m_target_widget.add_controller(target);</code></pre>

<p>
Some <code class="classname">DropTarget</code> methods:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem">
    <p>
        <code class="literal">void set_gtypes(const std::vector&lt;GType&gt;&amp; types)</code>:
        Sets the supported types for this drop target.
    </p>
</li>
<li class="listitem">
    <p>
        <code class="literal">void set_actions(Gdk::DragAction actions)</code>:
        Sets the actions that this drop target supports.
    </p>
</li>
<li class="listitem">
    <p>
        <code class="literal">Glib::ValueBase get_value() const</code>:
        Gets the current drop data, as a <code class="classname">Glib::Value</code>.
    </p>
</li>
<li class="listitem">
    <p>
        <code class="literal">void reject()</code>:
        Rejects the ongoing drop operation. This function should be used when
        delaying the decision on whether to accept a drag or not until after
        reading the data. 
    </p>
</li>
</ul></div>
<p>
</p>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="chapter-draganddrop.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<td width="20%" align="center"><a accesskey="u" href="chapter-draganddrop.html"><img src="icons/up.png" alt="Up"></a></td>
<td width="40%" align="right"> <a accesskey="n" href="sec-dnd-signals.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Chapter 19. 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"> Signals</td>
</tr>
</table>
</div>
</body>
</html>