New upstream version 1.8.6
Norbert Preining
3 years ago
37 | 37 | fi |
38 | 38 | |
39 | 39 | jobs: |
40 | "mint19": | |
40 | "mint20": | |
41 | 41 | <<: *shared |
42 | 42 | docker: |
43 | - image: linuxmintd/mint19-amd64 | |
43 | - image: linuxmintd/mint20-amd64 | |
44 | 44 | |
45 | "lmde3": | |
45 | "lmde4": | |
46 | 46 | <<: *shared |
47 | 47 | docker: |
48 | - image: linuxmintd/lmde3-amd64 | |
48 | - image: linuxmintd/lmde4-amd64 | |
49 | 49 | |
50 | 50 | workflows: |
51 | 51 | version: 2 |
52 | 52 | build: |
53 | 53 | jobs: |
54 | - "mint19" | |
55 | - "lmde3" | |
54 | - "mint20" | |
55 | - "lmde4" |
0 | # Specify filepatterns you want git to ignore. | |
1 | ||
2 | debian/build/ | |
3 | debian/tmp/ | |
4 | debian/*.debhelper | |
5 | debian/gir1.2-xapp-1.0/ | |
6 | debian/libxapp-dbg/ | |
7 | debian/libxapp-dev/ | |
8 | debian/libxapp1/ | |
9 | debian/xapps-common/ | |
10 | debian/xapps-doc/ | |
11 | debian/*.log | |
12 | debian/*.substvars | |
13 | debian/files | |
14 | debian/debhelper-build-stamp |
0 | This project gathers the components which are common to multiple desktop environments and required to implement cross-DE solutions. | |
0 | This project gathers the components which are common to multiple GTK desktop environments (Cinnamon, MATE and Xfce) and required to implement cross-DE solutions. | |
1 | ||
2 | # libxapp | |
3 | ||
4 | A library available in C, Python and other languages (via Gobject Introspection). | |
5 | ||
6 | # API Reference | |
7 | ||
8 | https://projects.linuxmint.com/xapps/reference/index.html | |
1 | 9 | |
2 | 10 | # xapp-common |
3 | 11 | |
4 | 12 | A set of resources and tools. |
5 | ||
6 | # libxapp | |
7 | ||
8 | A library available in C, Python and other languages (via Gobject Introspection). | |
9 | 13 | |
10 | 14 | # Scope |
11 | 15 | |
14 | 18 | This project is still relatively new though and we can't yet commit to a stable ABI. |
15 | 19 | |
16 | 20 | You are welcome to use libxapp or xapps-common in your application, but if you do, please make sure to tell us, so that we can communicate with you going forward about any potential changes. |
17 | ||
18 | # API Reference | |
19 | ||
20 | http://developer.linuxmint.com/xapps/reference/index.html | |
21 | ||
22 | ## XAppMonitorBlanker | |
23 | ||
24 | XAppMonitorBlanker is used to blank other monitors. It takes a window as an argument and blanks all the monitors but the one where the window is located. | |
25 | ||
26 | This is particularly useful in multi-monitor situations, for presentations, full screen media playback etc.. | |
27 | ||
28 | `XAppMonitorBlanker *xapp_monitor_blanker_new (void);` | |
29 | ||
30 | `void xapp_monitor_blanker_blank_other_monitors (XAppMonitorBlanker *self, GtkWindow *window);` | |
31 | ||
32 | `void xapp_monitor_blanker_unblank_monitors (XAppMonitorBlanker *self);` | |
33 | ||
34 | `gboolean xapp_monitor_blanker_are_monitors_blanked (XAppMonitorBlanker *self);` | |
35 | ||
36 | This is used by: | |
37 | ||
38 | - xplayer | |
39 | ||
40 | ## XAppKbdLayoutController | |
41 | ||
42 | XAppKbdLayoutController is used to get a keyboard layout code or flag for a given locale. | |
43 | ||
44 | `XAppKbdLayoutController *xapp_kbd_layout_controller_new (void);` | |
45 | ||
46 | `gboolean xapp_kbd_layout_controller_get_enabled (XAppKbdLayoutController *controller);` | |
47 | ||
48 | `guint xapp_kbd_layout_controller_get_current_group (XAppKbdLayoutController *controller);` | |
49 | ||
50 | `void xapp_kbd_layout_controller_set_current_group (XAppKbdLayoutController *controller, guint group);` | |
51 | ||
52 | `void xapp_kbd_layout_controller_next_group (XAppKbdLayoutController *controller);` | |
53 | ||
54 | `void xapp_kbd_layout_controller_previous_group (XAppKbdLayoutController *controller);` | |
55 | ||
56 | `gchar *xapp_kbd_layout_controller_get_current_name (XAppKbdLayoutController *controller);` | |
57 | ||
58 | `gchar **xapp_kbd_layout_controller_get_all_names (XAppKbdLayoutController *controller);` | |
59 | ||
60 | `gchar *xapp_kbd_layout_controller_get_current_icon_name (XAppKbdLayoutController *controller);` | |
61 | ||
62 | `gchar *xapp_kbd_layout_controller_get_icon_name_for_group (XAppKbdLayoutController *controller, guint group);` | |
63 | ||
64 | `gchar *xapp_kbd_layout_controller_get_short_name (XAppKbdLayoutController *controller);` | |
65 | ||
66 | `gchar *xapp_kbd_layout_controller_get_short_name_for_group (XAppKbdLayoutController *controller, guint group);` | |
67 | ||
68 | This is used by: | |
69 | ||
70 | - cinnamon-screensaver | |
71 | - cinnamon keyboard applet |
0 | xapp (1.6.10) tricia; urgency=medium | |
0 | xapp (1.8.6) ulyana; urgency=medium | |
1 | ||
2 | [ Clement Lefebvre ] | |
3 | * Update docs | |
4 | ||
5 | [ Michael Webster ] | |
6 | * xapp-status-icon.c: Add xapp_status_icon_popup_menu() and use a more reliable GtkMenu popup method. | |
7 | * xapp-status-icon.c: Fix inadvertant verison change in doc string. | |
8 | ||
9 | [ NikoKrause ] | |
10 | * Icons: Add symbolic icons for xreaders annotation features (#92) | |
11 | ||
12 | -- Clement Lefebvre <root@linuxmint.com> Sat, 23 May 2020 12:48:43 +0100 | |
13 | ||
14 | xapp (1.8.5) ulyana; urgency=medium | |
15 | ||
16 | [ Michael Webster ] | |
17 | * xapp-status-icon: Add a get_visible method. | |
18 | * mate applet: Use markup for tooltips, and update test script to reflect this as well. | |
19 | * mate-xapp-status-applet: Fix set icon error handling when an icon name is missing. | |
20 | * xapp-status-icon: Add a get_visible method. | |
21 | * mate applet: Use markup for tooltips, and update test script to reflect this as well. | |
22 | * mate-xapp-status-applet: Fix set icon error handling when an icon name is missing. | |
23 | ||
24 | -- Clement Lefebvre <root@linuxmint.com> Thu, 21 May 2020 11:23:00 +0100 | |
25 | ||
26 | xapp (1.8.4) ulyana; urgency=medium | |
27 | ||
28 | [ Clement Lefebvre ] | |
29 | * Update documentation | |
30 | * README: Update link to docs | |
31 | * Update README.md | |
32 | ||
33 | [ Michael Webster ] | |
34 | * xapp-util.c: Initialize auto variables. | |
35 | ||
36 | [ NikoKrause ] | |
37 | * Icons: add pin/unpin symbolic (#90) | |
38 | ||
39 | [ Clement Lefebvre ] | |
40 | * Icons: Add xapp-diaporama-symbolic | |
41 | ||
42 | -- Clement Lefebvre <root@linuxmint.com> Mon, 11 May 2020 15:44:39 +0100 | |
43 | ||
44 | xapp (1.8.3) ulyana; urgency=medium | |
45 | ||
46 | [ Michael Webster ] | |
47 | * xapp-sn-watcher: Add autostart file, to start at session, to start at the session initialization phase. | |
48 | * Add a utility function to check for nvidia on-demand mode. | |
49 | ||
50 | [ Clement Lefebvre ] | |
51 | * l10n: Update translations | |
52 | ||
53 | -- Clement Lefebvre <root@linuxmint.com> Mon, 11 May 2020 12:14:06 +0100 | |
54 | ||
55 | xapp (1.8.2) ulyana; urgency=medium | |
56 | ||
57 | * xapp-sn-watcher: Don't enable in MATE | |
58 | ||
59 | -- Clement Lefebvre <root@linuxmint.com> Mon, 27 Apr 2020 12:03:41 +0100 | |
60 | ||
61 | xapp (1.8.1) ulyana; urgency=medium | |
62 | ||
63 | [ Clement Lefebvre ] | |
64 | * Update documentation | |
65 | * CI: Update targets | |
66 | * l10n: Fix makepot picking up unwanted service file | |
67 | ||
68 | [ Michael Webster ] | |
69 | * Eliminate all appindicator-specific code from xapp-status-icon.c, Add a whitelist for xapp-sn-watcher to list ai icons that should left-click to activate. | |
70 | ||
71 | [ Clement Lefebvre ] | |
72 | * Update documentation | |
73 | * CI: Update targets | |
74 | * l10n: Fix makepot picking up unwanted service file | |
75 | ||
76 | [ Michael Webster ] | |
77 | * Eliminate all appindicator-specific code from xapp-status-icon.c, Add a whitelist for xapp-sn-watcher to list ai icons that should left-click to activate. | |
78 | * xapp-sn-watcher: Add a whitelist to manage what desktop environments to start in. | |
79 | ||
80 | -- Clement Lefebvre <root@linuxmint.com> Sat, 25 Apr 2020 18:37:40 +0100 | |
81 | ||
82 | xapp (1.8.0) ulyana; urgency=medium | |
83 | ||
84 | [ worldofpeace ] | |
85 | * Add option to specify path to pygobject override directory | |
86 | * Install icons and scripts using meson options | |
1 | 87 | |
2 | 88 | [ Michael Webster ] |
3 | 89 | * xapp-status-icon.c: Sync the visible state of the fallback GtkStatusIcon when it is first created. |
4 | 90 | * xapp-status-icon.c: Fix the timeout duration for xapp_status_icon_any_monitors. |
5 | 91 | |
6 | -- Clement Lefebvre <root@linuxmint.com> Thu, 09 Jan 2020 17:13:49 +0000 | |
92 | [ leigh123linux ] | |
93 | * Remove use of deprecated g_type_class_add_private function | |
94 | ||
95 | [ Stephen Collins ] | |
96 | * Add gitignore | |
97 | ||
98 | [ JosephMcc ] | |
99 | * xapp-monitor-blanker: Use G_DECLARE_FINAL_TYPE | |
100 | ||
101 | [ Michael Webster ] | |
102 | * xapp-status-icon.c: check if we have a fallback status icon before disconnecting signals from it. | |
103 | * xapp-status-icon.c: Only call gtk_status_icon_set_name() when explicitly requested. | |
104 | * Add StatusNotifier watcher. | |
105 | * mate applet: Set the new icon size property (this provides a hint to xapp-sn-watcher or any client app to provide a correct icon size in some situations). | |
106 | * status icon: Add support for scroll events | |
107 | * debian: Remove python2 deps. | |
108 | * debian/control: Add missing dbusmenu dependency. | |
109 | ||
110 | [ Clement Lefebvre ] | |
111 | * Packaging: Re-add python-gi-dev as build-dep | |
112 | ||
113 | [ Michael Webster ] | |
114 | * xapp-sn-watcher: rewrite in C due to leaky dbus python bindings. | |
115 | ||
116 | -- Clement Lefebvre <root@linuxmint.com> Thu, 23 Apr 2020 15:49:33 +0100 | |
7 | 117 | |
8 | 118 | xapp (1.6.9) tricia; urgency=medium |
9 | 119 |
13 | 13 | libglib2.0-dev (>= 2.37.3), |
14 | 14 | libgnomekbd-dev, |
15 | 15 | libgtk-3-dev (>= 3.3.16), |
16 | libdbusmenu-gtk3-dev, | |
16 | 17 | libx11-dev, |
17 | 18 | libxkbfile-dev, |
18 | 19 | meson, |
19 | python, | |
20 | python3, | |
20 | 21 | python-gi-dev, |
21 | python3, | |
22 | 22 | valac, |
23 | 23 | Standards-Version: 3.9.6 |
24 | 24 |
3 | 3 | # meson support is baked in |
4 | 4 | |
5 | 5 | %: |
6 | dh $@ --with=gir,python2,python3 | |
6 | dh $@ --with=gir,python3 | |
7 | 7 | |
8 | 8 | override_dh_auto_configure: |
9 | 9 | mkdir -p debian/build |
1 | 1 | usr/bin/ |
2 | 2 | usr/share/icons |
3 | 3 | usr/share/locale |
4 | usr/libexec/xapps | |
4 | usr/libexec/xapps/*.py | |
5 | 5 | usr/share/mate-panel/applets |
6 | 6 | usr/share/dbus-1/services |
7 | etc/xdg/autostart⏎ |
75 | 75 | </table></div> |
76 | 76 | </div> |
77 | 77 | <div class="refsect1"> |
78 | <a name="XAppMonitorBlanker.other"></a><h2>Types and Values</h2> | |
79 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
80 | <colgroup> | |
81 | <col width="150px" class="name"> | |
82 | <col class="description"> | |
83 | </colgroup> | |
84 | <tbody> | |
85 | <tr> | |
86 | <td class="define_keyword">#define</td> | |
87 | <td class="function_name"><a class="link" href="XAppMonitorBlanker.html#XAPP-TYPE-MONITOR-BLANKER:CAPS" title="XAPP_TYPE_MONITOR_BLANKER">XAPP_TYPE_MONITOR_BLANKER</a></td> | |
88 | </tr> | |
89 | <tr> | |
90 | <td class="datatype_keyword"> </td> | |
91 | <td class="function_name"><a class="link" href="XAppMonitorBlanker.html#XAppMonitorBlanker-struct" title="XAppMonitorBlanker">XAppMonitorBlanker</a></td> | |
92 | </tr> | |
93 | </tbody> | |
94 | </table></div> | |
95 | </div> | |
96 | <div class="refsect1"> | |
78 | 97 | <a name="XAppMonitorBlanker.object-hierarchy"></a><h2>Object Hierarchy</h2> |
79 | 98 | <pre class="screen"> <a href="../gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> |
80 | 99 | <span class="lineart">╰──</span> XAppMonitorBlanker |
184 | 203 | </div> |
185 | 204 | <div class="refsect1"> |
186 | 205 | <a name="XAppMonitorBlanker.other_details"></a><h2>Types and Values</h2> |
206 | <div class="refsect2"> | |
207 | <a name="XAPP-TYPE-MONITOR-BLANKER:CAPS"></a><h3>XAPP_TYPE_MONITOR_BLANKER</h3> | |
208 | <pre class="programlisting">#define XAPP_TYPE_MONITOR_BLANKER (xapp_monitor_blanker_get_type ()) | |
209 | </pre> | |
210 | </div> | |
211 | <hr> | |
212 | <div class="refsect2"> | |
213 | <a name="XAppMonitorBlanker-struct"></a><h3>XAppMonitorBlanker</h3> | |
214 | <pre class="programlisting">typedef struct _XAppMonitorBlanker XAppMonitorBlanker;</pre> | |
215 | </div> | |
187 | 216 | </div> |
188 | 217 | </div> |
189 | 218 | <div class="footer"> |
67 | 67 | </tr> |
68 | 68 | <tr> |
69 | 69 | <td class="function_type"> |
70 | <a href="../glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> | |
71 | </td> | |
72 | <td class="function_name"> | |
73 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-get-icon-size" title="xapp_status_icon_get_icon_size ()">xapp_status_icon_get_icon_size</a> <span class="c_punctuation">()</span> | |
74 | </td> | |
75 | </tr> | |
76 | <tr> | |
77 | <td class="function_type"> | |
70 | 78 | <span class="returnvalue">void</span> |
71 | 79 | </td> |
72 | 80 | <td class="function_name"> |
87 | 95 | </td> |
88 | 96 | <td class="function_name"> |
89 | 97 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-set-visible" title="xapp_status_icon_set_visible ()">xapp_status_icon_set_visible</a> <span class="c_punctuation">()</span> |
98 | </td> | |
99 | </tr> | |
100 | <tr> | |
101 | <td class="function_type"> | |
102 | <a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
103 | </td> | |
104 | <td class="function_name"> | |
105 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-get-visible" title="xapp_status_icon_get_visible ()">xapp_status_icon_get_visible</a> <span class="c_punctuation">()</span> | |
90 | 106 | </td> |
91 | 107 | </tr> |
92 | 108 | <tr> |
149 | 165 | <col width="200px" class="properties_flags"> |
150 | 166 | </colgroup> |
151 | 167 | <tbody> |
168 | <tr> | |
169 | <td class="property_type"><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td> | |
170 | <td class="property_name"><a class="link" href="XAppStatusIcon.html#XAppStatusIcon--icon-size" title="The “icon-size” property">icon-size</a></td> | |
171 | <td class="property_flags">Read / Write</td> | |
172 | </tr> | |
152 | 173 | <tr> |
153 | 174 | <td class="property_type"> |
154 | 175 | <a href="../gtk3/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> *</td> |
190 | 211 | </tr> |
191 | 212 | <tr> |
192 | 213 | <td class="signal_type"><span class="returnvalue">void</span></td> |
214 | <td class="signal_name"><a class="link" href="XAppStatusIcon.html#XAppStatusIcon-scroll-event" title="The “scroll-event” signal">scroll-event</a></td> | |
215 | <td class="signal_flags"><a href="../gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td> | |
216 | </tr> | |
217 | <tr> | |
218 | <td class="signal_type"><span class="returnvalue">void</span></td> | |
193 | 219 | <td class="signal_name"><a class="link" href="XAppStatusIcon.html#XAppStatusIcon-state-changed" title="The “state-changed” signal">state-changed</a></td> |
194 | 220 | <td class="signal_flags"><a href="../gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></td> |
195 | 221 | </tr> |
211 | 237 | <tr> |
212 | 238 | <td class="datatype_keyword">enum</td> |
213 | 239 | <td class="function_name"><a class="link" href="XAppStatusIcon.html#XAppStatusIconState" title="enum XAppStatusIconState">XAppStatusIconState</a></td> |
240 | </tr> | |
241 | <tr> | |
242 | <td class="datatype_keyword">enum</td> | |
243 | <td class="function_name"><a class="link" href="XAppStatusIcon.html#XAppScrollDirection" title="enum XAppScrollDirection">XAppScrollDirection</a></td> | |
214 | 244 | </tr> |
215 | 245 | <tr> |
216 | 246 | <td class="datatype_keyword"> </td> |
222 | 252 | <div class="refsect1"> |
223 | 253 | <a name="XAppStatusIcon.object-hierarchy"></a><h2>Object Hierarchy</h2> |
224 | 254 | <pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> |
255 | <span class="lineart">├──</span> XAppScrollDirection | |
225 | 256 | <span class="lineart">╰──</span> XAppStatusIconState |
226 | 257 | <a href="../gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a> |
227 | 258 | <span class="lineart">╰──</span> XAppStatusIcon |
313 | 344 | </div> |
314 | 345 | <hr> |
315 | 346 | <div class="refsect2"> |
347 | <a name="xapp-status-icon-get-icon-size"></a><h3>xapp_status_icon_get_icon_size ()</h3> | |
348 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> | |
349 | xapp_status_icon_get_icon_size (<em class="parameter"><code><a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a> *icon</code></em>);</pre> | |
350 | <div class="refsect3"> | |
351 | <a name="xapp-status-icon-get-icon-size.parameters"></a><h4>Parameters</h4> | |
352 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
353 | <colgroup> | |
354 | <col width="150px" class="parameters_name"> | |
355 | <col class="parameters_description"> | |
356 | <col width="200px" class="parameters_annotations"> | |
357 | </colgroup> | |
358 | <tbody><tr> | |
359 | <td class="parameter_name"><p>icon</p></td> | |
360 | <td class="parameter_description"><p>a <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a></p></td> | |
361 | <td class="parameter_annotations"> </td> | |
362 | </tr></tbody> | |
363 | </table></div> | |
364 | </div> | |
365 | <div class="refsect3"> | |
366 | <a name="xapp-status-icon-get-icon-size.returns"></a><h4>Returns</h4> | |
367 | <p> The desired icon size - usually set by the host based on panel size. | |
368 | This is not what it's guaranteed to get, and this is really only useful when | |
369 | receiving absolute icon paths from the client app.</p> | |
370 | </div> | |
371 | <p class="since">Since: 1.8</p> | |
372 | </div> | |
373 | <hr> | |
374 | <div class="refsect2"> | |
316 | 375 | <a name="xapp-status-icon-set-tooltip-text"></a><h3>xapp_status_icon_set_tooltip_text ()</h3> |
317 | 376 | <pre class="programlisting"><span class="returnvalue">void</span> |
318 | 377 | xapp_status_icon_set_tooltip_text (<em class="parameter"><code><a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a> *icon</code></em>, |
403 | 462 | </table></div> |
404 | 463 | </div> |
405 | 464 | <p class="since">Since: 1.6</p> |
465 | </div> | |
466 | <hr> | |
467 | <div class="refsect2"> | |
468 | <a name="xapp-status-icon-get-visible"></a><h3>xapp_status_icon_get_visible ()</h3> | |
469 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
470 | xapp_status_icon_get_visible (<em class="parameter"><code><a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a> *icon</code></em>);</pre> | |
471 | <p>Returns whether or not the icon should currently be visible.</p> | |
472 | <div class="refsect3"> | |
473 | <a name="xapp-status-icon-get-visible.parameters"></a><h4>Parameters</h4> | |
474 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
475 | <colgroup> | |
476 | <col width="150px" class="parameters_name"> | |
477 | <col class="parameters_description"> | |
478 | <col width="200px" class="parameters_annotations"> | |
479 | </colgroup> | |
480 | <tbody><tr> | |
481 | <td class="parameter_name"><p>icon</p></td> | |
482 | <td class="parameter_description"><p>an <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a></p></td> | |
483 | <td class="parameter_annotations"> </td> | |
484 | </tr></tbody> | |
485 | </table></div> | |
486 | </div> | |
487 | <div class="refsect3"> | |
488 | <a name="xapp-status-icon-get-visible.returns"></a><h4>Returns</h4> | |
489 | <p> the current visibility state.</p> | |
490 | </div> | |
491 | <p class="since">Since: 1.8.5</p> | |
406 | 492 | </div> |
407 | 493 | <hr> |
408 | 494 | <div class="refsect2"> |
616 | 702 | </div> |
617 | 703 | <hr> |
618 | 704 | <div class="refsect2"> |
705 | <a name="XAppScrollDirection"></a><h3>enum XAppScrollDirection</h3> | |
706 | <p>Represents the direction of icon scroll events.</p> | |
707 | <div class="refsect3"> | |
708 | <a name="XAppScrollDirection.members"></a><h4>Members</h4> | |
709 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
710 | <colgroup> | |
711 | <col width="300px" class="enum_members_name"> | |
712 | <col class="enum_members_description"> | |
713 | <col width="200px" class="enum_members_annotations"> | |
714 | </colgroup> | |
715 | <tbody> | |
716 | <tr> | |
717 | <td class="enum_member_name"><p><a name="XAPP-SCROLL-UP:CAPS"></a>XAPP_SCROLL_UP</p></td> | |
718 | <td class="enum_member_description"> | |
719 | <p>Scroll theoretical content up.</p> | |
720 | </td> | |
721 | <td class="enum_member_annotations"> </td> | |
722 | </tr> | |
723 | <tr> | |
724 | <td class="enum_member_name"><p><a name="XAPP-SCROLL-DOWN:CAPS"></a>XAPP_SCROLL_DOWN</p></td> | |
725 | <td class="enum_member_description"> | |
726 | <p>Scroll theoretical content down.</p> | |
727 | </td> | |
728 | <td class="enum_member_annotations"> </td> | |
729 | </tr> | |
730 | <tr> | |
731 | <td class="enum_member_name"><p><a name="XAPP-SCROLL-LEFT:CAPS"></a>XAPP_SCROLL_LEFT</p></td> | |
732 | <td class="enum_member_description"> | |
733 | <p>Scroll theoretical content left.</p> | |
734 | </td> | |
735 | <td class="enum_member_annotations"> </td> | |
736 | </tr> | |
737 | <tr> | |
738 | <td class="enum_member_name"><p><a name="XAPP-SCROLL-RIGHT:CAPS"></a>XAPP_SCROLL_RIGHT</p></td> | |
739 | <td class="enum_member_description"> | |
740 | <p>Scroll theoretical content right.</p> | |
741 | </td> | |
742 | <td class="enum_member_annotations"> </td> | |
743 | </tr> | |
744 | </tbody> | |
745 | </table></div> | |
746 | </div> | |
747 | </div> | |
748 | <hr> | |
749 | <div class="refsect2"> | |
619 | 750 | <a name="XAppStatusIcon-struct"></a><h3>XAppStatusIcon</h3> |
620 | 751 | <pre class="programlisting">typedef struct _XAppStatusIcon XAppStatusIcon;</pre> |
621 | 752 | </div> |
622 | 753 | </div> |
623 | 754 | <div class="refsect1"> |
624 | 755 | <a name="XAppStatusIcon.property-details"></a><h2>Property Details</h2> |
756 | <div class="refsect2"> | |
757 | <a name="XAppStatusIcon--icon-size"></a><h3>The <code class="literal">“icon-size”</code> property</h3> | |
758 | <pre class="programlisting"> “icon-size” <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre> | |
759 | <p>The icon size that is preferred by icon monitor/host - this is usually a product | |
760 | of some calculation based on the panel size. It can be used by the client to size | |
761 | an icon to be saved as a file and its path sent to the host.</p> | |
762 | <p>If this value is 0 it has not been set, and its value can be unreliable if the host | |
763 | has multiple <a href="XAppStatusIconMonitor.html#XAppStatusIconMonitor-struct"><span class="type">XAppStatusIconMonitors</span></a> active.</p> | |
764 | <p>Flags: Read / Write</p> | |
765 | <p>Allowed values: [0,96]</p> | |
766 | <p>Default value: 0</p> | |
767 | </div> | |
768 | <hr> | |
625 | 769 | <div class="refsect2"> |
626 | 770 | <a name="XAppStatusIcon--primary-menu"></a><h3>The <code class="literal">“primary-menu”</code> property</h3> |
627 | 771 | <pre class="programlisting"> “primary-menu” <a href="../gtk3/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> *</pre> |
828 | 972 | </div> |
829 | 973 | <hr> |
830 | 974 | <div class="refsect2"> |
975 | <a name="XAppStatusIcon-scroll-event"></a><h3>The <code class="literal">“scroll-event”</code> signal</h3> | |
976 | <pre class="programlisting"><span class="returnvalue">void</span> | |
977 | user_function (<a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a> *icon, | |
978 | <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> amount, | |
979 | <a class="link" href="XAppStatusIcon.html#XAppScrollDirection" title="enum XAppScrollDirection"><span class="type">XAppScrollDirection</span></a> direction, | |
980 | <a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> time, | |
981 | <a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre> | |
982 | <p>Gets emitted when the user uses the mouse scroll wheel over the status icon. | |
983 | For the most part, amounts will always be 1, unless an applet supports smooth | |
984 | scrolling. Generally the direction value is most important.</p> | |
985 | <div class="refsect3"> | |
986 | <a name="XAppStatusIcon-scroll-event.parameters"></a><h4>Parameters</h4> | |
987 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
988 | <colgroup> | |
989 | <col width="150px" class="parameters_name"> | |
990 | <col class="parameters_description"> | |
991 | <col width="200px" class="parameters_annotations"> | |
992 | </colgroup> | |
993 | <tbody> | |
994 | <tr> | |
995 | <td class="parameter_name"><p>icon</p></td> | |
996 | <td class="parameter_description"><p>The <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a></p></td> | |
997 | <td class="parameter_annotations"> </td> | |
998 | </tr> | |
999 | <tr> | |
1000 | <td class="parameter_name"><p>amount</p></td> | |
1001 | <td class="parameter_description"><p>The amount of movement for the scroll event</p></td> | |
1002 | <td class="parameter_annotations"> </td> | |
1003 | </tr> | |
1004 | <tr> | |
1005 | <td class="parameter_name"><p>direction</p></td> | |
1006 | <td class="parameter_description"><p>the <a class="link" href="XAppStatusIcon.html#XAppScrollDirection" title="enum XAppScrollDirection"><span class="type">XAppScrollDirection</span></a> of the scroll event</p></td> | |
1007 | <td class="parameter_annotations"> </td> | |
1008 | </tr> | |
1009 | <tr> | |
1010 | <td class="parameter_name"><p>time</p></td> | |
1011 | <td class="parameter_description"><p>The time supplied by the event, or 0</p></td> | |
1012 | <td class="parameter_annotations"> </td> | |
1013 | </tr> | |
1014 | <tr> | |
1015 | <td class="parameter_name"><p>user_data</p></td> | |
1016 | <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> | |
1017 | <td class="parameter_annotations"> </td> | |
1018 | </tr> | |
1019 | </tbody> | |
1020 | </table></div> | |
1021 | </div> | |
1022 | <p>Flags: <a href="../gobject/gobject-Signals.html#G-SIGNAL-ACTION:CAPS">Action</a></p> | |
1023 | </div> | |
1024 | <hr> | |
1025 | <div class="refsect2"> | |
831 | 1026 | <a name="XAppStatusIcon-state-changed"></a><h3>The <code class="literal">“state-changed”</code> signal</h3> |
832 | 1027 | <pre class="programlisting"><span class="returnvalue">void</span> |
833 | 1028 | user_function (<a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon"><span class="type">XAppStatusIcon</span></a> *icon, |
6 | 6 | <link rel="home" href="index.html" title="XApp Reference Manual"> |
7 | 7 | <link rel="up" href="ch01.html" title="API reference"> |
8 | 8 | <link rel="prev" href="XAppStatusIconMonitor.html" title="XAppStatusIconMonitor"> |
9 | <link rel="next" href="object-tree.html" title="Object Hierarchy"> | |
9 | <link rel="next" href="libxapp-xapp-util.html" title="xapp-util"> | |
10 | 10 | <meta name="generator" content="GTK-Doc V1.27 (XML mode)"> |
11 | 11 | <link rel="stylesheet" href="style.css" type="text/css"> |
12 | 12 | </head> |
22 | 22 | <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> |
23 | 23 | <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> |
24 | 24 | <td><a accesskey="p" href="XAppStatusIconMonitor.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> |
25 | <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> | |
25 | <td><a accesskey="n" href="libxapp-xapp-util.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> | |
26 | 26 | </tr></table> |
27 | 27 | <div class="refentry"> |
28 | 28 | <a name="XAppStatusIconInterfaceSkeleton"></a><div class="titlepage"></div> |
78 | 78 | <span class="returnvalue">void</span> |
79 | 79 | </td> |
80 | 80 | <td class="function_name"> |
81 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-scroll" title="xapp_status_icon_interface_complete_scroll ()">xapp_status_icon_interface_complete_scroll</a> <span class="c_punctuation">()</span> | |
82 | </td> | |
83 | </tr> | |
84 | <tr> | |
85 | <td class="function_type"> | |
86 | <span class="returnvalue">void</span> | |
87 | </td> | |
88 | <td class="function_name"> | |
81 | 89 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-press" title="xapp_status_icon_interface_call_button_press ()">xapp_status_icon_interface_call_button_press</a> <span class="c_punctuation">()</span> |
82 | 90 | </td> |
83 | 91 | </tr> |
122 | 130 | </td> |
123 | 131 | </tr> |
124 | 132 | <tr> |
133 | <td class="function_type"> | |
134 | <span class="returnvalue">void</span> | |
135 | </td> | |
136 | <td class="function_name"> | |
137 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll" title="xapp_status_icon_interface_call_scroll ()">xapp_status_icon_interface_call_scroll</a> <span class="c_punctuation">()</span> | |
138 | </td> | |
139 | </tr> | |
140 | <tr> | |
141 | <td class="function_type"> | |
142 | <a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
143 | </td> | |
144 | <td class="function_name"> | |
145 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-finish" title="xapp_status_icon_interface_call_scroll_finish ()">xapp_status_icon_interface_call_scroll_finish</a> <span class="c_punctuation">()</span> | |
146 | </td> | |
147 | </tr> | |
148 | <tr> | |
149 | <td class="function_type"> | |
150 | <a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
151 | </td> | |
152 | <td class="function_name"> | |
153 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-sync" title="xapp_status_icon_interface_call_scroll_sync ()">xapp_status_icon_interface_call_scroll_sync</a> <span class="c_punctuation">()</span> | |
154 | </td> | |
155 | </tr> | |
156 | <tr> | |
125 | 157 | <td class="function_type">const <a href="../glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * |
126 | 158 | </td> |
127 | 159 | <td class="function_name"> |
227 | 259 | </td> |
228 | 260 | <td class="function_name"> |
229 | 261 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-visible" title="xapp_status_icon_interface_set_visible ()">xapp_status_icon_interface_set_visible</a> <span class="c_punctuation">()</span> |
262 | </td> | |
263 | </tr> | |
264 | <tr> | |
265 | <td class="function_type"> | |
266 | <a href="../glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> | |
267 | </td> | |
268 | <td class="function_name"> | |
269 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-icon-size" title="xapp_status_icon_interface_get_icon_size ()">xapp_status_icon_interface_get_icon_size</a> <span class="c_punctuation">()</span> | |
270 | </td> | |
271 | </tr> | |
272 | <tr> | |
273 | <td class="function_type"> | |
274 | <span class="returnvalue">void</span> | |
275 | </td> | |
276 | <td class="function_name"> | |
277 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-icon-size" title="xapp_status_icon_interface_set_icon_size ()">xapp_status_icon_interface_set_icon_size</a> <span class="c_punctuation">()</span> | |
230 | 278 | </td> |
231 | 279 | </tr> |
232 | 280 | <tr> |
304 | 352 | <td class="property_flags">Read / Write</td> |
305 | 353 | </tr> |
306 | 354 | <tr> |
355 | <td class="property_type"><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td> | |
356 | <td class="property_name"><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--icon-size" title="The “icon-size” property">icon-size</a></td> | |
357 | <td class="property_flags">Read / Write</td> | |
358 | </tr> | |
359 | <tr> | |
307 | 360 | <td class="property_type"> |
308 | 361 | <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td> |
309 | 362 | <td class="property_name"><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--label" title="The “label” property">label</a></td> |
346 | 399 | <tr> |
347 | 400 | <td class="signal_type"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td> |
348 | 401 | <td class="signal_name"><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-button-release" title="The “handle-button-release” signal">handle-button-release</a></td> |
402 | <td class="signal_flags"><a href="../gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td> | |
403 | </tr> | |
404 | <tr> | |
405 | <td class="signal_type"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td> | |
406 | <td class="signal_name"><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-scroll" title="The “handle-scroll” signal">handle-scroll</a></td> | |
349 | 407 | <td class="signal_flags"><a href="../gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></td> |
350 | 408 | </tr> |
351 | 409 | </tbody> |
460 | 518 | , you cannot use it afterwards.</p> |
461 | 519 | <div class="refsect3"> |
462 | 520 | <a name="xapp-status-icon-interface-complete-button-release.parameters"></a><h4>Parameters</h4> |
521 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
522 | <colgroup> | |
523 | <col width="150px" class="parameters_name"> | |
524 | <col class="parameters_description"> | |
525 | <col width="200px" class="parameters_annotations"> | |
526 | </colgroup> | |
527 | <tbody> | |
528 | <tr> | |
529 | <td class="parameter_name"><p>object</p></td> | |
530 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a>.</p></td> | |
531 | <td class="parameter_annotations"> </td> | |
532 | </tr> | |
533 | <tr> | |
534 | <td class="parameter_name"><p>invocation</p></td> | |
535 | <td class="parameter_description"><p>A <a href="../gio/GDBusMethodInvocation.html#GDBusMethodInvocation-struct"><span class="type">GDBusMethodInvocation</span></a>. </p></td> | |
536 | <td class="parameter_annotations"><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></td> | |
537 | </tr> | |
538 | </tbody> | |
539 | </table></div> | |
540 | </div> | |
541 | </div> | |
542 | <hr> | |
543 | <div class="refsect2"> | |
544 | <a name="xapp-status-icon-interface-complete-scroll"></a><h3>xapp_status_icon_interface_complete_scroll ()</h3> | |
545 | <pre class="programlisting"><span class="returnvalue">void</span> | |
546 | xapp_status_icon_interface_complete_scroll | |
547 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *object</code></em>, | |
548 | <em class="parameter"><code><a href="../gio/GDBusMethodInvocation.html#GDBusMethodInvocation-struct"><span class="type">GDBusMethodInvocation</span></a> *invocation</code></em>);</pre> | |
549 | <p>Helper function used in service implementations to finish handling invocations of the <GTKDOCLINK HREF="Scroll"><code class="function">Scroll()</code></GTKDOCLINK> D-Bus method. If you instead want to finish handling an invocation by returning an error, use <a href="../gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-error"><code class="function">g_dbus_method_invocation_return_error()</code></a> or similar.</p> | |
550 | <p>This method will free <em class="parameter"><code>invocation</code></em> | |
551 | , you cannot use it afterwards.</p> | |
552 | <div class="refsect3"> | |
553 | <a name="xapp-status-icon-interface-complete-scroll.parameters"></a><h4>Parameters</h4> | |
463 | 554 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> |
464 | 555 | <colgroup> |
465 | 556 | <col width="150px" class="parameters_name"> |
877 | 968 | </div> |
878 | 969 | <hr> |
879 | 970 | <div class="refsect2"> |
971 | <a name="xapp-status-icon-interface-call-scroll"></a><h3>xapp_status_icon_interface_call_scroll ()</h3> | |
972 | <pre class="programlisting"><span class="returnvalue">void</span> | |
973 | xapp_status_icon_interface_call_scroll | |
974 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *proxy</code></em>, | |
975 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_delta</code></em>, | |
976 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_orientation</code></em>, | |
977 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> arg_time</code></em>, | |
978 | <em class="parameter"><code><a href="../gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>, | |
979 | <em class="parameter"><code><a href="../gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, | |
980 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre> | |
981 | <p>Asynchronously invokes the <GTKDOCLINK HREF="Scroll"><code class="function">Scroll()</code></GTKDOCLINK> D-Bus method on <em class="parameter"><code>proxy</code></em> | |
982 | . | |
983 | When the operation is finished, <em class="parameter"><code>callback</code></em> | |
984 | will be invoked in the <a href="../glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> of the thread you are calling this method from. | |
985 | You can then call <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-finish" title="xapp_status_icon_interface_call_scroll_finish ()"><code class="function">xapp_status_icon_interface_call_scroll_finish()</code></a> to get the result of the operation.</p> | |
986 | <p>See <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-sync" title="xapp_status_icon_interface_call_scroll_sync ()"><code class="function">xapp_status_icon_interface_call_scroll_sync()</code></a> for the synchronous, blocking version of this method.</p> | |
987 | <div class="refsect3"> | |
988 | <a name="xapp-status-icon-interface-call-scroll.parameters"></a><h4>Parameters</h4> | |
989 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
990 | <colgroup> | |
991 | <col width="150px" class="parameters_name"> | |
992 | <col class="parameters_description"> | |
993 | <col width="200px" class="parameters_annotations"> | |
994 | </colgroup> | |
995 | <tbody> | |
996 | <tr> | |
997 | <td class="parameter_name"><p>proxy</p></td> | |
998 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterfaceProxy"><span class="type">XAppStatusIconInterfaceProxy</span></a>.</p></td> | |
999 | <td class="parameter_annotations"> </td> | |
1000 | </tr> | |
1001 | <tr> | |
1002 | <td class="parameter_name"><p>arg_delta</p></td> | |
1003 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1004 | <td class="parameter_annotations"> </td> | |
1005 | </tr> | |
1006 | <tr> | |
1007 | <td class="parameter_name"><p>arg_orientation</p></td> | |
1008 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1009 | <td class="parameter_annotations"> </td> | |
1010 | </tr> | |
1011 | <tr> | |
1012 | <td class="parameter_name"><p>arg_time</p></td> | |
1013 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1014 | <td class="parameter_annotations"> </td> | |
1015 | </tr> | |
1016 | <tr> | |
1017 | <td class="parameter_name"><p>cancellable</p></td> | |
1018 | <td class="parameter_description"><p>A <a href="../gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td> | |
1019 | <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></td> | |
1020 | </tr> | |
1021 | <tr> | |
1022 | <td class="parameter_name"><p>callback</p></td> | |
1023 | <td class="parameter_description"><p>A <a href="../gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> to call when the request is satisfied or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td> | |
1024 | <td class="parameter_annotations"> </td> | |
1025 | </tr> | |
1026 | <tr> | |
1027 | <td class="parameter_name"><p>user_data</p></td> | |
1028 | <td class="parameter_description"><p>User data to pass to <em class="parameter"><code>callback</code></em> | |
1029 | .</p></td> | |
1030 | <td class="parameter_annotations"> </td> | |
1031 | </tr> | |
1032 | </tbody> | |
1033 | </table></div> | |
1034 | </div> | |
1035 | </div> | |
1036 | <hr> | |
1037 | <div class="refsect2"> | |
1038 | <a name="xapp-status-icon-interface-call-scroll-finish"></a><h3>xapp_status_icon_interface_call_scroll_finish ()</h3> | |
1039 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
1040 | xapp_status_icon_interface_call_scroll_finish | |
1041 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *proxy</code></em>, | |
1042 | <em class="parameter"><code><a href="../gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> *res</code></em>, | |
1043 | <em class="parameter"><code><a href="../glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> | |
1044 | <p>Finishes an operation started with <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll" title="xapp_status_icon_interface_call_scroll ()"><code class="function">xapp_status_icon_interface_call_scroll()</code></a>.</p> | |
1045 | <div class="refsect3"> | |
1046 | <a name="xapp-status-icon-interface-call-scroll-finish.parameters"></a><h4>Parameters</h4> | |
1047 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
1048 | <colgroup> | |
1049 | <col width="150px" class="parameters_name"> | |
1050 | <col class="parameters_description"> | |
1051 | <col width="200px" class="parameters_annotations"> | |
1052 | </colgroup> | |
1053 | <tbody> | |
1054 | <tr> | |
1055 | <td class="parameter_name"><p>proxy</p></td> | |
1056 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterfaceProxy"><span class="type">XAppStatusIconInterfaceProxy</span></a>.</p></td> | |
1057 | <td class="parameter_annotations"> </td> | |
1058 | </tr> | |
1059 | <tr> | |
1060 | <td class="parameter_name"><p>res</p></td> | |
1061 | <td class="parameter_description"><p>The <a href="../gio/GAsyncResult.html#GAsyncResult-struct"><span class="type">GAsyncResult</span></a> obtained from the <a href="../gio/GAsyncResult.html#GAsyncReadyCallback"><span class="type">GAsyncReadyCallback</span></a> passed to <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll" title="xapp_status_icon_interface_call_scroll ()"><code class="function">xapp_status_icon_interface_call_scroll()</code></a>.</p></td> | |
1062 | <td class="parameter_annotations"> </td> | |
1063 | </tr> | |
1064 | <tr> | |
1065 | <td class="parameter_name"><p>error</p></td> | |
1066 | <td class="parameter_description"><p>Return location for error or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td> | |
1067 | <td class="parameter_annotations"> </td> | |
1068 | </tr> | |
1069 | </tbody> | |
1070 | </table></div> | |
1071 | </div> | |
1072 | <div class="refsect3"> | |
1073 | <a name="xapp-status-icon-interface-call-scroll-finish.returns"></a><h4>Returns</h4> | |
1074 | <p><a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the call succeded, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if <em class="parameter"><code>error</code></em> | |
1075 | is set. </p> | |
1076 | <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> | |
1077 | </div> | |
1078 | </div> | |
1079 | <hr> | |
1080 | <div class="refsect2"> | |
1081 | <a name="xapp-status-icon-interface-call-scroll-sync"></a><h3>xapp_status_icon_interface_call_scroll_sync ()</h3> | |
1082 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
1083 | xapp_status_icon_interface_call_scroll_sync | |
1084 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *proxy</code></em>, | |
1085 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_delta</code></em>, | |
1086 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_orientation</code></em>, | |
1087 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> arg_time</code></em>, | |
1088 | <em class="parameter"><code><a href="../gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> *cancellable</code></em>, | |
1089 | <em class="parameter"><code><a href="../glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> | |
1090 | <p>Synchronously invokes the <GTKDOCLINK HREF="Scroll"><code class="function">Scroll()</code></GTKDOCLINK> D-Bus method on <em class="parameter"><code>proxy</code></em> | |
1091 | . The calling thread is blocked until a reply is received.</p> | |
1092 | <p>See <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll" title="xapp_status_icon_interface_call_scroll ()"><code class="function">xapp_status_icon_interface_call_scroll()</code></a> for the asynchronous version of this method.</p> | |
1093 | <div class="refsect3"> | |
1094 | <a name="xapp-status-icon-interface-call-scroll-sync.parameters"></a><h4>Parameters</h4> | |
1095 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
1096 | <colgroup> | |
1097 | <col width="150px" class="parameters_name"> | |
1098 | <col class="parameters_description"> | |
1099 | <col width="200px" class="parameters_annotations"> | |
1100 | </colgroup> | |
1101 | <tbody> | |
1102 | <tr> | |
1103 | <td class="parameter_name"><p>proxy</p></td> | |
1104 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterfaceProxy"><span class="type">XAppStatusIconInterfaceProxy</span></a>.</p></td> | |
1105 | <td class="parameter_annotations"> </td> | |
1106 | </tr> | |
1107 | <tr> | |
1108 | <td class="parameter_name"><p>arg_delta</p></td> | |
1109 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1110 | <td class="parameter_annotations"> </td> | |
1111 | </tr> | |
1112 | <tr> | |
1113 | <td class="parameter_name"><p>arg_orientation</p></td> | |
1114 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1115 | <td class="parameter_annotations"> </td> | |
1116 | </tr> | |
1117 | <tr> | |
1118 | <td class="parameter_name"><p>arg_time</p></td> | |
1119 | <td class="parameter_description"><p>Argument to pass with the method invocation.</p></td> | |
1120 | <td class="parameter_annotations"> </td> | |
1121 | </tr> | |
1122 | <tr> | |
1123 | <td class="parameter_name"><p>cancellable</p></td> | |
1124 | <td class="parameter_description"><p>A <a href="../gio/GCancellable.html#GCancellable-struct"><span class="type">GCancellable</span></a> or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td> | |
1125 | <td class="parameter_annotations"><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></td> | |
1126 | </tr> | |
1127 | <tr> | |
1128 | <td class="parameter_name"><p>error</p></td> | |
1129 | <td class="parameter_description"><p>Return location for error or <a href="../glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td> | |
1130 | <td class="parameter_annotations"> </td> | |
1131 | </tr> | |
1132 | </tbody> | |
1133 | </table></div> | |
1134 | </div> | |
1135 | <div class="refsect3"> | |
1136 | <a name="xapp-status-icon-interface-call-scroll-sync.returns"></a><h4>Returns</h4> | |
1137 | <p><a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the call succeded, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if <em class="parameter"><code>error</code></em> | |
1138 | is set. </p> | |
1139 | <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> | |
1140 | </div> | |
1141 | </div> | |
1142 | <hr> | |
1143 | <div class="refsect2"> | |
880 | 1144 | <a name="xapp-status-icon-interface-get-name"></a><h3>xapp_status_icon_interface_get_name ()</h3> |
881 | 1145 | <pre class="programlisting">const <a href="../glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * |
882 | 1146 | xapp_status_icon_interface_get_name (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *object</code></em>);</pre> |
1295 | 1559 | <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> |
1296 | 1560 | <div class="refsect3"> |
1297 | 1561 | <a name="xapp-status-icon-interface-set-visible.parameters"></a><h4>Parameters</h4> |
1562 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
1563 | <colgroup> | |
1564 | <col width="150px" class="parameters_name"> | |
1565 | <col class="parameters_description"> | |
1566 | <col width="200px" class="parameters_annotations"> | |
1567 | </colgroup> | |
1568 | <tbody> | |
1569 | <tr> | |
1570 | <td class="parameter_name"><p>object</p></td> | |
1571 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a>.</p></td> | |
1572 | <td class="parameter_annotations"> </td> | |
1573 | </tr> | |
1574 | <tr> | |
1575 | <td class="parameter_name"><p>value</p></td> | |
1576 | <td class="parameter_description"><p>The value to set.</p></td> | |
1577 | <td class="parameter_annotations"> </td> | |
1578 | </tr> | |
1579 | </tbody> | |
1580 | </table></div> | |
1581 | </div> | |
1582 | </div> | |
1583 | <hr> | |
1584 | <div class="refsect2"> | |
1585 | <a name="xapp-status-icon-interface-get-icon-size"></a><h3>xapp_status_icon_interface_get_icon_size ()</h3> | |
1586 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> | |
1587 | xapp_status_icon_interface_get_icon_size | |
1588 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *object</code></em>);</pre> | |
1589 | <p>Gets the value of the "IconSize" D-Bus property.</p> | |
1590 | <p>Since this D-Bus property is both readable and writable, it is meaningful to use this function on both the client- and service-side.</p> | |
1591 | <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> | |
1592 | <div class="refsect3"> | |
1593 | <a name="xapp-status-icon-interface-get-icon-size.parameters"></a><h4>Parameters</h4> | |
1594 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
1595 | <colgroup> | |
1596 | <col width="150px" class="parameters_name"> | |
1597 | <col class="parameters_description"> | |
1598 | <col width="200px" class="parameters_annotations"> | |
1599 | </colgroup> | |
1600 | <tbody><tr> | |
1601 | <td class="parameter_name"><p>object</p></td> | |
1602 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a>.</p></td> | |
1603 | <td class="parameter_annotations"> </td> | |
1604 | </tr></tbody> | |
1605 | </table></div> | |
1606 | </div> | |
1607 | <div class="refsect3"> | |
1608 | <a name="xapp-status-icon-interface-get-icon-size.returns"></a><h4>Returns</h4> | |
1609 | <p> The property value.</p> | |
1610 | </div> | |
1611 | </div> | |
1612 | <hr> | |
1613 | <div class="refsect2"> | |
1614 | <a name="xapp-status-icon-interface-set-icon-size"></a><h3>xapp_status_icon_interface_set_icon_size ()</h3> | |
1615 | <pre class="programlisting"><span class="returnvalue">void</span> | |
1616 | xapp_status_icon_interface_set_icon_size | |
1617 | (<em class="parameter"><code><a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *object</code></em>, | |
1618 | <em class="parameter"><code><a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> value</code></em>);</pre> | |
1619 | <p>Sets the "IconSize" D-Bus property to <em class="parameter"><code>value</code></em> | |
1620 | .</p> | |
1621 | <p>Since this D-Bus property is both readable and writable, it is meaningful to use this function on both the client- and service-side.</p> | |
1622 | <p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p> | |
1623 | <div class="refsect3"> | |
1624 | <a name="xapp-status-icon-interface-set-icon-size.parameters"></a><h4>Parameters</h4> | |
1298 | 1625 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> |
1299 | 1626 | <colgroup> |
1300 | 1627 | <col width="150px" class="parameters_name"> |
1678 | 2005 | </div> |
1679 | 2006 | <hr> |
1680 | 2007 | <div class="refsect2"> |
2008 | <a name="XAppStatusIconInterface--icon-size"></a><h3>The <code class="literal">“icon-size”</code> property</h3> | |
2009 | <pre class="programlisting"> “icon-size” <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre> | |
2010 | <p>Represents the D-Bus property "IconSize".</p> | |
2011 | <p>Since the D-Bus property for this <a href="../gobject/gobject-The-Base-Object-Type.html#GObject-struct"><span class="type">GObject</span></a> property is both readable and writable, it is meaningful to both read from it and write to it on both the service- and client-side.</p> | |
2012 | <p>Flags: Read / Write</p> | |
2013 | <p>Default value: 0</p> | |
2014 | </div> | |
2015 | <hr> | |
2016 | <div class="refsect2"> | |
1681 | 2017 | <a name="XAppStatusIconInterface--label"></a><h3>The <code class="literal">“label”</code> property</h3> |
1682 | 2018 | <pre class="programlisting"> “label” <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre> |
1683 | 2019 | <p>Represents the D-Bus property "Label".</p> |
1860 | 2196 | </div> |
1861 | 2197 | <p>Flags: <a href="../gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p> |
1862 | 2198 | </div> |
2199 | <hr> | |
2200 | <div class="refsect2"> | |
2201 | <a name="XAppStatusIconInterface-handle-scroll"></a><h3>The <code class="literal">“handle-scroll”</code> signal</h3> | |
2202 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
2203 | user_function (<a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a> *object, | |
2204 | <a href="../gio/GDBusMethodInvocation.html#GDBusMethodInvocation-struct"><span class="type">GDBusMethodInvocation</span></a> *invocation, | |
2205 | <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_delta, | |
2206 | <a href="../glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg_orientation, | |
2207 | <a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> arg_time, | |
2208 | <a href="../glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre> | |
2209 | <p>Signal emitted when a remote caller is invoking the <GTKDOCLINK HREF="Scroll"><code class="function">Scroll()</code></GTKDOCLINK> D-Bus method.</p> | |
2210 | <p>If a signal handler returns <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, it means the signal handler will handle the invocation (e.g. take a reference to <em class="parameter"><code>invocation</code></em> | |
2211 | and eventually call <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-scroll" title="xapp_status_icon_interface_complete_scroll ()"><code class="function">xapp_status_icon_interface_complete_scroll()</code></a> or e.g. <a href="../gio/GDBusMethodInvocation.html#g-dbus-method-invocation-return-error"><code class="function">g_dbus_method_invocation_return_error()</code></a> on it) and no order signal handlers will run. If no signal handler handles the invocation, the <a href="../gio/gio-GDBusError.html#G-DBUS-ERROR-UNKNOWN-METHOD:CAPS"><code class="literal">G_DBUS_ERROR_UNKNOWN_METHOD</code></a> error is returned.</p> | |
2212 | <div class="refsect3"> | |
2213 | <a name="XAppStatusIconInterface-handle-scroll.parameters"></a><h4>Parameters</h4> | |
2214 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
2215 | <colgroup> | |
2216 | <col width="150px" class="parameters_name"> | |
2217 | <col class="parameters_description"> | |
2218 | <col width="200px" class="parameters_annotations"> | |
2219 | </colgroup> | |
2220 | <tbody> | |
2221 | <tr> | |
2222 | <td class="parameter_name"><p>object</p></td> | |
2223 | <td class="parameter_description"><p>A <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface"><span class="type">XAppStatusIconInterface</span></a>.</p></td> | |
2224 | <td class="parameter_annotations"> </td> | |
2225 | </tr> | |
2226 | <tr> | |
2227 | <td class="parameter_name"><p>invocation</p></td> | |
2228 | <td class="parameter_description"><p>A <a href="../gio/GDBusMethodInvocation.html#GDBusMethodInvocation-struct"><span class="type">GDBusMethodInvocation</span></a>.</p></td> | |
2229 | <td class="parameter_annotations"> </td> | |
2230 | </tr> | |
2231 | <tr> | |
2232 | <td class="parameter_name"><p>arg_delta</p></td> | |
2233 | <td class="parameter_description"><p>Argument passed by remote caller.</p></td> | |
2234 | <td class="parameter_annotations"> </td> | |
2235 | </tr> | |
2236 | <tr> | |
2237 | <td class="parameter_name"><p>arg_orientation</p></td> | |
2238 | <td class="parameter_description"><p>Argument passed by remote caller.</p></td> | |
2239 | <td class="parameter_annotations"> </td> | |
2240 | </tr> | |
2241 | <tr> | |
2242 | <td class="parameter_name"><p>arg_time</p></td> | |
2243 | <td class="parameter_description"><p>Argument passed by remote caller.</p></td> | |
2244 | <td class="parameter_annotations"> </td> | |
2245 | </tr> | |
2246 | <tr> | |
2247 | <td class="parameter_name"><p>user_data</p></td> | |
2248 | <td class="parameter_description"><p>user data set when the signal handler was connected.</p></td> | |
2249 | <td class="parameter_annotations"> </td> | |
2250 | </tr> | |
2251 | </tbody> | |
2252 | </table></div> | |
2253 | </div> | |
2254 | <div class="refsect3"> | |
2255 | <a name="XAppStatusIconInterface-handle-scroll.returns"></a><h4>Returns</h4> | |
2256 | <p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the invocation was handled, <a href="../glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to let other signal handlers run.</p> | |
2257 | </div> | |
2258 | <p>Flags: <a href="../gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS">Run Last</a></p> | |
2259 | </div> | |
1863 | 2260 | </div> |
1864 | 2261 | </div> |
1865 | 2262 | <div class="footer"> |
24 | 24 | <span class="dim">|</span> |
25 | 25 | <a class="shortcut" href="#idxS">S</a> |
26 | 26 | <span class="dim">|</span> |
27 | <a class="shortcut" href="#idxT">T</a></span></td> | |
27 | <a class="shortcut" href="#idxT">T</a> | |
28 | <span class="dim">|</span> | |
29 | <a class="shortcut" href="#idxU">U</a></span></td> | |
28 | 30 | <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> |
29 | 31 | <td><img src="up-insensitive.png" width="16" height="16" border="0"></td> |
30 | 32 | <td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> |
254 | 256 | <dd></dd> |
255 | 257 | <a name="idxM"></a><h3 class="title">M</h3> |
256 | 258 | <dt> |
259 | <a class="link" href="XAppMonitorBlanker.html#XAppMonitorBlanker-struct" title="XAppMonitorBlanker">XAppMonitorBlanker</a>, struct in <a class="link" href="XAppMonitorBlanker.html" title="XAppMonitorBlanker">XAppMonitorBlanker</a> | |
260 | </dt> | |
261 | <dd></dd> | |
262 | <dt> | |
257 | 263 | <a class="link" href="XAppMonitorBlanker.html#xapp-monitor-blanker-are-monitors-blanked" title="xapp_monitor_blanker_are_monitors_blanked ()">xapp_monitor_blanker_are_monitors_blanked</a>, function in <a class="link" href="XAppMonitorBlanker.html" title="XAppMonitorBlanker">XAppMonitorBlanker</a> |
258 | 264 | </dt> |
259 | 265 | <dd></dd> |
296 | 302 | <dd></dd> |
297 | 303 | <a name="idxS"></a><h3 class="title">S</h3> |
298 | 304 | <dt> |
305 | <a class="link" href="XAppStatusIcon.html#XAppScrollDirection" title="enum XAppScrollDirection">XAppScrollDirection</a>, enum in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> | |
306 | </dt> | |
307 | <dd></dd> | |
308 | <dt> | |
299 | 309 | <a class="link" href="XAppGtkWindow.html#xapp-set-window-icon-from-file" title="xapp_set_window_icon_from_file ()">xapp_set_window_icon_from_file</a>, function in <a class="link" href="XAppGtkWindow.html" title="XAppGtkWindow">XAppGtkWindow</a> |
300 | 310 | </dt> |
301 | 311 | <dd></dd> |
364 | 374 | </dt> |
365 | 375 | <dd></dd> |
366 | 376 | <dt> |
377 | <a class="link" href="XAppStatusIcon.html#XAppStatusIcon-scroll-event" title="The “scroll-event” signal">XAppStatusIcon::scroll-event</a>, object signal in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> | |
378 | </dt> | |
379 | <dd></dd> | |
380 | <dt> | |
367 | 381 | <a class="link" href="XAppStatusIcon.html#XAppStatusIcon-state-changed" title="The “state-changed” signal">XAppStatusIcon::state-changed</a>, object signal in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> |
368 | 382 | </dt> |
369 | 383 | <dd></dd> |
370 | 384 | <dt> |
385 | <a class="link" href="XAppStatusIcon.html#XAppStatusIcon--icon-size" title="The “icon-size” property">XAppStatusIcon:icon-size</a>, object property in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> | |
386 | </dt> | |
387 | <dd></dd> | |
388 | <dt> | |
371 | 389 | <a class="link" href="XAppStatusIcon.html#XAppStatusIcon--primary-menu" title="The “primary-menu” property">XAppStatusIcon:primary-menu</a>, object property in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> |
372 | 390 | </dt> |
373 | 391 | <dd></dd> |
384 | 402 | </dt> |
385 | 403 | <dd></dd> |
386 | 404 | <dt> |
405 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-scroll" title="The “handle-scroll” signal">XAppStatusIconInterface::handle-scroll</a>, object signal in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
406 | </dt> | |
407 | <dd></dd> | |
408 | <dt> | |
387 | 409 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--icon-name" title="The “icon-name” property">XAppStatusIconInterface:icon-name</a>, object property in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
388 | 410 | </dt> |
389 | 411 | <dd></dd> |
390 | 412 | <dt> |
413 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--icon-size" title="The “icon-size” property">XAppStatusIconInterface:icon-size</a>, object property in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
414 | </dt> | |
415 | <dd></dd> | |
416 | <dt> | |
391 | 417 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--label" title="The “label” property">XAppStatusIconInterface:label</a>, object property in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
392 | 418 | </dt> |
393 | 419 | <dd></dd> |
424 | 450 | </dt> |
425 | 451 | <dd></dd> |
426 | 452 | <dt> |
453 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-get-icon-size" title="xapp_status_icon_get_icon_size ()">xapp_status_icon_get_icon_size</a>, function in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> | |
454 | </dt> | |
455 | <dd></dd> | |
456 | <dt> | |
427 | 457 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-get-primary-menu" title="xapp_status_icon_get_primary_menu ()">xapp_status_icon_get_primary_menu</a>, function in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> |
428 | 458 | </dt> |
429 | 459 | <dd></dd> |
436 | 466 | </dt> |
437 | 467 | <dd></dd> |
438 | 468 | <dt> |
469 | <a class="link" href="XAppStatusIcon.html#xapp-status-icon-get-visible" title="xapp_status_icon_get_visible ()">xapp_status_icon_get_visible</a>, function in <a class="link" href="XAppStatusIcon.html" title="XAppStatusIcon">XAppStatusIcon</a> | |
470 | </dt> | |
471 | <dd></dd> | |
472 | <dt> | |
439 | 473 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-press" title="xapp_status_icon_interface_call_button_press ()">xapp_status_icon_interface_call_button_press</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
440 | 474 | </dt> |
441 | 475 | <dd></dd> |
460 | 494 | </dt> |
461 | 495 | <dd></dd> |
462 | 496 | <dt> |
497 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll" title="xapp_status_icon_interface_call_scroll ()">xapp_status_icon_interface_call_scroll</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
498 | </dt> | |
499 | <dd></dd> | |
500 | <dt> | |
501 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-finish" title="xapp_status_icon_interface_call_scroll_finish ()">xapp_status_icon_interface_call_scroll_finish</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
502 | </dt> | |
503 | <dd></dd> | |
504 | <dt> | |
505 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-sync" title="xapp_status_icon_interface_call_scroll_sync ()">xapp_status_icon_interface_call_scroll_sync</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
506 | </dt> | |
507 | <dd></dd> | |
508 | <dt> | |
463 | 509 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-button-press" title="xapp_status_icon_interface_complete_button_press ()">xapp_status_icon_interface_complete_button_press</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
464 | 510 | </dt> |
465 | 511 | <dd></dd> |
468 | 514 | </dt> |
469 | 515 | <dd></dd> |
470 | 516 | <dt> |
517 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-scroll" title="xapp_status_icon_interface_complete_scroll ()">xapp_status_icon_interface_complete_scroll</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
518 | </dt> | |
519 | <dd></dd> | |
520 | <dt> | |
471 | 521 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-dup-icon-name" title="xapp_status_icon_interface_dup_icon_name ()">xapp_status_icon_interface_dup_icon_name</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
472 | 522 | </dt> |
473 | 523 | <dd></dd> |
488 | 538 | </dt> |
489 | 539 | <dd></dd> |
490 | 540 | <dt> |
541 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-icon-size" title="xapp_status_icon_interface_get_icon_size ()">xapp_status_icon_interface_get_icon_size</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
542 | </dt> | |
543 | <dd></dd> | |
544 | <dt> | |
491 | 545 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-label" title="xapp_status_icon_interface_get_label ()">xapp_status_icon_interface_get_label</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
492 | 546 | </dt> |
493 | 547 | <dd></dd> |
540 | 594 | </dt> |
541 | 595 | <dd></dd> |
542 | 596 | <dt> |
597 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-icon-size" title="xapp_status_icon_interface_set_icon_size ()">xapp_status_icon_interface_set_icon_size</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> | |
598 | </dt> | |
599 | <dd></dd> | |
600 | <dt> | |
543 | 601 | <a class="link" href="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-label" title="xapp_status_icon_interface_set_label ()">xapp_status_icon_interface_set_label</a>, function in <a class="link" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton">XAppStatusIconInterfaceSkeleton</a> |
544 | 602 | </dt> |
545 | 603 | <dd></dd> |
613 | 671 | </dt> |
614 | 672 | <dd></dd> |
615 | 673 | <dt> |
674 | <a class="link" href="XAppMonitorBlanker.html#XAPP-TYPE-MONITOR-BLANKER:CAPS" title="XAPP_TYPE_MONITOR_BLANKER">XAPP_TYPE_MONITOR_BLANKER</a>, macro in <a class="link" href="XAppMonitorBlanker.html" title="XAppMonitorBlanker">XAppMonitorBlanker</a> | |
675 | </dt> | |
676 | <dd></dd> | |
677 | <dt> | |
616 | 678 | <a class="link" href="XAppPreferencesWindow.html#XAPP-TYPE-PREFERENCES-WINDOW:CAPS" title="XAPP_TYPE_PREFERENCES_WINDOW">XAPP_TYPE_PREFERENCES_WINDOW</a>, macro in <a class="link" href="XAppPreferencesWindow.html" title="XAppPreferencesWindow">XAppPreferencesWindow</a> |
617 | 679 | </dt> |
618 | 680 | <dd></dd> |
626 | 688 | <dd></dd> |
627 | 689 | <dt> |
628 | 690 | <a class="link" href="XAppStatusIconMonitor.html#XAPP-TYPE-STATUS-ICON-MONITOR:CAPS" title="XAPP_TYPE_STATUS_ICON_MONITOR">XAPP_TYPE_STATUS_ICON_MONITOR</a>, macro in <a class="link" href="XAppStatusIconMonitor.html" title="XAppStatusIconMonitor">XAppStatusIconMonitor</a> |
691 | </dt> | |
692 | <dd></dd> | |
693 | <a name="idxU"></a><h3 class="title">U</h3> | |
694 | <dt> | |
695 | <a class="link" href="libxapp-xapp-util.html#xapp-util-gpu-offload-supported" title="xapp_util_gpu_offload_supported ()">xapp_util_gpu_offload_supported</a>, function in <a class="link" href="libxapp-xapp-util.html" title="xapp-util">xapp-util</a> | |
629 | 696 | </dt> |
630 | 697 | <dd></dd> |
631 | 698 | </div> |
54 | 54 | <dt> |
55 | 55 | <span class="refentrytitle"><a href="XAppStatusIconInterfaceSkeleton.html">XAppStatusIconInterfaceSkeleton</a></span><span class="refpurpose"></span> |
56 | 56 | </dt> |
57 | <dt> | |
58 | <span class="refentrytitle"><a href="libxapp-xapp-util.html">xapp-util</a></span><span class="refpurpose"></span> | |
59 | </dt> | |
57 | 60 | </dl></div> |
58 | 61 | </div> |
59 | 62 | <div class="footer"> |
14 | 14 | <div> |
15 | 15 | <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">XApp Reference Manual</p></th></tr></table></div> |
16 | 16 | <div><p class="releaseinfo"> |
17 | xapp 1.6.2 | |
17 | xapp 1.8.5 | |
18 | 18 | </p></div> |
19 | 19 | </div> |
20 | 20 | <hr> |
54 | 54 | <dt> |
55 | 55 | <span class="refentrytitle"><a href="XAppStatusIconInterfaceSkeleton.html">XAppStatusIconInterfaceSkeleton</a></span><span class="refpurpose"></span> |
56 | 56 | </dt> |
57 | <dt> | |
58 | <span class="refentrytitle"><a href="libxapp-xapp-util.html">xapp-util</a></span><span class="refpurpose"></span> | |
59 | </dt> | |
57 | 60 | </dl></dd> |
58 | 61 | <dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt> |
59 | 62 | <dt><span class="index"><a href="api-index-full.html">API Index</a></span></dt> |
0 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
1 | <html> | |
2 | <head> | |
3 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
4 | <title>xapp-util: XApp Reference Manual</title> | |
5 | <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> | |
6 | <link rel="home" href="index.html" title="XApp Reference Manual"> | |
7 | <link rel="up" href="ch01.html" title="API reference"> | |
8 | <link rel="prev" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton"> | |
9 | <link rel="next" href="object-tree.html" title="Object Hierarchy"> | |
10 | <meta name="generator" content="GTK-Doc V1.27 (XML mode)"> | |
11 | <link rel="stylesheet" href="style.css" type="text/css"> | |
12 | </head> | |
13 | <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> | |
14 | <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle"> | |
15 | <td width="100%" align="left" class="shortcuts"> | |
16 | <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> | |
17 | <a href="#libxapp-xapp-util.description" class="shortcut">Description</a></span> | |
18 | </td> | |
19 | <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> | |
20 | <td><a accesskey="u" href="ch01.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td> | |
21 | <td><a accesskey="p" href="XAppStatusIconInterfaceSkeleton.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> | |
22 | <td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> | |
23 | </tr></table> | |
24 | <div class="refentry"> | |
25 | <a name="libxapp-xapp-util"></a><div class="titlepage"></div> | |
26 | <div class="refnamediv"><table width="100%"><tr> | |
27 | <td valign="top"> | |
28 | <h2><span class="refentrytitle"><a name="libxapp-xapp-util.top_of_page"></a>xapp-util</span></h2> | |
29 | <p>xapp-util</p> | |
30 | </td> | |
31 | <td class="gallery_image" valign="top" align="right"></td> | |
32 | </tr></table></div> | |
33 | <div class="refsect1"> | |
34 | <a name="libxapp-xapp-util.functions"></a><h2>Functions</h2> | |
35 | <div class="informaltable"><table class="informaltable" width="100%" border="0"> | |
36 | <colgroup> | |
37 | <col width="150px" class="functions_return"> | |
38 | <col class="functions_name"> | |
39 | </colgroup> | |
40 | <tbody><tr> | |
41 | <td class="function_type"> | |
42 | <a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
43 | </td> | |
44 | <td class="function_name"> | |
45 | <a class="link" href="libxapp-xapp-util.html#xapp-util-gpu-offload-supported" title="xapp_util_gpu_offload_supported ()">xapp_util_gpu_offload_supported</a> <span class="c_punctuation">()</span> | |
46 | </td> | |
47 | </tr></tbody> | |
48 | </table></div> | |
49 | </div> | |
50 | <div class="refsect1"> | |
51 | <a name="libxapp-xapp-util.description"></a><h2>Description</h2> | |
52 | </div> | |
53 | <div class="refsect1"> | |
54 | <a name="libxapp-xapp-util.functions_details"></a><h2>Functions</h2> | |
55 | <div class="refsect2"> | |
56 | <a name="xapp-util-gpu-offload-supported"></a><h3>xapp_util_gpu_offload_supported ()</h3> | |
57 | <pre class="programlisting"><a href="../glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> | |
58 | xapp_util_gpu_offload_supported (<em class="parameter"><code><span class="type">void</span></code></em>);</pre> | |
59 | <p>Performs a check to see if on-demand mode for discrete graphics | |
60 | is supported.</p> | |
61 | <div class="refsect3"> | |
62 | <a name="xapp-util-gpu-offload-supported.returns"></a><h4>Returns</h4> | |
63 | <p> <a href="../glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if supported.</p> | |
64 | </div> | |
65 | <p class="since">Since: 1.8</p> | |
66 | </div> | |
67 | </div> | |
68 | <div class="refsect1"> | |
69 | <a name="libxapp-xapp-util.other_details"></a><h2>Types and Values</h2> | |
70 | </div> | |
71 | </div> | |
72 | <div class="footer"> | |
73 | <hr>Generated by GTK-Doc V1.27</div> | |
74 | </body> | |
75 | </html>⏎ |
11 | 11 | <sub name="XAppStatusIcon" link="XAppStatusIcon.html"/> |
12 | 12 | <sub name="XAppStatusIconMonitor" link="XAppStatusIconMonitor.html"/> |
13 | 13 | <sub name="XAppStatusIconInterfaceSkeleton" link="XAppStatusIconInterfaceSkeleton.html"/> |
14 | <sub name="xapp-util" link="libxapp-xapp-util.html"/> | |
14 | 15 | </sub> |
15 | 16 | <sub name="Object Hierarchy" link="object-tree.html"/> |
16 | 17 | <sub name="API Index" link="api-index-full.html"/> |
87 | 88 | <keyword type="function" name="xapp_monitor_blanker_blank_other_monitors ()" link="XAppMonitorBlanker.html#xapp-monitor-blanker-blank-other-monitors"/> |
88 | 89 | <keyword type="function" name="xapp_monitor_blanker_unblank_monitors ()" link="XAppMonitorBlanker.html#xapp-monitor-blanker-unblank-monitors"/> |
89 | 90 | <keyword type="function" name="xapp_monitor_blanker_are_monitors_blanked ()" link="XAppMonitorBlanker.html#xapp-monitor-blanker-are-monitors-blanked"/> |
91 | <keyword type="macro" name="XAPP_TYPE_MONITOR_BLANKER" link="XAppMonitorBlanker.html#XAPP-TYPE-MONITOR-BLANKER:CAPS"/> | |
92 | <keyword type="struct" name="XAppMonitorBlanker" link="XAppMonitorBlanker.html#XAppMonitorBlanker-struct"/> | |
90 | 93 | <keyword type="function" name="xapp_preferences_window_new ()" link="XAppPreferencesWindow.html#xapp-preferences-window-new"/> |
91 | 94 | <keyword type="function" name="xapp_preferences_window_add_page ()" link="XAppPreferencesWindow.html#xapp-preferences-window-add-page"/> |
92 | 95 | <keyword type="function" name="xapp_preferences_window_add_button ()" link="XAppPreferencesWindow.html#xapp-preferences-window-add-button"/> |
103 | 106 | <keyword type="function" name="xapp_status_icon_new ()" link="XAppStatusIcon.html#xapp-status-icon-new" since="1.6"/> |
104 | 107 | <keyword type="function" name="xapp_status_icon_set_name ()" link="XAppStatusIcon.html#xapp-status-icon-set-name" since="1.6"/> |
105 | 108 | <keyword type="function" name="xapp_status_icon_set_icon_name ()" link="XAppStatusIcon.html#xapp-status-icon-set-icon-name" since="1.6"/> |
109 | <keyword type="function" name="xapp_status_icon_get_icon_size ()" link="XAppStatusIcon.html#xapp-status-icon-get-icon-size" since="1.8"/> | |
106 | 110 | <keyword type="function" name="xapp_status_icon_set_tooltip_text ()" link="XAppStatusIcon.html#xapp-status-icon-set-tooltip-text" since="1.6"/> |
107 | 111 | <keyword type="function" name="xapp_status_icon_set_label ()" link="XAppStatusIcon.html#xapp-status-icon-set-label" since="1.6"/> |
108 | 112 | <keyword type="function" name="xapp_status_icon_set_visible ()" link="XAppStatusIcon.html#xapp-status-icon-set-visible" since="1.6"/> |
113 | <keyword type="function" name="xapp_status_icon_get_visible ()" link="XAppStatusIcon.html#xapp-status-icon-get-visible" since="1.8.5"/> | |
109 | 114 | <keyword type="function" name="xapp_status_icon_set_primary_menu ()" link="XAppStatusIcon.html#xapp-status-icon-set-primary-menu" since="1.6"/> |
110 | 115 | <keyword type="function" name="xapp_status_icon_get_primary_menu ()" link="XAppStatusIcon.html#xapp-status-icon-get-primary-menu" since="1.6"/> |
111 | 116 | <keyword type="function" name="xapp_status_icon_set_secondary_menu ()" link="XAppStatusIcon.html#xapp-status-icon-set-secondary-menu" since="1.6"/> |
114 | 119 | <keyword type="function" name="xapp_status_icon_any_monitors ()" link="XAppStatusIcon.html#xapp-status-icon-any-monitors" since="1.6"/> |
115 | 120 | <keyword type="macro" name="XAPP_TYPE_STATUS_ICON" link="XAppStatusIcon.html#XAPP-TYPE-STATUS-ICON:CAPS"/> |
116 | 121 | <keyword type="enum" name="enum XAppStatusIconState" link="XAppStatusIcon.html#XAppStatusIconState"/> |
122 | <keyword type="enum" name="enum XAppScrollDirection" link="XAppStatusIcon.html#XAppScrollDirection"/> | |
117 | 123 | <keyword type="struct" name="XAppStatusIcon" link="XAppStatusIcon.html#XAppStatusIcon-struct"/> |
124 | <keyword type="property" name="The “icon-size” property" link="XAppStatusIcon.html#XAppStatusIcon--icon-size"/> | |
118 | 125 | <keyword type="property" name="The “primary-menu” property" link="XAppStatusIcon.html#XAppStatusIcon--primary-menu"/> |
119 | 126 | <keyword type="property" name="The “secondary-menu” property" link="XAppStatusIcon.html#XAppStatusIcon--secondary-menu"/> |
120 | 127 | <keyword type="signal" name="The “activate” signal" link="XAppStatusIcon.html#XAppStatusIcon-activate"/> |
121 | 128 | <keyword type="signal" name="The “button-press-event” signal" link="XAppStatusIcon.html#XAppStatusIcon-button-press-event"/> |
122 | 129 | <keyword type="signal" name="The “button-release-event” signal" link="XAppStatusIcon.html#XAppStatusIcon-button-release-event"/> |
130 | <keyword type="signal" name="The “scroll-event” signal" link="XAppStatusIcon.html#XAppStatusIcon-scroll-event"/> | |
123 | 131 | <keyword type="signal" name="The “state-changed” signal" link="XAppStatusIcon.html#XAppStatusIcon-state-changed"/> |
124 | 132 | <keyword type="function" name="xapp_status_icon_monitor_new ()" link="XAppStatusIconMonitor.html#xapp-status-icon-monitor-new" since="1.6"/> |
125 | 133 | <keyword type="function" name="xapp_status_icon_monitor_list_icons ()" link="XAppStatusIconMonitor.html#xapp-status-icon-monitor-list-icons" since="1.6"/> |
131 | 139 | <keyword type="function" name="xapp_status_icon_interface_override_properties ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-override-properties"/> |
132 | 140 | <keyword type="function" name="xapp_status_icon_interface_complete_button_press ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-button-press"/> |
133 | 141 | <keyword type="function" name="xapp_status_icon_interface_complete_button_release ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-button-release"/> |
142 | <keyword type="function" name="xapp_status_icon_interface_complete_scroll ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-complete-scroll"/> | |
134 | 143 | <keyword type="function" name="xapp_status_icon_interface_call_button_press ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-press"/> |
135 | 144 | <keyword type="function" name="xapp_status_icon_interface_call_button_press_finish ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-press-finish"/> |
136 | 145 | <keyword type="function" name="xapp_status_icon_interface_call_button_press_sync ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-press-sync"/> |
137 | 146 | <keyword type="function" name="xapp_status_icon_interface_call_button_release ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-release"/> |
138 | 147 | <keyword type="function" name="xapp_status_icon_interface_call_button_release_finish ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-release-finish"/> |
139 | 148 | <keyword type="function" name="xapp_status_icon_interface_call_button_release_sync ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-button-release-sync"/> |
149 | <keyword type="function" name="xapp_status_icon_interface_call_scroll ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll"/> | |
150 | <keyword type="function" name="xapp_status_icon_interface_call_scroll_finish ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-finish"/> | |
151 | <keyword type="function" name="xapp_status_icon_interface_call_scroll_sync ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-call-scroll-sync"/> | |
140 | 152 | <keyword type="function" name="xapp_status_icon_interface_get_name ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-name"/> |
141 | 153 | <keyword type="function" name="xapp_status_icon_interface_dup_name ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-dup-name"/> |
142 | 154 | <keyword type="function" name="xapp_status_icon_interface_set_name ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-name"/> |
151 | 163 | <keyword type="function" name="xapp_status_icon_interface_set_label ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-label"/> |
152 | 164 | <keyword type="function" name="xapp_status_icon_interface_get_visible ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-visible"/> |
153 | 165 | <keyword type="function" name="xapp_status_icon_interface_set_visible ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-visible"/> |
166 | <keyword type="function" name="xapp_status_icon_interface_get_icon_size ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-get-icon-size"/> | |
167 | <keyword type="function" name="xapp_status_icon_interface_set_icon_size ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-set-icon-size"/> | |
154 | 168 | <keyword type="function" name="xapp_status_icon_interface_proxy_new ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-proxy-new"/> |
155 | 169 | <keyword type="function" name="xapp_status_icon_interface_proxy_new_finish ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-proxy-new-finish"/> |
156 | 170 | <keyword type="function" name="xapp_status_icon_interface_proxy_new_sync ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-proxy-new-sync"/> |
159 | 173 | <keyword type="function" name="xapp_status_icon_interface_proxy_new_for_bus_sync ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-proxy-new-for-bus-sync"/> |
160 | 174 | <keyword type="function" name="xapp_status_icon_interface_skeleton_new ()" link="XAppStatusIconInterfaceSkeleton.html#xapp-status-icon-interface-skeleton-new"/> |
161 | 175 | <keyword type="property" name="The “icon-name” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--icon-name"/> |
176 | <keyword type="property" name="The “icon-size” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--icon-size"/> | |
162 | 177 | <keyword type="property" name="The “label” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--label"/> |
163 | 178 | <keyword type="property" name="The “name” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--name"/> |
164 | 179 | <keyword type="property" name="The “tooltip-text” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--tooltip-text"/> |
165 | 180 | <keyword type="property" name="The “visible” property" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface--visible"/> |
166 | 181 | <keyword type="signal" name="The “handle-button-press” signal" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-button-press"/> |
167 | 182 | <keyword type="signal" name="The “handle-button-release” signal" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-button-release"/> |
183 | <keyword type="signal" name="The “handle-scroll” signal" link="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface-handle-scroll"/> | |
184 | <keyword type="function" name="xapp_util_gpu_offload_supported ()" link="libxapp-xapp-util.html#xapp-util-gpu-offload-supported" since="1.8"/> | |
168 | 185 | <keyword type="constant" name="XAPP_ICON_SIZE_16" link="XAppIconChooserDialog.html#XAPP-ICON-SIZE-16:CAPS"/> |
169 | 186 | <keyword type="constant" name="XAPP_ICON_SIZE_22" link="XAppIconChooserDialog.html#XAPP-ICON-SIZE-22:CAPS"/> |
170 | 187 | <keyword type="constant" name="XAPP_ICON_SIZE_24" link="XAppIconChooserDialog.html#XAPP-ICON-SIZE-24:CAPS"/> |
174 | 191 | <keyword type="constant" name="XAPP_STATUS_ICON_STATE_NATIVE" link="XAppStatusIcon.html#XAPP-STATUS-ICON-STATE-NATIVE:CAPS"/> |
175 | 192 | <keyword type="constant" name="XAPP_STATUS_ICON_STATE_FALLBACK" link="XAppStatusIcon.html#XAPP-STATUS-ICON-STATE-FALLBACK:CAPS"/> |
176 | 193 | <keyword type="constant" name="XAPP_STATUS_ICON_STATE_NO_SUPPORT" link="XAppStatusIcon.html#XAPP-STATUS-ICON-STATE-NO-SUPPORT:CAPS"/> |
194 | <keyword type="constant" name="XAPP_SCROLL_UP" link="XAppStatusIcon.html#XAPP-SCROLL-UP:CAPS"/> | |
195 | <keyword type="constant" name="XAPP_SCROLL_DOWN" link="XAppStatusIcon.html#XAPP-SCROLL-DOWN:CAPS"/> | |
196 | <keyword type="constant" name="XAPP_SCROLL_LEFT" link="XAppStatusIcon.html#XAPP-SCROLL-LEFT:CAPS"/> | |
197 | <keyword type="constant" name="XAPP_SCROLL_RIGHT" link="XAppStatusIcon.html#XAPP-SCROLL-RIGHT:CAPS"/> | |
177 | 198 | </functions> |
178 | 199 | </book> |
5 | 5 | <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> |
6 | 6 | <link rel="home" href="index.html" title="XApp Reference Manual"> |
7 | 7 | <link rel="up" href="index.html" title="XApp Reference Manual"> |
8 | <link rel="prev" href="XAppStatusIconInterfaceSkeleton.html" title="XAppStatusIconInterfaceSkeleton"> | |
8 | <link rel="prev" href="libxapp-xapp-util.html" title="xapp-util"> | |
9 | 9 | <link rel="next" href="api-index-full.html" title="API Index"> |
10 | 10 | <meta name="generator" content="GTK-Doc V1.27 (XML mode)"> |
11 | 11 | <link rel="stylesheet" href="style.css" type="text/css"> |
15 | 15 | <td width="100%" align="left" class="shortcuts"></td> |
16 | 16 | <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td> |
17 | 17 | <td><img src="up-insensitive.png" width="16" height="16" border="0"></td> |
18 | <td><a accesskey="p" href="XAppStatusIconInterfaceSkeleton.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> | |
18 | <td><a accesskey="p" href="libxapp-xapp-util.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td> | |
19 | 19 | <td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td> |
20 | 20 | </tr></table> |
21 | 21 | <div class="chapter"> |
46 | 46 | <span class="lineart">╰──</span> <a class="link" href="XAppStatusIconInterfaceSkeleton.html#XAppStatusIconInterface">XAppStatusIconInterface</a> |
47 | 47 | <a href="/usr/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html">GEnum</a> |
48 | 48 | <span class="lineart">├──</span> <a class="link" href="XAppIconChooserDialog.html#XAppIconSize" title="enum XAppIconSize">XAppIconSize</a> |
49 | <span class="lineart">├──</span> <a class="link" href="XAppStatusIcon.html#XAppScrollDirection" title="enum XAppScrollDirection">XAppScrollDirection</a> | |
49 | 50 | <span class="lineart">╰──</span> <a class="link" href="XAppStatusIcon.html#XAppStatusIconState" title="enum XAppStatusIconState">XAppStatusIconState</a> |
50 | 51 | </pre> |
51 | 52 | </div> |
25 | 25 | <xi:include href="xml/xapp-status-icon.xml"/> |
26 | 26 | <xi:include href="xml/xapp-status-icon-monitor.xml"/> |
27 | 27 | <xi:include href="xml/xapp-statusicon-interface.xml"/> |
28 | <xi:include href="xml/xapp-util.xml"/> | |
28 | 29 | |
29 | 30 | </chapter> |
30 | 31 | <chapter id="object-tree"> |
0 | #!/usr/bin/python3 | |
1 | ||
2 | import sys | |
3 | import os | |
4 | import stat | |
5 | import subprocess | |
6 | ||
7 | content = "" | |
8 | ||
9 | mode = os.fstat(0).st_mode | |
10 | if stat.S_ISFIFO(mode): | |
11 | content = sys.stdin.read() | |
12 | elif stat.S_ISREG(mode): | |
13 | content = sys.stdin.read() | |
14 | else: | |
15 | args = sys.argv[1:] | |
16 | if len(args) == 1 and os.path.exists(args[0]): | |
17 | with open(args[0], 'r') as infile: | |
18 | content = infile.read() | |
19 | else: | |
20 | str_args = ' '.join(args) | |
21 | content = str_args | |
22 | ||
23 | if content != "": | |
24 | if os.path.exists('/usr/bin/fpaste'): | |
25 | p = subprocess.Popen(['/usr/bin/fpaste'], stdin=subprocess.PIPE) | |
26 | p.communicate(content.encode("UTF-8")) | |
27 | else: | |
28 | p = subprocess.Popen(['nc', 'termbin.com', '9999'], stdin=subprocess.PIPE) | |
29 | p.communicate(content.encode("UTF-8")) |
0 | #!/usr/bin/python3 | |
1 | ||
2 | import subprocess, os | |
3 | ||
4 | try: | |
5 | inxi = subprocess.Popen(['inxi', '-Fxxrzc0'], stdout=subprocess.PIPE) | |
6 | pastebin = subprocess.Popen(['/usr/bin/pastebin'], stdin=inxi.stdout, stdout=subprocess.PIPE) | |
7 | inxi.stdout.close() | |
8 | output = pastebin.communicate()[0] | |
9 | output = output.split()[0] # if we have more than one URL, only use the first one | |
10 | pastebin.wait() | |
11 | subprocess.call(['xdg-open', output]) | |
12 | except Exception as e: | |
13 | print ("An error occurred while uploading the system information:") | |
14 | print (e) | |
15 | print ("Please make sure you're connected to the Internet.") |
0 | #!/bin/bash | |
1 | ||
2 | # Author: Weitian Leung <weitianleung@gmail.com> | |
3 | # Version: 2.0 | |
4 | # License: GPL-3.0 | |
5 | # Description: set a picture as xfce4 wallpaper | |
6 | ||
7 | wallpaper=$1 | |
8 | ||
9 | # check image | |
10 | mime_type=`file --mime-type -b "$wallpaper"` | |
11 | if [[ ! "$mime_type" == image/* ]]; then | |
12 | echo "Invalid image" | |
13 | exit 1 | |
14 | fi | |
15 | ||
16 | # set to every monitor that contains image-path/last-image | |
17 | properties=$(xfconf-query -c xfce4-desktop -p /backdrop -l | grep -e "screen.*/monitor.*image-path$" -e "screen.*/monitor.*/last-image$") | |
18 | ||
19 | for property in $properties; do | |
20 | xfconf-query -c xfce4-desktop -p $property -s "$wallpaper" | |
21 | done |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | id="svg7384" | |
12 | height="16" | |
13 | width="16" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | sodipodi:docname="add-files-to-archive.svg"> | |
17 | <defs | |
18 | id="defs7667"> | |
19 | <linearGradient | |
20 | id="StandardGradient" | |
21 | gradientTransform="scale(0.9219544,1.0846523)" | |
22 | x1="11.998966" | |
23 | y1="0.92195445" | |
24 | x2="11.998966" | |
25 | y2="19.387045" | |
26 | gradientUnits="userSpaceOnUse"> | |
27 | <stop | |
28 | style="stop-color:#000000;stop-opacity:0.23529412;" | |
29 | offset="0" | |
30 | id="stop3283" /> | |
31 | <stop | |
32 | style="stop-color:#000000;stop-opacity:0.54901963;" | |
33 | offset="1" | |
34 | id="stop2651" /> | |
35 | </linearGradient> | |
36 | </defs> | |
37 | <sodipodi:namedview | |
38 | pagecolor="#ffffff" | |
39 | bordercolor="#666666" | |
40 | borderopacity="1" | |
41 | objecttolerance="10" | |
42 | gridtolerance="10" | |
43 | guidetolerance="10" | |
44 | inkscape:pageopacity="0" | |
45 | inkscape:pageshadow="2" | |
46 | inkscape:window-width="1920" | |
47 | inkscape:window-height="1026" | |
48 | id="namedview7665" | |
49 | showgrid="true" | |
50 | inkscape:zoom="32" | |
51 | inkscape:cx="9.1632285" | |
52 | inkscape:cy="5.6009653" | |
53 | inkscape:window-x="0" | |
54 | inkscape:window-y="0" | |
55 | inkscape:window-maximized="1" | |
56 | inkscape:current-layer="g4147" | |
57 | inkscape:snap-bbox="true" | |
58 | inkscape:bbox-paths="true" | |
59 | inkscape:snap-bbox-edge-midpoints="true" | |
60 | inkscape:bbox-nodes="true" | |
61 | inkscape:snap-bbox-midpoints="true"> | |
62 | <inkscape:grid | |
63 | type="xygrid" | |
64 | id="grid4138" /> | |
65 | </sodipodi:namedview> | |
66 | <metadata | |
67 | id="metadata90"> | |
68 | <rdf:RDF> | |
69 | <cc:Work | |
70 | rdf:about=""> | |
71 | <dc:format>image/svg+xml</dc:format> | |
72 | <dc:type | |
73 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
74 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
75 | </cc:Work> | |
76 | </rdf:RDF> | |
77 | </metadata> | |
78 | <title | |
79 | id="title9167">Gnome Symbolic Icon Theme</title> | |
80 | <g | |
81 | id="g4147" | |
82 | style="fill:#bebebe;fill-opacity:1;stroke:none" | |
83 | transform="matrix(1.3889016,0,0,1.3889016,-3.0103731,-3.5159478)"> | |
84 | <path | |
85 | inkscape:connector-curvature="0" | |
86 | style="display:inline;opacity:0.05;fill:#ffffff;fill-opacity:1;stroke:none" | |
87 | d="m 28.177211,21.847532 c -0.97181,0 -1.777484,0.805674 -1.777484,1.777484 l 0,0.359997 a 0.69597745,0.69597745 0 0 0 0.0225,0.157498 c -0.146651,0.03065 -0.27353,0.09259 -0.404996,0.157499 l 0,-0.292497 -1.439987,0 c -0.97181,0 -1.777484,0.805673 -1.777484,1.777483 l 0,3.599967 c 0,0.971811 0.805674,1.777484 1.777484,1.777484 l 1.439987,0 0,-0.292497 c 0.131466,0.06491 0.258345,0.126844 0.404996,0.157498 a 0.69597745,0.69597745 0 0 0 -0.0225,0.157499 l 0,0.359996 c 0,0.971811 0.805673,1.777484 1.777484,1.777484 l 4.31996,0 c 0.97181,0 1.777484,-0.805673 1.777484,-1.777484 l 0,-7.919927 c 0,-0.97181 -0.805674,-1.777484 -1.777484,-1.777484 l -4.31996,0 z m 0,0.697494 4.31996,0 c 0.598315,0 1.07999,0.481676 1.07999,1.07999 l 0,7.919927 c 0,0.598315 -0.481675,1.079991 -1.07999,1.079991 l -4.31996,0 c -0.598315,0 -1.07999,-0.481676 -1.07999,-1.079991 l 0,-0.359996 4.31996,0 c 0.398876,0 0.719993,-0.321117 0.719993,-0.719994 l 0,-5.759947 c 0,-0.398876 -0.321117,-0.719993 -0.719993,-0.719993 l -4.31996,0 0,-0.359997 c 0,-0.598314 0.481675,-1.07999 1.07999,-1.07999 z m 2.767474,2.137481 0.472496,0 c 0.02538,0 0.0225,-0.0029 0.0225,0.0225 l 0,5.759946 c 0,0.02538 0.0029,0.0225 -0.0225,0.0225 l -0.472496,0 c 0.254117,-0.307549 0.449996,-0.677704 0.449996,-1.10249 l 0,-3.599966 c 0,-0.424786 -0.195879,-0.794942 -0.449996,-1.10249 z m -6.367441,0.0225 1.439987,0 c -0.598315,0 -1.079991,0.481675 -1.079991,1.07999 l 0,0.719993 0,2.15998 0,0.719993 c 0,0.598315 0.481676,1.07999 1.079991,1.07999 l -1.439987,0 c -0.598315,0 -1.07999,-0.481675 -1.07999,-1.07999 l 0,-3.599966 c 0,-0.598315 0.481675,-1.07999 1.07999,-1.07999 z m 2.15998,0 2.879974,0 c 0.598314,0 1.07999,0.481675 1.07999,1.07999 l 0,3.599966 c 0,0.598315 -0.481676,1.07999 -1.07999,1.07999 l -2.879974,0 c -0.598315,0 -1.07999,-0.481675 -1.07999,-1.07999 l 0,-3.599966 c 0,-0.598315 0.481675,-1.07999 1.07999,-1.07999 z m 0.719993,1.439986 c -0.199438,0 -0.359996,0.160559 -0.359996,0.359997 l 0,2.15998 c 0,0.199438 0.160558,0.359997 0.359996,0.359997 l 1.439987,0 c 0.199438,0 0.359997,-0.160559 0.359997,-0.359997 l 0,-2.15998 c 0,-0.199438 -0.160559,-0.359997 -0.359997,-0.359997 l -1.439987,0 z m 0.337497,0.697494 0.764993,0 0,1.484986 -0.764993,0 0,-1.484986 z" | |
88 | id="path3091" /> | |
89 | <path | |
90 | inkscape:connector-curvature="0" | |
91 | style="display:inline;fill:#bebebe;fill-opacity:1;stroke:none" | |
92 | d="m 7.5673995,3.2514525 c -0.598315,0 -1.07999,0.481676 -1.07999,1.07999 l 0,0.359997 4.3199605,0 c 0.398876,0 0.719993,0.321117 0.719993,0.719993 l 0,5.7599475 c 0,0.398877 -0.321117,0.719994 -0.719993,0.719994 l -4.3199605,0 0,0.359996 c 0,0.598315 0.481675,1.079991 1.07999,1.079991 l 4.3199605,0 c 0.598315,0 1.07999,-0.481676 1.07999,-1.079991 l 0,-7.9199275 c 0,-0.598314 -0.481675,-1.07999 -1.07999,-1.07999 z m -3.599967,2.15998 c -0.598315,0 -1.07999,0.481676 -1.07999,1.07999 l 0,3.5999675 c 0,0.598315 0.481675,1.07999 1.07999,1.07999 l 1.439987,0 c -0.598315,0 -1.079991,-0.481675 -1.079991,-1.07999 l 0,-0.7199935 0,-2.15998 0,-0.719994 c 0,-0.598314 0.481676,-1.07999 1.079991,-1.07999 z m 2.15998,0 c -0.598315,0 -1.07999,0.481676 -1.07999,1.07999 l 0,3.5999675 c 0,0.598315 0.481675,1.07999 1.07999,1.07999 l 2.8799741,0 c 0.598314,0 1.0799904,-0.481675 1.0799904,-1.07999 l 0,-3.5999675 c 0,-0.598314 -0.4816764,-1.07999 -1.0799904,-1.07999 z m 0.719993,1.439987 1.439987,0 c 0.1994381,0 0.3599971,0.160559 0.3599971,0.359997 l 0,2.15998 c 0,0.199438 -0.160559,0.359997 -0.3599971,0.359997 l -1.439987,0 c -0.199438,0 -0.359996,-0.160559 -0.359996,-0.359997 l 0,-2.15998 c 0,-0.199438 0.160558,-0.359997 0.359996,-0.359997 z" | |
93 | id="path3708" | |
94 | sodipodi:nodetypes="sscsssscsccsssssssscsccscsssssssssssssssssss" /> | |
95 | </g> | |
96 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | id="svg7384" | |
12 | width="16" | |
13 | height="16" | |
14 | version="1.1" | |
15 | sodipodi:docname="emblem-documents-symbolic.svg" | |
16 | inkscape:version="0.92.3 (2405546, 2018-03-11)"> | |
17 | <defs | |
18 | id="defs14" /> | |
19 | <sodipodi:namedview | |
20 | pagecolor="#ffffff" | |
21 | bordercolor="#666666" | |
22 | borderopacity="1" | |
23 | objecttolerance="10" | |
24 | gridtolerance="10" | |
25 | guidetolerance="10" | |
26 | inkscape:pageopacity="0" | |
27 | inkscape:pageshadow="2" | |
28 | inkscape:window-width="1280" | |
29 | inkscape:window-height="745" | |
30 | id="namedview12" | |
31 | showgrid="true" | |
32 | inkscape:zoom="5.6568543" | |
33 | inkscape:cx="-6.9371761" | |
34 | inkscape:cy="-5.2987476" | |
35 | inkscape:window-x="0" | |
36 | inkscape:window-y="0" | |
37 | inkscape:window-maximized="1" | |
38 | inkscape:current-layer="svg7384"> | |
39 | <inkscape:grid | |
40 | type="xygrid" | |
41 | id="grid821" /> | |
42 | </sodipodi:namedview> | |
43 | <metadata | |
44 | id="metadata90"> | |
45 | <rdf:RDF> | |
46 | <cc:Work | |
47 | rdf:about=""> | |
48 | <dc:format>image/svg+xml</dc:format> | |
49 | <dc:type | |
50 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
51 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
52 | </cc:Work> | |
53 | </rdf:RDF> | |
54 | </metadata> | |
55 | <title | |
56 | id="title9167">Gnome Symbolic Icon Theme</title> | |
57 | <path | |
58 | style="color:#000000;text-indent:0;text-transform:none;fill:#bebebe;enable-background:new" | |
59 | d="M 3,1 C 1.9093,1 1,1.9093 1,3 v 9 c 0,1.0907 0.9093,2 2,2 H 8.7617188 C 8.2328109,13.46598 7.8737571,12.771785 7.7460938,12 H 3 V 3 h 10 v 5.0859375 c 1.001478,0.4913856 1.755803,1.4122381 2,2.5273435 V 3 C 15,1.9093 14.0907,1 13,1 Z" | |
60 | id="rect4513" | |
61 | inkscape:connector-curvature="0" | |
62 | sodipodi:nodetypes="sssscccccccsss" /> | |
63 | <rect | |
64 | style="color:#000000;fill:#bebebe;enable-background:new" | |
65 | ry="0.46610171" | |
66 | rx="0.5" | |
67 | height="1" | |
68 | width="8" | |
69 | y="6" | |
70 | x="4" | |
71 | id="rect5313-6" /> | |
72 | <rect | |
73 | style="color:#000000;fill:#bebebe;enable-background:new" | |
74 | ry="0.46610171" | |
75 | rx="0.5" | |
76 | height="1" | |
77 | width="8" | |
78 | y="4" | |
79 | x="4" | |
80 | id="rect5313-6-3" /> | |
81 | <path | |
82 | style="color:#000000;fill:#bebebe;enable-background:new" | |
83 | d="M 4.5 8 C 4.223 8 4 8.2085765 4 8.4667969 L 4 8.5332031 C 4 8.7914235 4.223 9 4.5 9 L 8.5957031 9 C 8.9617415 8.5750371 9.4121167 8.2248859 9.9335938 8 L 4.5 8 z " | |
84 | id="rect5313-6-6" /> | |
85 | <path | |
86 | style="color:#000000;fill:#bebebe;enable-background:new" | |
87 | d="M 4.5 10 C 4.223 10 4 10.208577 4 10.466797 L 4 10.533203 C 4 10.791423 4.223 11 4.5 11 L 7.7265625 11 C 7.7649667 10.651351 7.8376304 10.313198 7.9667969 10 L 4.5 10 z " | |
88 | id="rect5313-6-7" /> | |
89 | <path | |
90 | inkscape:connector-curvature="0" | |
91 | d="m 11.373638,8.6861376 c -1.4956002,0 -2.7187502,1.22315 -2.7187502,2.7187504 0,1.4956 1.22315,2.71875 2.7187502,2.71875 0.4871,0 0.94729,-0.14835 1.34375,-0.375 a 0.750075,0.750075 0 0 0 0.15625,0.21875 l 1.84375,1.8125 a 0.75130096,0.75130096 0 1 0 1.0625,-1.0625 l -1.84375,-1.8125 a 0.750075,0.750075 0 0 0 -0.21875,-0.15625 c 0.22665,-0.39646 0.375,-0.85664 0.375,-1.34375 0,-1.4956004 -1.22315,-2.7187504 -2.71875,-2.7187504 z m 0,1 c 0.95516,0 1.71875,0.7635904 1.71875,1.7187504 0,0.95516 -0.76359,1.71875 -1.71875,1.71875 -0.95516,0 -1.7187502,-0.76359 -1.7187502,-1.71875 0,-0.95516 0.7635902,-1.7187504 1.7187502,-1.7187504 z" | |
92 | id="path27332" | |
93 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:new" /> | |
94 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | id="svg7384" | |
12 | height="16" | |
13 | width="16" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | sodipodi:docname="extract-archive.svg"> | |
17 | <defs | |
18 | id="defs7667"> | |
19 | <linearGradient | |
20 | id="StandardGradient" | |
21 | gradientTransform="scale(0.9219544,1.0846523)" | |
22 | x1="11.998966" | |
23 | y1="0.92195445" | |
24 | x2="11.998966" | |
25 | y2="19.387045" | |
26 | gradientUnits="userSpaceOnUse"> | |
27 | <stop | |
28 | style="stop-color:#000000;stop-opacity:0.23529412;" | |
29 | offset="0" | |
30 | id="stop3283" /> | |
31 | <stop | |
32 | style="stop-color:#000000;stop-opacity:0.54901963;" | |
33 | offset="1" | |
34 | id="stop2651" /> | |
35 | </linearGradient> | |
36 | </defs> | |
37 | <sodipodi:namedview | |
38 | pagecolor="#ffffff" | |
39 | bordercolor="#666666" | |
40 | borderopacity="1" | |
41 | objecttolerance="10" | |
42 | gridtolerance="10" | |
43 | guidetolerance="10" | |
44 | inkscape:pageopacity="0" | |
45 | inkscape:pageshadow="2" | |
46 | inkscape:window-width="1920" | |
47 | inkscape:window-height="1026" | |
48 | id="namedview7665" | |
49 | showgrid="true" | |
50 | inkscape:zoom="11.313708" | |
51 | inkscape:cx="22.097824" | |
52 | inkscape:cy="3.7621969" | |
53 | inkscape:window-x="0" | |
54 | inkscape:window-y="0" | |
55 | inkscape:window-maximized="1" | |
56 | inkscape:current-layer="g4147" | |
57 | inkscape:snap-bbox="true" | |
58 | inkscape:bbox-paths="true" | |
59 | inkscape:snap-bbox-edge-midpoints="true" | |
60 | inkscape:bbox-nodes="true" | |
61 | inkscape:snap-bbox-midpoints="true"> | |
62 | <inkscape:grid | |
63 | type="xygrid" | |
64 | id="grid4138" /> | |
65 | </sodipodi:namedview> | |
66 | <metadata | |
67 | id="metadata90"> | |
68 | <rdf:RDF> | |
69 | <cc:Work | |
70 | rdf:about=""> | |
71 | <dc:format>image/svg+xml</dc:format> | |
72 | <dc:type | |
73 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
74 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
75 | </cc:Work> | |
76 | </rdf:RDF> | |
77 | </metadata> | |
78 | <title | |
79 | id="title9167">Gnome Symbolic Icon Theme</title> | |
80 | <g | |
81 | id="g4147" | |
82 | style="fill:#bebebe;fill-opacity:1;stroke:none" | |
83 | transform="matrix(1.3889016,0,0,1.3889016,-3.0103731,-3.5159478)"> | |
84 | <path | |
85 | inkscape:connector-curvature="0" | |
86 | style="display:inline;fill:#bebebe;fill-opacity:1;stroke:none" | |
87 | d="m 9.3673833,2.5314592 -3.599967,4.3199598 2.15998,0 0,3.599968 2.8799737,0 0,-3.599968 2.159981,0 z M 3.9674321,7.571413 c -0.5983146,0 -1.0799906,0.481675 -1.0799906,1.07999 l 0,3.599967 c 0,0.598314 0.481676,1.07999 1.0799906,1.07999 l 7.9199289,0 c 0.598315,0 1.07999,-0.481676 1.07999,-1.07999 l 0,-3.599967 c 0,-0.598315 -0.481675,-1.07999 -1.07999,-1.07999 l -0.359997,0 0,1.7999834 0,1.0799896 0,1.079991 c 0,0.199438 -0.160559,0.359996 -0.359997,0.359996 l -6.4799417,0 c -0.199438,0 -0.359996,-0.160558 -0.359996,-0.359996 l 0,-2.1599806 c 0,-0.1994384 0.160558,-0.3599964 0.359996,-0.3599964 l 2.519977,0 0,-1.439987 z" | |
88 | id="Symbol" | |
89 | sodipodi:nodetypes="ccccccccsssssssscccssssssccs" /> | |
90 | </g> | |
91 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | id="svg7384" | |
12 | height="16" | |
13 | width="16" | |
14 | version="1.1" | |
15 | inkscape:version="0.92.3 (2405546, 2018-03-11)" | |
16 | sodipodi:docname="media-mount-symbolic.svg"> | |
17 | <defs | |
18 | id="defs7667" /> | |
19 | <sodipodi:namedview | |
20 | pagecolor="#ffffff" | |
21 | bordercolor="#666666" | |
22 | borderopacity="1" | |
23 | objecttolerance="10" | |
24 | gridtolerance="10" | |
25 | guidetolerance="10" | |
26 | inkscape:pageopacity="0" | |
27 | inkscape:pageshadow="2" | |
28 | inkscape:window-width="1280" | |
29 | inkscape:window-height="745" | |
30 | id="namedview7665" | |
31 | showgrid="true" | |
32 | inkscape:zoom="16" | |
33 | inkscape:cx="6.9181492" | |
34 | inkscape:cy="4.2111319" | |
35 | inkscape:window-x="0" | |
36 | inkscape:window-y="0" | |
37 | inkscape:window-maximized="0" | |
38 | inkscape:current-layer="g4147" | |
39 | inkscape:snap-bbox="true" | |
40 | inkscape:bbox-paths="true" | |
41 | inkscape:snap-bbox-edge-midpoints="true" | |
42 | inkscape:bbox-nodes="true" | |
43 | inkscape:snap-bbox-midpoints="true"> | |
44 | <inkscape:grid | |
45 | type="xygrid" | |
46 | id="grid4138" /> | |
47 | </sodipodi:namedview> | |
48 | <metadata | |
49 | id="metadata90"> | |
50 | <rdf:RDF> | |
51 | <cc:Work | |
52 | rdf:about=""> | |
53 | <dc:format>image/svg+xml</dc:format> | |
54 | <dc:type | |
55 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
56 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
57 | </cc:Work> | |
58 | </rdf:RDF> | |
59 | </metadata> | |
60 | <title | |
61 | id="title9167">Gnome Symbolic Icon Theme</title> | |
62 | <g | |
63 | id="g4147" | |
64 | style="fill:#bebebe;fill-opacity:1;stroke:none" | |
65 | transform="matrix(1.3889016,0,0,1.3889016,-3.0103731,-3.5159478)"> | |
66 | <g | |
67 | id="g4551"> | |
68 | <path | |
69 | inkscape:connector-curvature="0" | |
70 | d="M 12.247433,10.451386 H 3.6075116 v 1.439987 h 8.6399214 z" | |
71 | id="path3807-1-1-9-3-0-9" | |
72 | sodipodi:nodetypes="ccccc" | |
73 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1.43998682;marker:none;enable-background:accumulate" /> | |
74 | <path | |
75 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.43998682;marker:none;enable-background:accumulate" | |
76 | sodipodi:nodetypes="sccccccccccs" | |
77 | id="path3807-1-1-9-8-4" | |
78 | d="m 7.927328,9.0113995 c -0.1915038,0 -0.3838788,-0.064151 -0.5174952,-0.2024982 L 3.8098657,5.2089343 C 3.6974028,5.0943905 3.6246474,4.9411687 3.6073676,4.7814382 V 4.691439 3.9714456 H 12.247289 V 4.691439 4.781438 c -0.01728,0.1597305 -0.09004,0.3129523 -0.202499,0.4274961 L 8.4448233,8.8089013 C 8.3112069,8.9472265 8.1188319,9.0113995 7.927328,9.0113995 Z" | |
79 | inkscape:connector-curvature="0" /> | |
80 | </g> | |
81 | </g> | |
82 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-bottom-pane-symbolic.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="3.5498953" | |
36 | inkscape:cy="7.8173353" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="999" | |
58 | inkscape:window-maximized="1" | |
59 | inkscape:window-width="1888" | |
60 | inkscape:window-x="32" | |
61 | inkscape:window-y="27" | |
62 | inkscape:zoom="22.627417"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="80.00005" | |
68 | originy="-72.98918" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(80.00005,72.98918)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -79,-72 0,0.5 0,13.5 14,0 0,-14 -14,0 z m 1,1 12,0 0,12 -12,0 0,-12 z" | |
88 | id="rect8495" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1" | |
92 | id="rect8512" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | width="12" | |
95 | x="-78" | |
96 | y="-63" /> | |
97 | </g> | |
98 | <g | |
99 | inkscape:groupmode="layer" | |
100 | id="layer9" | |
101 | inkscape:label="apps" | |
102 | style="display:inline" | |
103 | transform="translate(-161.00015,-144.01082)" /> | |
104 | <g | |
105 | inkscape:groupmode="layer" | |
106 | id="layer1" | |
107 | inkscape:label="autocomplete" | |
108 | transform="translate(80.00005,72.98918)" /> | |
109 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-left-pane-symbolic-rtl.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="5.4393016" | |
36 | inkscape:cy="7.1041334" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="798" | |
58 | inkscape:window-maximized="0" | |
59 | inkscape:window-width="1212" | |
60 | inkscape:window-x="180" | |
61 | inkscape:window-y="135" | |
62 | inkscape:zoom="11.313709"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="100.00004" | |
68 | originy="-72.989178" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(100.00004,72.989178)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -98.988281,-71.988281 0.5,0 13.5,0 0,14 -14,0 0,-14 z m 1,1 0,12 12,0 0,-12 -12,0 z" | |
88 | id="rect8530" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1.0135117" | |
92 | id="rect8532" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | transform="matrix(0,1,1,0,0,0)" | |
95 | width="12" | |
96 | x="-71" | |
97 | y="-89.976562" /> | |
98 | </g> | |
99 | <g | |
100 | inkscape:groupmode="layer" | |
101 | id="layer9" | |
102 | inkscape:label="apps" | |
103 | style="display:inline" | |
104 | transform="translate(-141.00016,-144.01082)" /> | |
105 | <g | |
106 | inkscape:groupmode="layer" | |
107 | id="layer1" | |
108 | inkscape:label="autocomplete" | |
109 | transform="translate(100.00004,72.989178)" /> | |
110 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-left-pane-symbolic.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="2.9409921" | |
36 | inkscape:cy="7.0939359" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="999" | |
58 | inkscape:window-maximized="1" | |
59 | inkscape:window-width="1888" | |
60 | inkscape:window-x="32" | |
61 | inkscape:window-y="27" | |
62 | inkscape:zoom="32"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="100.00004" | |
68 | originy="-72.989178" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(100.00004,72.989178)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -84.988281,-71.988281 -0.5,0 -13.5,0 0,14 14,0 0,-14 z m -1,1 0,12 -12,0 0,-12 12,0 z" | |
88 | id="rect8530" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1.0135117" | |
92 | id="rect8532" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | transform="matrix(0,1,-1,0,0,0)" | |
95 | width="12" | |
96 | x="-71" | |
97 | y="94" /> | |
98 | </g> | |
99 | <g | |
100 | inkscape:groupmode="layer" | |
101 | id="layer9" | |
102 | inkscape:label="apps" | |
103 | style="display:inline" | |
104 | transform="translate(-141.00016,-144.01082)" /> | |
105 | <g | |
106 | inkscape:groupmode="layer" | |
107 | id="layer1" | |
108 | inkscape:label="autocomplete" | |
109 | transform="translate(100.00004,72.989178)" /> | |
110 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-left-pane-symbolic.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="2.9409921" | |
36 | inkscape:cy="7.0939359" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="999" | |
58 | inkscape:window-maximized="1" | |
59 | inkscape:window-width="1888" | |
60 | inkscape:window-x="32" | |
61 | inkscape:window-y="27" | |
62 | inkscape:zoom="32"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="100.00004" | |
68 | originy="-72.989178" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(100.00004,72.989178)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -84.988281,-71.988281 -0.5,0 -13.5,0 0,14 14,0 0,-14 z m -1,1 0,12 -12,0 0,-12 12,0 z" | |
88 | id="rect8530" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1.0135117" | |
92 | id="rect8532" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | transform="matrix(0,1,-1,0,0,0)" | |
95 | width="12" | |
96 | x="-71" | |
97 | y="94" /> | |
98 | </g> | |
99 | <g | |
100 | inkscape:groupmode="layer" | |
101 | id="layer9" | |
102 | inkscape:label="apps" | |
103 | style="display:inline" | |
104 | transform="translate(-141.00016,-144.01082)" /> | |
105 | <g | |
106 | inkscape:groupmode="layer" | |
107 | id="layer1" | |
108 | inkscape:label="autocomplete" | |
109 | transform="translate(100.00004,72.989178)" /> | |
110 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-right-pane-symbolic.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="5.4393016" | |
36 | inkscape:cy="7.1041334" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="798" | |
58 | inkscape:window-maximized="0" | |
59 | inkscape:window-width="1212" | |
60 | inkscape:window-x="180" | |
61 | inkscape:window-y="135" | |
62 | inkscape:zoom="11.313709"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="100.00004" | |
68 | originy="-72.989178" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(100.00004,72.989178)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -98.988281,-71.988281 0.5,0 13.5,0 0,14 -14,0 0,-14 z m 1,1 0,12 12,0 0,-12 -12,0 z" | |
88 | id="rect8530" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1.0135117" | |
92 | id="rect8532" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | transform="matrix(0,1,1,0,0,0)" | |
95 | width="12" | |
96 | x="-71" | |
97 | y="-89.976562" /> | |
98 | </g> | |
99 | <g | |
100 | inkscape:groupmode="layer" | |
101 | id="layer9" | |
102 | inkscape:label="apps" | |
103 | style="display:inline" | |
104 | transform="translate(-141.00016,-144.01082)" /> | |
105 | <g | |
106 | inkscape:groupmode="layer" | |
107 | id="layer1" | |
108 | inkscape:label="autocomplete" | |
109 | transform="translate(100.00004,72.989178)" /> | |
110 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
10 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
11 | sodipodi:docname="view-top-pane-symbolic.svg" | |
12 | height="16" | |
13 | id="svg7384" | |
14 | version="1.1" | |
15 | inkscape:version="0.91 r13725" | |
16 | width="16"> | |
17 | <metadata | |
18 | id="metadata90"> | |
19 | <rdf:RDF> | |
20 | <cc:Work | |
21 | rdf:about=""> | |
22 | <dc:format>image/svg+xml</dc:format> | |
23 | <dc:type | |
24 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
25 | <dc:title>Gnome Symbolic Icon Theme</dc:title> | |
26 | </cc:Work> | |
27 | </rdf:RDF> | |
28 | </metadata> | |
29 | <sodipodi:namedview | |
30 | inkscape:bbox-nodes="true" | |
31 | inkscape:bbox-paths="true" | |
32 | bordercolor="#666666" | |
33 | borderopacity="1" | |
34 | inkscape:current-layer="layer2" | |
35 | inkscape:cx="7.3007285" | |
36 | inkscape:cy="7.728947" | |
37 | gridtolerance="10" | |
38 | inkscape:guide-bbox="true" | |
39 | guidetolerance="10" | |
40 | id="namedview88" | |
41 | inkscape:object-nodes="false" | |
42 | inkscape:object-paths="false" | |
43 | objecttolerance="10" | |
44 | pagecolor="#555753" | |
45 | inkscape:pageopacity="1" | |
46 | inkscape:pageshadow="2" | |
47 | showborder="false" | |
48 | showgrid="true" | |
49 | showguides="true" | |
50 | inkscape:snap-bbox="true" | |
51 | inkscape:snap-bbox-midpoints="false" | |
52 | inkscape:snap-global="true" | |
53 | inkscape:snap-grids="true" | |
54 | inkscape:snap-nodes="false" | |
55 | inkscape:snap-others="false" | |
56 | inkscape:snap-to-guides="true" | |
57 | inkscape:window-height="643" | |
58 | inkscape:window-maximized="0" | |
59 | inkscape:window-width="1019" | |
60 | inkscape:window-x="267" | |
61 | inkscape:window-y="246" | |
62 | inkscape:zoom="22.627417"> | |
63 | <inkscape:grid | |
64 | empspacing="2" | |
65 | enabled="true" | |
66 | id="grid4866" | |
67 | originx="80.00005" | |
68 | originy="-72.98918" | |
69 | snapvisiblegridlinesonly="true" | |
70 | spacingx="1px" | |
71 | spacingy="1px" | |
72 | type="xygrid" | |
73 | visible="true" /> | |
74 | </sodipodi:namedview> | |
75 | <title | |
76 | id="title9167">Gnome Symbolic Icon Theme</title> | |
77 | <defs | |
78 | id="defs7386" /> | |
79 | <g | |
80 | inkscape:groupmode="layer" | |
81 | id="layer2" | |
82 | inkscape:label="actions" | |
83 | style="display:inline" | |
84 | transform="translate(80.00005,72.98918)"> | |
85 | <path | |
86 | inkscape:connector-curvature="0" | |
87 | d="m -79,-58 0,-0.5 0,-13.5 14,0 0,14 -14,0 z m 1,-1 12,0 0,-12 -12,0 0,12 z" | |
88 | id="rect8495" | |
89 | style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" /> | |
90 | <rect | |
91 | height="1" | |
92 | id="rect8512" | |
93 | style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#bebebe;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" | |
94 | width="12" | |
95 | x="-78" | |
96 | y="67" | |
97 | transform="scale(1,-1)" /> | |
98 | </g> | |
99 | <g | |
100 | inkscape:groupmode="layer" | |
101 | id="layer9" | |
102 | inkscape:label="apps" | |
103 | style="display:inline" | |
104 | transform="translate(-161.00015,-144.01082)" /> | |
105 | <g | |
106 | inkscape:groupmode="layer" | |
107 | id="layer1" | |
108 | inkscape:label="autocomplete" | |
109 | transform="translate(80.00005,72.98918)" /> | |
110 | </svg> |
+0
-189
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:xlink="http://www.w3.org/1999/xlink" | |
10 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
11 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
12 | width="16" | |
13 | height="16" | |
14 | id="svg2" | |
15 | sodipodi:version="0.32" | |
16 | inkscape:version="0.91 r13725" | |
17 | version="1.0" | |
18 | sodipodi:docname="xapp-go-history-previous-symbolic.svg" | |
19 | inkscape:output_extension="org.inkscape.output.svg.inkscape"> | |
20 | <defs | |
21 | id="defs4"> | |
22 | <inkscape:perspective | |
23 | sodipodi:type="inkscape:persp3d" | |
24 | inkscape:vp_x="0 : 8 : 1" | |
25 | inkscape:vp_y="0 : 1000 : 0" | |
26 | inkscape:vp_z="16 : 8 : 1" | |
27 | inkscape:persp3d-origin="8 : 5.3333333 : 1" | |
28 | id="perspective18" /> | |
29 | <linearGradient | |
30 | id="StandardGradient" | |
31 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
32 | x1="7.6386113" | |
33 | y1="3.2598698" | |
34 | x2="7.6386113" | |
35 | y2="14.22356" | |
36 | gradientUnits="userSpaceOnUse"> | |
37 | <stop | |
38 | id="stop3284" | |
39 | offset="0" | |
40 | style="stop-color:#000000;stop-opacity:0.86274511;" /> | |
41 | <stop | |
42 | id="stop3286" | |
43 | offset="1" | |
44 | style="stop-color:#000000;stop-opacity:0.47058824;" /> | |
45 | </linearGradient> | |
46 | <inkscape:perspective | |
47 | id="perspective3648" | |
48 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | |
49 | inkscape:vp_z="1 : 0.5 : 1" | |
50 | inkscape:vp_y="0 : 1000 : 0" | |
51 | inkscape:vp_x="0 : 0.5 : 1" | |
52 | sodipodi:type="inkscape:persp3d" /> | |
53 | <linearGradient | |
54 | inkscape:collect="always" | |
55 | xlink:href="#StandardGradient" | |
56 | id="linearGradient3626" | |
57 | gradientUnits="userSpaceOnUse" | |
58 | gradientTransform="matrix(-1.0923124,0,0,0.915489,-3.96875,0)" | |
59 | x1="7.6386113" | |
60 | y1="3.2598698" | |
61 | x2="7.6386113" | |
62 | y2="14.22356" /> | |
63 | <clipPath | |
64 | clipPathUnits="userSpaceOnUse" | |
65 | id="clipPath3633"> | |
66 | <path | |
67 | style="fill:#ff00ff;fill-opacity:1;stroke:none;display:inline" | |
68 | d="m -20,0 0,16 16,0 0,-16 -16,0 z m 10.03125,3 0,2.96875 3.96875,0 0,4.0625 -3.96875,0 0,2.96875 -8,-5 8,-5 z" | |
69 | id="path3635" /> | |
70 | </clipPath> | |
71 | <linearGradient | |
72 | inkscape:collect="always" | |
73 | xlink:href="#StandardGradient" | |
74 | id="linearGradient4469" | |
75 | gradientUnits="userSpaceOnUse" | |
76 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
77 | x1="7.6386113" | |
78 | y1="3.2598698" | |
79 | x2="7.6386113" | |
80 | y2="14.22356" /> | |
81 | <linearGradient | |
82 | inkscape:collect="always" | |
83 | xlink:href="#StandardGradient" | |
84 | id="linearGradient4473" | |
85 | gradientUnits="userSpaceOnUse" | |
86 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
87 | x1="7.6386113" | |
88 | y1="3.2598698" | |
89 | x2="7.6386113" | |
90 | y2="14.22356" /> | |
91 | </defs> | |
92 | <sodipodi:namedview | |
93 | id="base" | |
94 | pagecolor="#047a7c" | |
95 | bordercolor="#9a9a9a" | |
96 | borderopacity="1" | |
97 | inkscape:pageopacity="0" | |
98 | inkscape:pageshadow="2" | |
99 | inkscape:zoom="35.157114" | |
100 | inkscape:cx="5.5910016" | |
101 | inkscape:cy="8.4322583" | |
102 | inkscape:document-units="px" | |
103 | inkscape:current-layer="layer4" | |
104 | showgrid="true" | |
105 | inkscape:showpageshadow="true" | |
106 | showguides="true" | |
107 | inkscape:guide-bbox="true" | |
108 | inkscape:window-width="1559" | |
109 | inkscape:window-height="968" | |
110 | inkscape:window-x="357" | |
111 | inkscape:window-y="18" | |
112 | inkscape:window-maximized="0" | |
113 | inkscape:snap-bbox="true" | |
114 | inkscape:bbox-paths="true" | |
115 | inkscape:snap-bbox-edge-midpoints="true" | |
116 | inkscape:bbox-nodes="true" | |
117 | inkscape:snap-bbox-midpoints="true"> | |
118 | <sodipodi:guide | |
119 | orientation="1,0" | |
120 | position="0,112" | |
121 | id="guide2383" /> | |
122 | <sodipodi:guide | |
123 | orientation="0,1" | |
124 | position="26.278146,128" | |
125 | id="guide2385" /> | |
126 | <sodipodi:guide | |
127 | orientation="1,0" | |
128 | position="128,54.082119" | |
129 | id="guide2387" /> | |
130 | <sodipodi:guide | |
131 | orientation="0,1" | |
132 | position="78.156291,0" | |
133 | id="guide2389" /> | |
134 | <inkscape:grid | |
135 | type="xygrid" | |
136 | id="grid3672" | |
137 | visible="true" | |
138 | enabled="true" | |
139 | empspacing="5" | |
140 | snapvisiblegridlinesonly="true" /> | |
141 | </sodipodi:namedview> | |
142 | <metadata | |
143 | id="metadata7"> | |
144 | <rdf:RDF> | |
145 | <cc:Work | |
146 | rdf:about=""> | |
147 | <dc:format>image/svg+xml</dc:format> | |
148 | <dc:type | |
149 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
150 | <dc:title></dc:title> | |
151 | </cc:Work> | |
152 | </rdf:RDF> | |
153 | </metadata> | |
154 | <g | |
155 | inkscape:groupmode="layer" | |
156 | id="layer4" | |
157 | inkscape:label="Arrow" | |
158 | style="display:inline"> | |
159 | <path | |
160 | style="display:inline;fill:#bebebe;fill-opacity:1;stroke:none" | |
161 | d="m 10.028195,1.9843776 -8.0125701,5.0027051 8.0125701,5.0285443 0,-2.9948184 3.95618,0 0,-4.043966 -3.95618,0.00753 0,-3 z" | |
162 | id="Symbol" | |
163 | sodipodi:nodetypes="cccccccc" | |
164 | inkscape:label="#path2493" | |
165 | inkscape:connector-curvature="0" /> | |
166 | <rect | |
167 | style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
168 | id="rect4149" | |
169 | width="2" | |
170 | height="2" | |
171 | x="2" | |
172 | y="13" /> | |
173 | <rect | |
174 | style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
175 | id="rect4149-3" | |
176 | width="2" | |
177 | height="2" | |
178 | x="7" | |
179 | y="13" /> | |
180 | <rect | |
181 | style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
182 | id="rect4149-6" | |
183 | width="2" | |
184 | height="2" | |
185 | x="12" | |
186 | y="13" /> | |
187 | </g> | |
188 | </svg> |
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:xlink="http://www.w3.org/1999/xlink" | |
10 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
11 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
12 | width="16" | |
13 | height="16" | |
14 | id="svg2" | |
15 | sodipodi:version="0.32" | |
16 | inkscape:version="0.91 r13725" | |
17 | version="1.0" | |
18 | sodipodi:docname="xapp-go-history-next-symbolic.svg" | |
19 | inkscape:output_extension="org.inkscape.output.svg.inkscape"> | |
20 | <defs | |
21 | id="defs4"> | |
22 | <inkscape:perspective | |
23 | sodipodi:type="inkscape:persp3d" | |
24 | inkscape:vp_x="0 : 8 : 1" | |
25 | inkscape:vp_y="0 : 1000 : 0" | |
26 | inkscape:vp_z="16 : 8 : 1" | |
27 | inkscape:persp3d-origin="8 : 5.3333333 : 1" | |
28 | id="perspective18" /> | |
29 | <linearGradient | |
30 | id="StandardGradient" | |
31 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
32 | x1="7.6386113" | |
33 | y1="3.2598698" | |
34 | x2="7.6386113" | |
35 | y2="14.22356" | |
36 | gradientUnits="userSpaceOnUse"> | |
37 | <stop | |
38 | id="stop3284" | |
39 | offset="0" | |
40 | style="stop-color:#000000;stop-opacity:0.86274511;" /> | |
41 | <stop | |
42 | id="stop3286" | |
43 | offset="1" | |
44 | style="stop-color:#000000;stop-opacity:0.47058824;" /> | |
45 | </linearGradient> | |
46 | <inkscape:perspective | |
47 | id="perspective3648" | |
48 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | |
49 | inkscape:vp_z="1 : 0.5 : 1" | |
50 | inkscape:vp_y="0 : 1000 : 0" | |
51 | inkscape:vp_x="0 : 0.5 : 1" | |
52 | sodipodi:type="inkscape:persp3d" /> | |
53 | <linearGradient | |
54 | inkscape:collect="always" | |
55 | xlink:href="#StandardGradient" | |
56 | id="linearGradient3626" | |
57 | gradientUnits="userSpaceOnUse" | |
58 | gradientTransform="matrix(-1.0923124,0,0,0.915489,-3.96875,0)" | |
59 | x1="7.6386113" | |
60 | y1="3.2598698" | |
61 | x2="7.6386113" | |
62 | y2="14.22356" /> | |
63 | <clipPath | |
64 | clipPathUnits="userSpaceOnUse" | |
65 | id="clipPath3633"> | |
66 | <path | |
67 | style="fill:#ff00ff;fill-opacity:1;stroke:none;display:inline" | |
68 | d="m -20,0 0,16 16,0 0,-16 -16,0 z m 10.03125,3 0,2.96875 3.96875,0 0,4.0625 -3.96875,0 0,2.96875 -8,-5 8,-5 z" | |
69 | id="path3635" /> | |
70 | </clipPath> | |
71 | <linearGradient | |
72 | inkscape:collect="always" | |
73 | xlink:href="#StandardGradient" | |
74 | id="linearGradient4469" | |
75 | gradientUnits="userSpaceOnUse" | |
76 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
77 | x1="7.6386113" | |
78 | y1="3.2598698" | |
79 | x2="7.6386113" | |
80 | y2="14.22356" /> | |
81 | <linearGradient | |
82 | inkscape:collect="always" | |
83 | xlink:href="#StandardGradient" | |
84 | id="linearGradient4473" | |
85 | gradientUnits="userSpaceOnUse" | |
86 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
87 | x1="7.6386113" | |
88 | y1="3.2598698" | |
89 | x2="7.6386113" | |
90 | y2="14.22356" /> | |
91 | </defs> | |
92 | <sodipodi:namedview | |
93 | id="base" | |
94 | pagecolor="#047a7c" | |
95 | bordercolor="#9a9a9a" | |
96 | borderopacity="1" | |
97 | inkscape:pageopacity="0" | |
98 | inkscape:pageshadow="2" | |
99 | inkscape:zoom="35.157114" | |
100 | inkscape:cx="5.5910016" | |
101 | inkscape:cy="8.4322583" | |
102 | inkscape:document-units="px" | |
103 | inkscape:current-layer="layer4" | |
104 | showgrid="true" | |
105 | inkscape:showpageshadow="true" | |
106 | showguides="true" | |
107 | inkscape:guide-bbox="true" | |
108 | inkscape:window-width="1559" | |
109 | inkscape:window-height="968" | |
110 | inkscape:window-x="357" | |
111 | inkscape:window-y="18" | |
112 | inkscape:window-maximized="0" | |
113 | inkscape:snap-bbox="true" | |
114 | inkscape:bbox-paths="true" | |
115 | inkscape:snap-bbox-edge-midpoints="true" | |
116 | inkscape:bbox-nodes="true" | |
117 | inkscape:snap-bbox-midpoints="true"> | |
118 | <sodipodi:guide | |
119 | orientation="1,0" | |
120 | position="0,112" | |
121 | id="guide2383" /> | |
122 | <sodipodi:guide | |
123 | orientation="0,1" | |
124 | position="26.278146,128" | |
125 | id="guide2385" /> | |
126 | <sodipodi:guide | |
127 | orientation="1,0" | |
128 | position="128,54.082119" | |
129 | id="guide2387" /> | |
130 | <sodipodi:guide | |
131 | orientation="0,1" | |
132 | position="78.156291,0" | |
133 | id="guide2389" /> | |
134 | <inkscape:grid | |
135 | type="xygrid" | |
136 | id="grid3672" | |
137 | visible="true" | |
138 | enabled="true" | |
139 | empspacing="5" | |
140 | snapvisiblegridlinesonly="true" /> | |
141 | </sodipodi:namedview> | |
142 | <metadata | |
143 | id="metadata7"> | |
144 | <rdf:RDF> | |
145 | <cc:Work | |
146 | rdf:about=""> | |
147 | <dc:format>image/svg+xml</dc:format> | |
148 | <dc:type | |
149 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
150 | <dc:title></dc:title> | |
151 | </cc:Work> | |
152 | </rdf:RDF> | |
153 | </metadata> | |
154 | <g | |
155 | inkscape:groupmode="layer" | |
156 | id="layer4" | |
157 | inkscape:label="Arrow" | |
158 | style="display:inline"> | |
159 | <path | |
160 | style="display:inline;fill:#bebebe;fill-opacity:1;stroke:none" | |
161 | d="m 5.9718048,1.9843776 8.0125702,5.0027051 -8.0125702,5.0285443 0,-2.9948184 -3.9561799,0 0,-4.043966 3.9561799,0.00753 0,-3 z" | |
162 | id="Symbol" | |
163 | sodipodi:nodetypes="cccccccc" | |
164 | inkscape:label="#path2493" | |
165 | inkscape:connector-curvature="0" /> | |
166 | <rect | |
167 | style="opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
168 | id="rect4149" | |
169 | width="2" | |
170 | height="2" | |
171 | x="2" | |
172 | y="13" /> | |
173 | <rect | |
174 | style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
175 | id="rect4149-3" | |
176 | width="2" | |
177 | height="2" | |
178 | x="7" | |
179 | y="13" /> | |
180 | <rect | |
181 | style="display:inline;opacity:1;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" | |
182 | id="rect4149-6" | |
183 | width="2" | |
184 | height="2" | |
185 | x="12" | |
186 | y="13" /> | |
187 | </g> | |
188 | </svg> |
+0
-189
0 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
1 | <!-- Created with Inkscape (http://www.inkscape.org/) --> | |
2 | ||
3 | <svg | |
4 | xmlns:dc="http://purl.org/dc/elements/1.1/" | |
5 | xmlns:cc="http://creativecommons.org/ns#" | |
6 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
7 | xmlns:svg="http://www.w3.org/2000/svg" | |
8 | xmlns="http://www.w3.org/2000/svg" | |
9 | xmlns:xlink="http://www.w3.org/1999/xlink" | |
10 | xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
11 | xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
12 | width="16" | |
13 | height="16" | |
14 | id="svg2" | |
15 | sodipodi:version="0.32" | |
16 | inkscape:version="0.91 r13725" | |
17 | version="1.0" | |
18 | sodipodi:docname="xapp-go-history-next-symbolic.svg" | |
19 | inkscape:output_extension="org.inkscape.output.svg.inkscape"> | |
20 | <defs | |
21 | id="defs4"> | |
22 | <inkscape:perspective | |
23 | sodipodi:type="inkscape:persp3d" | |
24 | inkscape:vp_x="0 : 8 : 1" | |
25 | inkscape:vp_y="0 : 1000 : 0" | |
26 | inkscape:vp_z="16 : 8 : 1" | |
27 | inkscape:persp3d-origin="8 : 5.3333333 : 1" | |
28 | id="perspective18" /> | |
29 | <linearGradient | |
30 | id="StandardGradient" | |
31 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
32 | x1="7.6386113" | |
33 | y1="3.2598698" | |
34 | x2="7.6386113" | |
35 | y2="14.22356" | |
36 | gradientUnits="userSpaceOnUse"> | |
37 | <stop | |
38 | id="stop3284" | |
39 | offset="0" | |
40 | style="stop-color:#000000;stop-opacity:0.86274511;" /> | |
41 | <stop | |
42 | id="stop3286" | |
43 | offset="1" | |
44 | style="stop-color:#000000;stop-opacity:0.47058824;" /> | |
45 | </linearGradient> | |
46 | <inkscape:perspective | |
47 | id="perspective3648" | |
48 | inkscape:persp3d-origin="0.5 : 0.33333333 : 1" | |
49 | inkscape:vp_z="1 : 0.5 : 1" | |
50 | inkscape:vp_y="0 : 1000 : 0" | |
51 | inkscape:vp_x="0 : 0.5 : 1" | |
52 | sodipodi:type="inkscape:persp3d" /> | |
53 | <linearGradient | |
54 | inkscape:collect="always" | |
55 | xlink:href="#StandardGradient" | |
56 | id="linearGradient3626" | |
57 | gradientUnits="userSpaceOnUse" | |
58 | gradientTransform="matrix(-1.0923124,0,0,0.915489,-3.96875,0)" | |
59 | x1="7.6386113" | |
60 | y1="3.2598698" | |
61 | x2="7.6386113" | |
62 | y2="14.22356" /> | |
63 | <clipPath | |
64 | clipPathUnits="userSpaceOnUse" | |
65 | id="clipPath3633"> | |
66 | <path | |
67 | style="fill:#ff00ff;fill-opacity:1;stroke:none;display:inline" | |
68 | d="m -20,0 0,16 16,0 0,-16 -16,0 z m 10.03125,3 0,2.96875 3.96875,0 0,4.0625 -3.96875,0 0,2.96875 -8,-5 8,-5 z" | |
69 | id="path3635" /> | |
70 | </clipPath> | |
71 | <linearGradient | |
72 | inkscape:collect="always" | |
73 | xlink:href="#StandardGradient" | |
74 | id="linearGradient4469" | |
75 | gradientUnits="userSpaceOnUse" | |
76 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
77 | x1="7.6386113" | |
78 | y1="3.2598698" | |
79 | x2="7.6386113" | |
80 | y2="14.22356" /> | |
81 | <linearGradient | |
82 | inkscape:collect="always" | |
83 | xlink:href="#StandardGradient" | |
84 | id="linearGradient4473" | |
85 | gradientUnits="userSpaceOnUse" | |
86 | gradientTransform="matrix(-1.0923124,0,0,0.915489,16.03125,0)" | |
87 | x1="7.6386113" | |
88 | y1="3.2598698" | |
89 | x2="7.6386113" | |
90 | y2="14.22356" /> | |
91 | </defs> | |
92 | <sodipodi:namedview | |
93 | id="base" | |
94 | pagecolor="#047a7c" | |
95 | bordercolor="#9a9a9a" | |
96 | borderopacity="1" | |
97 | inkscape:pageopacity="0" | |
98 | inkscape:pageshadow="2" | |
99 | inkscape:zoom="35.157114" | |
100 | inkscape:cx="5.5910016" | |
101 | inkscape:cy="8.4322583" | |
102 | inkscape:document-units="px" | |
103 | inkscape:current-layer="layer4" | |
104 | showgrid="true" | |
105 | inkscape:showpageshadow="true" | |
106 | showguides="true" | |
107 | inkscape:guide-bbox="true" | |
108 | inkscape:window-width="1559" | |
109 | inkscape:window-height="968" | |
110 | inkscape:window-x="357" | |
111 | inkscape:window-y="18" | |
112 | inkscape:window-maximized="0" | |
113 | inkscape:snap-bbox="true" | |
114 | inkscape:bbox-paths="true" | |
115 | inkscape:snap-bbox-edge-midpoints="true" | |
116 | inkscape:bbox-nodes="true" | |
117 | inkscape:snap-bbox-midpoints="true"> | |
118 | <sodipodi:guide | |
119 | orientation="1,0" | |
120 | position="0,112" | |
121 | id="guide2383" /> | |
122 | <sodipodi:guide | |
123 | orientation="0,1" | |
124 | position="26.278146,128" | |
125 | id="guide2385" /> | |
126 | <sodipodi:guide | |
127 | orientation="1,0" | |
128 | position="128,54.082119" | |
129 | id="guide2387" /> | |
130 | <sodipodi:guide | |
131 | orientation="0,1" | |
132 | position="78.156291,0" | |
133 | id="guide2389" /> | |
134 | <inkscape:grid | |
135 | type="xygrid" | |
136 | id="grid3672" | |
137 | visible="true" | |
138 | enabled="true" | |
139 | empspacing="5" | |
140 | snapvisiblegridlinesonly="true" /> | |
141 | </sodipodi:namedview> | |
142 | <metadata | |
143 | id="metadata7"> | |
144 | <rdf:RDF> | |
145 | <cc:Work | |
146 | rdf:about=""> | |
147 | <dc:format>image/svg+xml</dc:format> | |
148 | <dc:type | |
149 | rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
150 | <dc:title></dc:title> | |
151 | </cc:Work> | |
152 | </rdf:RDF> | |
153 | </metadata> | |
154 | <g | |
155 | inkscape:groupmode="layer" | |
156 | id="layer4" | |
157 |