Merge lp:~noskcaj/ubuntu/vivid/xfce4-panel/4.11.2 into lp:ubuntu/vivid/xfce4-panel

Proposed by Jackson Doak
Status: Work in progress
Proposed branch: lp:~noskcaj/ubuntu/vivid/xfce4-panel/4.11.2
Merge into: lp:ubuntu/vivid/xfce4-panel
Diff against target: 27337 lines (+6290/-5562)
74 files modified
.pc/02_support-dmtool.patch/plugins/actions/actions.c (+15/-8)
ChangeLog (+753/-0)
NEWS (+8/-0)
aclocal.m4 (+58/-2)
config.guess (+27/-165)
config.sub (+19/-11)
configure (+14/-13)
configure.ac (+2/-2)
debian/changelog (+6/-0)
debian/patches/02_support-dmtool.patch (+10/-6)
docs/references/html/XfceArrowButton.html (+38/-38)
docs/references/html/XfceHVBox.html (+26/-26)
docs/references/html/XfcePanelImage.html (+38/-38)
docs/references/html/XfcePanelPlugin.html (+133/-133)
docs/references/html/api-index-4-6.html (+3/-3)
docs/references/html/api-index-4-8.html (+3/-3)
docs/references/html/api-index-deprecated.html (+3/-3)
docs/references/html/api-index-full.html (+3/-3)
docs/references/html/index.html (+3/-3)
docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html (+22/-22)
docs/references/html/libxfce4panel-Convenience-Functions.html (+31/-31)
docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html (+10/-10)
docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html (+10/-10)
docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html (+18/-18)
docs/references/html/libxfce4panel-Standard-Enumerations.html (+13/-13)
docs/references/html/libxfce4panel-Version-Information.html (+12/-12)
docs/references/html/libxfce4panel-fundamentals.html (+3/-3)
docs/references/html/libxfce4panel-miscelleanous.html (+3/-3)
docs/references/html/libxfce4panel-plugins.html (+3/-3)
docs/references/html/libxfce4panel-widgets.html (+3/-3)
docs/references/html/style.css (+153/-138)
docs/references/version.xml (+1/-1)
libxfce4panel/libxfce4panel-config.h (+2/-2)
ltmain.sh (+2/-2)
panel/Makefile.am (+3/-0)
panel/Makefile.in (+3/-0)
panel/main.c (+1/-1)
panel/panel-application.c (+4/-1)
panel/panel-preferences-dialog-ui.h (+466/-452)
panel/panel-preferences-dialog.c (+37/-1)
panel/panel-preferences-dialog.glade (+55/-7)
panel/panel-window.c (+402/-137)
panel/panel-window.h (+28/-23)
plugins/actions/actions.c (+15/-8)
po/ar.po (+128/-159)
po/ast.po (+138/-136)
po/cs.po (+154/-204)
po/da.po (+139/-197)
po/de.po (+184/-184)
po/el.po (+143/-200)
po/en_AU.po (+86/-86)
po/es.po (+111/-110)
po/fi.po (+246/-251)
po/fr.po (+232/-231)
po/he.po (+369/-368)
po/hr.po (+89/-88)
po/hu.po (+137/-185)
po/is.po (+86/-86)
po/it.po (+89/-89)
po/ja.po (+86/-86)
po/kk.po (+86/-86)
po/ko.po (+139/-182)
po/ms.po (+86/-86)
po/nl.po (+88/-88)
po/pl.po (+99/-98)
po/pt.po (+89/-88)
po/pt_BR.po (+88/-87)
po/ru.po (+95/-94)
po/sk.po (+146/-188)
po/sr.po (+87/-87)
po/th.po (+89/-89)
po/tr.po (+145/-197)
po/uk.po (+86/-86)
po/zh_CN.po (+88/-88)
To merge this branch: bzr merge lp:~noskcaj/ubuntu/vivid/xfce4-panel/4.11.2
Reviewer Review Type Date Requested Status
Daniel Holbach (community) Needs Fixing
Review via email: mp+245531@code.launchpad.net

Description of the change

New upstream release. Xubuntu 15.04

To post a comment you must log in.
Revision history for this message
Daniel Holbach (dholbach) wrote :

Text conflict in plugins/actions/actions.c
1 conflicts encountered.

review: Needs Fixing

Unmerged revisions

77. By Jackson Doak

New upstream release.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '.pc/02_support-dmtool.patch/plugins/actions/actions.c'
--- .pc/02_support-dmtool.patch/plugins/actions/actions.c 2014-10-14 06:15:01 +0000
+++ .pc/02_support-dmtool.patch/plugins/actions/actions.c 2015-01-04 19:54:48 +0000
@@ -911,10 +911,12 @@
911actions_plugin_action_activate (GtkWidget *widget,911actions_plugin_action_activate (GtkWidget *widget,
912 ActionsPlugin *plugin)912 ActionsPlugin *plugin)
913{913{
914 ActionEntry *entry;914 ActionEntry *entry;
915 gboolean unattended = FALSE;915 gboolean unattended = FALSE;
916 GError *error = NULL;916 GError *error = NULL;
917 gboolean succeed = FALSE;917 gboolean succeed = FALSE;
918 XfconfChannel *channel;
919 gboolean allow_save;
918920
919 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);921 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);
920 panel_return_if_fail (entry != NULL);922 panel_return_if_fail (entry != NULL);
@@ -925,26 +927,31 @@
925 && !actions_plugin_action_confirmation (plugin, entry, &unattended))927 && !actions_plugin_action_confirmation (plugin, entry, &unattended))
926 return;928 return;
927929
930 channel = xfconf_channel_get ("xfce4-session");
931 allow_save = xfconf_channel_get_bool (channel, "/general/SaveOnExit", FALSE);
932 /* unattended shutdown, don't save the session to avoid blocking the logout */
933 allow_save = allow_save && !unattended;
934
928 switch (entry->type)935 switch (entry->type)
929 {936 {
930 case ACTION_TYPE_LOGOUT:937 case ACTION_TYPE_LOGOUT:
931 succeed = actions_plugin_action_dbus_xfsm ("Logout", FALSE,938 succeed = actions_plugin_action_dbus_xfsm ("Logout", FALSE,
932 !unattended, &error);939 allow_save, &error);
933 break;940 break;
934941
935 case ACTION_TYPE_LOGOUT_DIALOG:942 case ACTION_TYPE_LOGOUT_DIALOG:
936 succeed = actions_plugin_action_dbus_xfsm ("Logout", TRUE,943 succeed = actions_plugin_action_dbus_xfsm ("Logout", TRUE,
937 !unattended, &error);944 allow_save, &error);
938 break;945 break;
939946
940 case ACTION_TYPE_RESTART:947 case ACTION_TYPE_RESTART:
941 succeed = actions_plugin_action_dbus_xfsm ("Restart", FALSE,948 succeed = actions_plugin_action_dbus_xfsm ("Restart", FALSE,
942 !unattended, &error);949 allow_save, &error);
943 break;950 break;
944951
945 case ACTION_TYPE_SHUTDOWN:952 case ACTION_TYPE_SHUTDOWN:
946 succeed = actions_plugin_action_dbus_xfsm ("Shutdown", FALSE,953 succeed = actions_plugin_action_dbus_xfsm ("Shutdown", FALSE,
947 !unattended, &error);954 allow_save, &error);
948 break;955 break;
949956
950 case ACTION_TYPE_HIBERNATE:957 case ACTION_TYPE_HIBERNATE:
951958
=== modified file 'ChangeLog'
--- ChangeLog 2014-06-23 08:06:22 +0000
+++ ChangeLog 2015-01-04 19:54:48 +0000
@@ -1,3 +1,756 @@
1commit b0e0492df099608db16de15ae4fc80f5a88e60be
2Author: Efstathios Iosifidis <iefstathios@gmail.com>
3Date: Sat Dec 27 00:31:00 2014 +0100
4
5 I18n: Update translation el (97%).
6
7 386 translated messages, 8 untranslated messages.
8
9 Transifex (https://www.transifex.com/projects/p/xfce/).
10
11commit 0abd76c45eb546822712ae09337a6fb2ee54e5d4
12Author: Urien Desterres <urien.desterres@gmail.com>
13Date: Fri Dec 26 18:30:33 2014 +0100
14
15 I18n: Update translation fr (100%).
16
17 394 translated messages.
18
19 Transifex (https://www.transifex.com/projects/p/xfce/).
20
21commit 166807cb4cfbc0c46cf7abab23bc14a130254c19
22Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
23Date: Fri Dec 26 00:31:07 2014 +0100
24
25 I18n: Update translation es (100%).
26
27 394 translated messages.
28
29 Transifex (https://www.transifex.com/projects/p/xfce/).
30
31commit a26f73f408d98746511d4179740eda945336d225
32Author: Yannick Le Guen <leguen.yannick@gmail.com>
33Date: Thu Dec 25 18:30:33 2014 +0100
34
35 I18n: Update translation fr (100%).
36
37 394 translated messages.
38
39 Transifex (https://www.transifex.com/projects/p/xfce/).
40
41commit 5163992445334035e0e149742ba10de25fd4f794
42Author: Benedek Imre <nucleo@indamail.hu>
43Date: Wed Dec 24 00:30:42 2014 +0100
44
45 I18n: Update translation hu (100%).
46
47 394 translated messages.
48
49 Transifex (https://www.transifex.com/projects/p/xfce/).
50
51commit 53f17e4b64392d7c60f4cffc21bf63ad03839b54
52Author: Andrzej <ndrwrdck@gmail.com>
53Date: Sat Dec 20 00:37:35 2014 +0000
54
55 Revert "Make panel hide intelligently with shaded windows (bug #11371)"
56
57 This reverts commit 75ed12ce2e4d5d13781fca9179268bce958f9596.
58
59commit 75ed12ce2e4d5d13781fca9179268bce958f9596
60Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
61Date: Mon Dec 15 14:30:14 2014 +0100
62
63 Make panel hide intelligently with shaded windows (bug #11371)
64
65commit 4a436dd163e1fb11765fc78c74a6b5c88683f48c
66Author: enolp <enolp@softastur.org>
67Date: Sun Dec 14 18:30:32 2014 +0100
68
69 I18n: Update translation ast (94%).
70
71 372 translated messages, 22 untranslated messages.
72
73 Transifex (https://www.transifex.com/projects/p/xfce/).
74
75commit 564705f2188e9c020b105b32d7f12873e8110557
76Author: Ḷḷumex03 <tornes@opmbx.org>
77Date: Sat Dec 13 06:30:45 2014 +0100
78
79 I18n: Update translation ast (94%).
80
81 372 translated messages, 22 untranslated messages.
82
83 Transifex (https://www.transifex.com/projects/p/xfce/).
84
85commit db59a6247de48efa579db4f3993fd32093e550b6
86Author: Sergey Alyoshin <alyoshin.s@gmail.com>
87Date: Fri Dec 12 18:30:31 2014 +0100
88
89 I18n: Update translation ru (100%).
90
91 394 translated messages.
92
93 Transifex (https://www.transifex.com/projects/p/xfce/).
94
95commit d121c00e52d088e128c033e236db71b72de927c9
96Author: GenghisKhan <genghiskhan@gmx.ca>
97Date: Sun Dec 7 18:30:49 2014 +0100
98
99 I18n: Update translation he (100%).
100
101 394 translated messages.
102
103 Transifex (https://www.transifex.com/projects/p/xfce/).
104
105commit 3648c1c4a80ff202c76491be11b2538a2428c16c
106Author: عبدالله رضوان <abbodmar@gmail.com>
107Date: Sun Dec 7 18:30:48 2014 +0100
108
109 I18n: Update translation ar (100%).
110
111 394 translated messages.
112
113 Transifex (https://www.transifex.com/projects/p/xfce/).
114
115commit 3c995cac169657e24409849d33e7adca2ce28cfe
116Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
117Date: Sun Dec 7 00:05:50 2014 +0100
118
119 Fix panel hiding (intelligently) with open menus
120
121commit 3cf77c89de49d3ebeeef6fc5b45ddae031b4960b
122Author: Ali Polatel <ali.polatel@ozguryazilim.com.tr>
123Date: Wed Dec 3 12:30:32 2014 +0100
124
125 I18n: Update translation tr (100%).
126
127 394 translated messages.
128
129 Transifex (https://www.transifex.com/projects/p/xfce/).
130
131commit d92de74e76ba9a2fcf5d18e693cdbf4abc2a9967
132Author: GenghisKhan <genghiskhan@gmx.ca>
133Date: Tue Dec 2 12:31:04 2014 +0100
134
135 I18n: Update translation he (99%).
136
137 393 translated messages, 1 untranslated message.
138
139 Transifex (https://www.transifex.com/projects/p/xfce/).
140
141commit dec26ae71ad7b8fece6484566c53d657ba97038c
142Author: GenghisKhan <genghiskhan@gmx.ca>
143Date: Mon Dec 1 18:30:32 2014 +0100
144
145 I18n: Update translation he (99%).
146
147 392 translated messages, 2 untranslated messages.
148
149 Transifex (https://www.transifex.com/projects/p/xfce/).
150
151commit d47ae9ec5503636463b4de948a2af639737f2277
152Author: Slavko <linux@slavino.sk>
153Date: Fri Nov 28 18:30:38 2014 +0100
154
155 I18n: Update translation sk (100%).
156
157 394 translated messages.
158
159 Transifex (https://www.transifex.com/projects/p/xfce/).
160
161commit 2c86befe0b891a322dfa0742101a03ca15079484
162Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
163Date: Thu Nov 27 01:23:04 2014 +0100
164
165 Fix panel being initially hidden with intelligent autohiding
166
167 After closing the panel preferences, the panel was always hidden when
168 intelligent autohiding was selected. This patch adds a check whether the
169 currently active window actually overlaps with the panel and only hides
170 it in case it does.
171
172commit 57502718bfbbc4bc6806bef5f0f675c82d2effa4
173Author: Andrzej <ndrwrdck@gmail.com>
174Date: Wed Nov 26 20:18:04 2014 +0000
175
176 Fixing problems with intelligent panel hiding, bug #11331
177
178 ochosi:
179 "Just to document the findings I made during a quick debug session
180 with the panel from git master (4.11.x). Intelligent hiding
181 generally works, but the mouse-pointer behavior is buggy.
182 Steps to reproduce the bug:
183 1) set panel to intelligent hiding
184 2) give a window focus that doesn't overlap with the panel
185 3) hover the panel with the mouse
186 4) upon leaving the panel hides again, even though there
187 is no window overlapping
188
189 What it should do instead: if intelligent hiding is in use
190 it should check (possibly in panel_window_leave_notify_event
191 or _enter_ in panel-window.c) whether there are windows
192 overlapping with the panel and if not, the panel shouldn't
193 hide on leave_notify."
194
195commit 70f8fb891c3afe0721f71f0fe7755e12de45eb4f
196Author: Ḷḷumex03 <tornes@opmbx.org>
197Date: Sat Nov 22 06:30:34 2014 +0100
198
199 I18n: Update translation ast (94%).
200
201 372 translated messages, 22 untranslated messages.
202
203 Transifex (https://www.transifex.com/projects/p/xfce/).
204
205commit 3e5563e28ff7db52e2f5a468a19f9e1059806b8d
206Author: Andrzej <ndrwrdck@gmail.com>
207Date: Wed Nov 19 22:19:35 2014 +0000
208
209 Don't save the session during unattended shutdown
210
211 Previous commit accidentally removed this feature. Bringing it back.
212
213commit 3848b0c0df4c2d744e4a9db2653c0507f78fbba3
214Author: Andrzej <ndrwrdck@gmail.com>
215Date: Wed Nov 19 09:37:54 2014 +0000
216
217 Panel action button Logout always save session (bug #7930)
218
219commit e0738dd643d4efae99b3d2ca4bd48e8ab0e36ee3
220Author: Piotr Strębski <strebski@o2.pl>
221Date: Mon Nov 3 18:30:36 2014 +0100
222
223 I18n: Update translation pl (100%).
224
225 394 translated messages.
226
227 Transifex (https://www.transifex.com/projects/p/xfce/).
228
229commit 18c692693685a2d0bfb9d5e745e879fa422e68d5
230Author: Michal Várady <miko.vaji@gmail.com>
231Date: Wed Oct 29 06:30:33 2014 +0100
232
233 I18n: Update translation cs (100%).
234
235 394 translated messages.
236
237 Transifex (https://www.transifex.com/projects/p/xfce/).
238
239commit 4def8fec7090302e8d4ec3626d25b373df0abacf
240Author: Zafer Eren <zaferern@gmail.com>
241Date: Wed Oct 29 00:30:36 2014 +0100
242
243 I18n: Update translation tr (99%).
244
245 392 translated messages, 2 untranslated messages.
246
247 Transifex (https://www.transifex.com/projects/p/xfce/).
248
249commit 9f9b93997ae406999782deea0498fa353ff814c6
250Author: Michal Várady <miko.vaji@gmail.com>
251Date: Wed Oct 29 00:30:36 2014 +0100
252
253 I18n: Update translation cs (100%).
254
255 394 translated messages.
256
257 Transifex (https://www.transifex.com/projects/p/xfce/).
258
259commit 2eb625fbe213b970c0142092dc7ea8c0ce9cb2ed
260Author: Michal Várady <miko.vaji@gmail.com>
261Date: Sun Oct 26 00:30:49 2014 +0200
262
263 I18n: Update translation cs (100%).
264
265 394 translated messages.
266
267 Transifex (https://www.transifex.com/projects/p/xfce/).
268
269commit 01c80d3ba530aeb347e03f75fa1d7b175cd7b1a7
270Author: Ḷḷumex03 <tornes@opmbx.org>
271Date: Sun Oct 26 00:30:49 2014 +0200
272
273 I18n: Update translation ast (94%).
274
275 372 translated messages, 22 untranslated messages.
276
277 Transifex (https://www.transifex.com/projects/p/xfce/).
278
279commit e3f03ee575a49cfd288645f5a9f1c268efeaca77
280Author: 周潇波 <zhouxiaobo.500@gmail.com>
281Date: Sat Oct 18 12:30:44 2014 +0200
282
283 I18n: Update translation zh_CN (100%).
284
285 394 translated messages.
286
287 Transifex (https://www.transifex.com/projects/p/xfce/).
288
289commit b977c88efe1b6248e39bbc00eff8bcfa94e9844d
290Author: AlexanderFilev <ifillrok@gmail.com>
291Date: Tue Oct 14 18:30:38 2014 +0200
292
293 I18n: Update translation ru (100%).
294
295 394 translated messages.
296
297 Transifex (https://www.transifex.com/projects/p/xfce/).
298
299commit beef627959f01c92751680aa725fa9ed299a9f42
300Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
301Date: Mon Oct 6 06:30:32 2014 +0200
302
303 I18n: Update translation kk (100%).
304
305 394 translated messages.
306
307 Transifex (https://www.transifex.com/projects/p/xfce/).
308
309commit 12bcabb69032515ade87440fbb2d8287aac380a3
310Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
311Date: Fri Oct 3 00:30:32 2014 +0200
312
313 I18n: Update translation fi (100%).
314
315 394 translated messages.
316
317 Transifex (https://www.transifex.com/projects/p/xfce/).
318
319commit 07f754efe7221d9b746b60f3a43ed7e6ac5dfa33
320Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
321Date: Thu Oct 2 18:30:33 2014 +0200
322
323 I18n: Update translation fi (99%).
324
325 391 translated messages, 3 untranslated messages.
326
327 Transifex (https://www.transifex.com/projects/p/xfce/).
328
329commit b403a5be93a685c45a28964e92354dfdcfac1128
330Author: Michael Findlay <keltoiboy@gmail.com>
331Date: Thu Oct 2 12:30:32 2014 +0200
332
333 I18n: Update translation en_AU (100%).
334
335 394 translated messages.
336
337 Transifex (https://www.transifex.com/projects/p/xfce/).
338
339commit b49f762998826d5be64d73d1300fed2e2d7d086e
340Author: Nuno Miguel <nunomgue@gmail.com>
341Date: Wed Oct 1 18:30:32 2014 +0200
342
343 I18n: Update translation pt (100%).
344
345 394 translated messages.
346
347 Transifex (https://www.transifex.com/projects/p/xfce/).
348
349commit bd0f1b2278ff371ea9ba7f20c2bc2625c1402ce3
350Author: gabrieltandil <gabriel.tandil@gmail.com>
351Date: Tue Sep 30 18:30:32 2014 +0200
352
353 I18n: Update translation es (100%).
354
355 394 translated messages.
356
357 Transifex (https://www.transifex.com/projects/p/xfce/).
358
359commit 26a8bd630b87ad21cd0b88498a7bc7608252cc86
360Author: Aputsiaĸ Niels Janussen <aj@isit.gl>
361Date: Fri Sep 26 12:30:33 2014 +0200
362
363 I18n: Update translation da (100%).
364
365 394 translated messages.
366
367 Transifex (https://www.transifex.com/projects/p/xfce/).
368
369commit 6f672b8074fc97cf1d0211d7a7b73f939d9c1035
370Author: Sveinn í Felli <sv1@fellsnet.is>
371Date: Tue Sep 23 00:30:36 2014 +0200
372
373 I18n: Update translation is (100%).
374
375 394 translated messages.
376
377 Transifex (https://www.transifex.com/projects/p/xfce/).
378
379commit 36d11f74e4aa23daf61b699370f8d7785e40e9ef
380Author: Anonymous <noreply@xfce.org>
381Date: Mon Sep 22 18:30:34 2014 +0200
382
383 I18n: Update translation de (100%).
384
385 394 translated messages.
386
387 Transifex (https://www.transifex.com/projects/p/xfce/).
388
389commit cf4e88dddc7c364827708fa7093f64ce5b5d0c76
390Author: Michal Várady <miko.vaji@gmail.com>
391Date: Sat Sep 20 06:30:32 2014 +0200
392
393 I18n: Update translation cs (100%).
394
395 394 translated messages.
396
397 Transifex (https://www.transifex.com/projects/p/xfce/).
398
399commit 1ba79adac6254718ac690f5b59d07d1313e899c6
400Author: Anonymous <noreply@xfce.org>
401Date: Thu Sep 18 06:30:33 2014 +0200
402
403 I18n: Update translation de (100%).
404
405 394 translated messages.
406
407 Transifex (https://www.transifex.com/projects/p/xfce/).
408
409commit b4927d070123a38c77e3b76b9f9f051839b2d346
410Author: Anonymous <noreply@xfce.org>
411Date: Thu Sep 18 00:30:39 2014 +0200
412
413 I18n: Update translation de (100%).
414
415 394 translated messages.
416
417 Transifex (https://www.transifex.com/projects/p/xfce/).
418
419commit 17948ba701d82f1bbf5dc128446ab367569b1630
420Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
421Date: Sat Sep 13 12:30:33 2014 +0200
422
423 I18n: Update translation th (100%).
424
425 394 translated messages.
426
427 Transifex (https://www.transifex.com/projects/p/xfce/).
428
429commit ade76f1d57b795c58f2885e7da27768481d1c505
430Author: Cristian Marchi <cri.penta@gmail.com>
431Date: Sat Sep 13 12:30:33 2014 +0200
432
433 I18n: Update translation it (100%).
434
435 394 translated messages.
436
437 Transifex (https://www.transifex.com/projects/p/xfce/).
438
439commit b71f35ef7414cc70aea5fbf2ad9a3b4d5557c712
440Author: Seong-ho Cho <darkcircle.0426@gmail.com>
441Date: Thu Sep 11 00:30:33 2014 +0200
442
443 I18n: Update translation ko (100%).
444
445 394 translated messages.
446
447 Transifex (https://www.transifex.com/projects/p/xfce/).
448
449commit 3a7b5e9a41c734bda3ef03a0a3010921ab2f2ae5
450Author: Саша Петровић <salepetronije@gmail.com>
451Date: Mon Sep 8 18:30:40 2014 +0200
452
453 I18n: Update translation sr (100%).
454
455 394 translated messages.
456
457 Transifex (https://www.transifex.com/projects/p/xfce/).
458
459commit de7b6938639961a2f938b36fabe4c33638cddc3d
460Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
461Date: Mon Sep 8 18:30:40 2014 +0200
462
463 I18n: Update translation es (100%).
464
465 394 translated messages.
466
467 Transifex (https://www.transifex.com/projects/p/xfce/).
468
469commit d0c0fa5403d318918e819e5a70db3dd9726a5acc
470Author: Yarema aka Knedlyk <yupadmin@gmail.com>
471Date: Sun Sep 7 18:30:33 2014 +0200
472
473 I18n: Update translation uk (100%).
474
475 394 translated messages.
476
477 Transifex (https://www.transifex.com/projects/p/xfce/).
478
479commit 3937080fffa7073971f86f9d5f56ccaea1fa2659
480Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
481Date: Sun Sep 7 18:30:33 2014 +0200
482
483 I18n: Update translation ja (100%).
484
485 394 translated messages.
486
487 Transifex (https://www.transifex.com/projects/p/xfce/).
488
489commit 8de36057b18764e635109a570ef1e6da16df69a3
490Author: André Miranda <andreldm1989@gmail.com>
491Date: Sat Sep 6 06:30:32 2014 +0200
492
493 I18n: Update translation pt_BR (100%).
494
495 394 translated messages.
496
497 Transifex (https://www.transifex.com/projects/p/xfce/).
498
499commit 2d462e99246b60f4a9b5100b455742b5e8aa3f5b
500Author: Yannick Le Guen <leguen.yannick@gmail.com>
501Date: Sat Sep 6 00:30:33 2014 +0200
502
503 I18n: Update translation fr (100%).
504
505 394 translated messages.
506
507 Transifex (https://www.transifex.com/projects/p/xfce/).
508
509commit 6f6dadc4ab991567756e38ae6ccf0c9161456182
510Author: Pjotr <pjotrvertaalt@gmail.com>
511Date: Fri Sep 5 18:30:35 2014 +0200
512
513 I18n: Update translation nl (100%).
514
515 394 translated messages.
516
517 Transifex (https://www.transifex.com/projects/p/xfce/).
518
519commit a927b599ee59c353a69b231f281943b5166a00c4
520Author: abuyop <abuyop@gmail.com>
521Date: Fri Sep 5 18:30:35 2014 +0200
522
523 I18n: Update translation ms (100%).
524
525 394 translated messages.
526
527 Transifex (https://www.transifex.com/projects/p/xfce/).
528
529commit 932479fb4219ad940a55880537b61d8357e85236
530Author: Edin Veskovic <edin.veskovic@openmailbox.org>
531Date: Fri Sep 5 18:30:35 2014 +0200
532
533 I18n: Update translation hr (100%).
534
535 394 translated messages.
536
537 Transifex (https://www.transifex.com/projects/p/xfce/).
538
539commit 4ab04694c604a5273303ced5a4d33e1c0b7caace
540Author: gabrieltandil <gabriel.tandil@gmail.com>
541Date: Fri Sep 5 18:30:35 2014 +0200
542
543 I18n: Update translation es (100%).
544
545 394 translated messages.
546
547 Transifex (https://www.transifex.com/projects/p/xfce/).
548
549commit 153cf7083a220e29940c594dedbbab396a8439d2
550Author: Anonymous <noreply@xfce.org>
551Date: Fri Sep 5 18:30:35 2014 +0200
552
553 I18n: Update translation de (100%).
554
555 394 translated messages.
556
557 Transifex (https://www.transifex.com/projects/p/xfce/).
558
559commit 5866e9521f3e525fb548612d505efc56fef7ed06
560Author: Jannis Pohlmann <jannis@xfce.org>
561Date: Tue Jul 29 11:57:53 2014 +0200
562
563 Make "don't reserve space" sensitive only when autohiding is disabled
564
565 This configuration option only makes sense when not hiding a panel
566 automatically, so whenever one of the two autohide behaviors is enabled,
567 the option is now greyed out in the UI.
568
569commit 3380b83f1349d1f6cb911332c26bafa340dd1330
570Author: Jannis Pohlmann <jannis@xfce.org>
571Date: Mon Jul 28 19:06:18 2014 +0200
572
573 Update preferences dialog for intelligent autohide
574
575 Instead of a single "Show/hide panel automatically" check box, we now
576 use a "Automatically hide the panel" combo box with the options "Never",
577 "Intelligently" and "Always".
578
579commit c75751bd5de0d2369f8203a5ce582f2cd3f674c1
580Author: Jannis Pohlmann <jannis@xfce.org>
581Date: Tue Jul 29 11:33:40 2014 +0200
582
583 Automatically migrate old "autohide" properties to "autohide-behavior"
584
585 We could write a migration script for it to avoid additional code being
586 added to the panel itself but the solution presented here is simple and
587 works: when a panel is created (e.g. during startup), we check whether
588 there is an old "autohide" property in the Xfconf channel. If the new
589 "autohide-behavior" property is not yet set, we translate "autohide"
590 FALSE and TRUE into "autohide-behavior" NEVER and ALWAYS, respectively.
591 We then reset the "autohide" property and thereby achieve an automatic,
592 transparent migration from old to new.
593
594commit 00c00c1f1994bc9f03bd98097dfb8fa68b16758a
595Author: Jannis Pohlmann <jannis@xfce.org>
596Date: Sun Jul 27 18:36:59 2014 +0200
597
598 Implement intelligent autohide behavior
599
600 This implementation of intelligent autohiding works as follows:
601
602 The current WnckScreen is monitored. Whenever the active window changes
603 or whenever the geometry of an already active window changes, the
604 algorithm checks whether the active window and the panel overlap. If
605 this is the case, the panel is hidden. Otherwise, it is made or remains
606 visible.
607
608 Desktop windows are treated special. Even though they overlap
609 with panels technically, we don't consider this relevant and always make
610 the panel visible when a desktop window becomes active.
611
612 Internally, there are three autohide behaviors now: never (disables
613 autohiding altogether), intelligent (implements the above method) and
614 always (the old "hide when not focused/grabbed by mouse or keyboard).
615
616commit 38cc02e4361b85f849c6ee29d7bb1e8c31ebb5d3
617Author: Jannis Pohlmann <jannis@xfce.org>
618Date: Mon Jul 28 02:07:46 2014 +0200
619
620 Make panel application depend on libwnck
621
622 This will be needed for intelligent autohiding, which is implemented by
623 monitoring the current WnckScreen for active window changes and hiding
624 the panel whenever the active window geometry overlaps with the panel.
625
626commit b00a4515274fcf914bf259e2f729c5153c117382
627Author: Jannis Pohlmann <jannis@xfce.org>
628Date: Sun Jul 27 19:04:45 2014 +0200
629
630 Fix typo in a debug message
631
632commit 84643f92f79eb49517012d319d92c0e39bfe350e
633Author: Alois Nešpor <info@aloisnespor.info>
634Date: Mon Sep 1 00:30:33 2014 +0200
635
636 I18n: Update translation cs (100%).
637
638 394 translated messages.
639
640 Transifex (https://www.transifex.com/projects/p/xfce/).
641
642commit c55d7d9d335da5ec72e1068bf002d0719866f9af
643Author: Piotr Sokół <psokol@jabster.pl>
644Date: Sat Aug 30 00:30:37 2014 +0200
645
646 I18n: Update translation pl (100%).
647
648 394 translated messages.
649
650 Transifex (https://www.transifex.com/projects/p/xfce/).
651
652commit 2faf8ca7a9d0461d645c602b176cab757ffd3106
653Author: Piotr Sokół <psokol@jabster.pl>
654Date: Thu Aug 28 00:30:34 2014 +0200
655
656 I18n: Update translation pl (100%).
657
658 394 translated messages.
659
660 Transifex (https://www.transifex.com/projects/p/xfce/).
661
662commit f65ef2b5b729ce5d2ba93b7dcc9e366ba60d65e3
663Author: Anonymous <noreply@xfce.org>
664Date: Tue Aug 26 18:30:38 2014 +0200
665
666 I18n: Update translation de (100%).
667
668 394 translated messages.
669
670 Transifex (https://www.transifex.com/projects/p/xfce/).
671
672commit 379d339eb19dbb3a1605bbddca3e57056a6ef7f9
673Author: Yannick Le Guen <leguen.yannick@gmail.com>
674Date: Sat Aug 23 12:30:35 2014 +0200
675
676 I18n: Update translation fr (100%).
677
678 394 translated messages.
679
680 Transifex (https://www.transifex.com/projects/p/xfce/).
681
682commit 00175324010e06be782b8ee0892cefaf4b7cb9d1
683Author: Pasi Lallinaho <pasi@shimmerproject.org>
684Date: Sat Aug 23 00:30:39 2014 +0200
685
686 I18n: Update translation fi (99%).
687
688 393 translated messages, 1 untranslated message.
689
690 Transifex (https://www.transifex.com/projects/p/xfce/).
691
692commit fbc0dc857c4011a4c7424cf8dcba5584212f0ee6
693Author: lego37yoon <lego37yoon@outlook.com>
694Date: Fri Jul 25 18:30:35 2014 +0200
695
696 I18n: Update translation ko (100%).
697
698 394 translated messages.
699
700 Transifex (https://www.transifex.com/projects/p/xfce/).
701
702commit 68ddeaad0d3ecfcd4aa2d80784af01d4016ca5da
703Author: Yannick Le Guen <leguen.yannick@gmail.com>
704Date: Fri Jul 18 18:30:38 2014 +0200
705
706 I18n: Update translation fr (100%).
707
708 394 translated messages.
709
710 Transifex (https://www.transifex.com/projects/p/xfce/).
711
712commit c116621cd41cf46f7ab7ae71fa24c7b06ae157cd
713Author: Urien Desterres <urien.desterres@gmail.com>
714Date: Sat Jul 5 18:30:33 2014 +0200
715
716 I18n: Update translation fr (100%).
717
718 394 translated messages.
719
720 Transifex (https://www.transifex.com/projects/p/xfce/).
721
722commit 53a7ae13ae3fb23e32317ef539154b4d47a13e54
723Author: Yannick Le Guen <leguen.yannick@gmail.com>
724Date: Sat Jul 5 12:30:32 2014 +0200
725
726 I18n: Update translation fr (100%).
727
728 394 translated messages.
729
730 Transifex (https://www.transifex.com/projects/p/xfce/).
731
732commit 5f514d2e70109dae64c082eb6aba137729521c31
733Author: Tero Mononen <tero@mononen.eu>
734Date: Thu Jul 3 18:30:35 2014 +0200
735
736 I18n: Update translation fi (73%).
737
738 290 translated messages, 104 untranslated messages.
739
740 Transifex (https://www.transifex.com/projects/p/xfce/).
741
742commit 1e39a8b9c85b6c63fe59ae4607869e8ad5fb2d3e
743Author: Andrzej <ndrwrdck@gmail.com>
744Date: Sun Jun 22 22:48:57 2014 +0100
745
746 Back to development.
747
748commit 8898d93984fda0fe5dd069011cf43e288f48c4a3
749Author: Andrzej <ndrwrdck@gmail.com>
750Date: Sun Jun 22 22:48:04 2014 +0100
751
752 Updates for the release
753
1commit 61cba9a0fc5471dff7545eee8e0f81ffaf5ab106754commit 61cba9a0fc5471dff7545eee8e0f81ffaf5ab106
2Author: Andrzej <ndrwrdck@gmail.com>755Author: Andrzej <ndrwrdck@gmail.com>
3Date: Sun Jun 22 10:56:23 2014 +0100756Date: Sun Jun 22 10:56:23 2014 +0100
4757
=== modified file 'NEWS'
--- NEWS 2014-06-23 08:06:22 +0000
+++ NEWS 2015-01-04 19:54:48 +0000
@@ -1,3 +1,11 @@
14.11.2
2======
3- Added intelligent panel hiding (JPohlmann, ochosi)
4- Action buttons: only save session when requested (bug #7930)
5- Translation updates: fi, fr, ko, de, pl, cs, es, hr, ms, nl, pt_BR,
6 ja, uk, sr, it, th, is, da, pt, en_AU, kk, ru, zh, CN, ast, tr, sk,
7 he, ar, el.
8
14.11.194.11.1
2======10======
3- Action Buttons: Fix panel autohide (bug #8960) (Petr Gajdůšek).11- Action Buttons: Fix panel autohide (bug #8960) (Petr Gajdůšek).
412
=== modified file 'aclocal.m4'
--- aclocal.m4 2014-06-23 08:06:22 +0000
+++ aclocal.m4 2015-01-04 19:54:48 +0000
@@ -9363,7 +9363,7 @@
9363m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])9363m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
93649364
9365# nls.m4 serial 5 (gettext-0.18)9365# nls.m4 serial 5 (gettext-0.18)
9366dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation,9366dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation,
9367dnl Inc.9367dnl Inc.
9368dnl This file is free software; the Free Software Foundation9368dnl This file is free software; the Free Software Foundation
9369dnl gives unlimited permission to copy and/or distribute it,9369dnl gives unlimited permission to copy and/or distribute it,
@@ -9555,6 +9555,61 @@
9555fi[]dnl9555fi[]dnl
9556])# PKG_CHECK_MODULES9556])# PKG_CHECK_MODULES
95579557
9558
9559# PKG_INSTALLDIR(DIRECTORY)
9560# -------------------------
9561# Substitutes the variable pkgconfigdir as the location where a module
9562# should install pkg-config .pc files. By default the directory is
9563# $libdir/pkgconfig, but the default can be changed by passing
9564# DIRECTORY. The user can override through the --with-pkgconfigdir
9565# parameter.
9566AC_DEFUN([PKG_INSTALLDIR],
9567[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
9568m4_pushdef([pkg_description],
9569 [pkg-config installation directory @<:@]pkg_default[@:>@])
9570AC_ARG_WITH([pkgconfigdir],
9571 [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
9572 [with_pkgconfigdir=]pkg_default)
9573AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
9574m4_popdef([pkg_default])
9575m4_popdef([pkg_description])
9576]) dnl PKG_INSTALLDIR
9577
9578
9579# PKG_NOARCH_INSTALLDIR(DIRECTORY)
9580# -------------------------
9581# Substitutes the variable noarch_pkgconfigdir as the location where a
9582# module should install arch-independent pkg-config .pc files. By
9583# default the directory is $datadir/pkgconfig, but the default can be
9584# changed by passing DIRECTORY. The user can override through the
9585# --with-noarch-pkgconfigdir parameter.
9586AC_DEFUN([PKG_NOARCH_INSTALLDIR],
9587[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
9588m4_pushdef([pkg_description],
9589 [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
9590AC_ARG_WITH([noarch-pkgconfigdir],
9591 [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
9592 [with_noarch_pkgconfigdir=]pkg_default)
9593AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
9594m4_popdef([pkg_default])
9595m4_popdef([pkg_description])
9596]) dnl PKG_NOARCH_INSTALLDIR
9597
9598
9599# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
9600# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
9601# -------------------------------------------
9602# Retrieves the value of the pkg-config variable for the given module.
9603AC_DEFUN([PKG_CHECK_VAR],
9604[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
9605AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
9606
9607_PKG_CONFIG([$1], [variable="][$3]["], [$2])
9608AS_VAR_COPY([$1], [pkg_cv_][$1])
9609
9610AS_VAR_IF([$1], [""], [$5], [$4])dnl
9611])# PKG_CHECK_VAR
9612
9558# Copyright (C) 2002-2013 Free Software Foundation, Inc.9613# Copyright (C) 2002-2013 Free Software Foundation, Inc.
9559#9614#
9560# This file is free software; the Free Software Foundation9615# This file is free software; the Free Software Foundation
@@ -10108,7 +10163,8 @@
10108END10163END
10109 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])10164 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
10110 fi10165 fi
10111fi])10166fi
10167])
1011210168
10113dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not10169dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
10114dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further10170dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
1011510171
=== modified file 'config.guess'
--- config.guess 2014-06-23 08:06:22 +0000
+++ config.guess 2015-01-04 19:54:48 +0000
@@ -1,8 +1,8 @@
1#! /bin/sh1#! /bin/sh
2# Attempt to guess a canonical system name.2# Attempt to guess a canonical system name.
3# Copyright 1992-2013 Free Software Foundation, Inc.3# Copyright 1992-2014 Free Software Foundation, Inc.
44
5timestamp='2013-06-10'5timestamp='2014-03-23'
66
7# This file is free software; you can redistribute it and/or modify it7# This file is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by8# under the terms of the GNU General Public License as published by
@@ -50,7 +50,7 @@
50GNU config.guess ($timestamp)50GNU config.guess ($timestamp)
5151
52Originally written by Per Bothner.52Originally written by Per Bothner.
53Copyright 1992-2013 Free Software Foundation, Inc.53Copyright 1992-2014 Free Software Foundation, Inc.
5454
55This is free software; see the source for copying conditions. There is NO55This is free software; see the source for copying conditions. There is NO
56warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."56warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -149,7 +149,7 @@
149 LIBC=gnu149 LIBC=gnu
150 #endif150 #endif
151 EOF151 EOF
152 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`152 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
153 ;;153 ;;
154esac154esac
155155
@@ -826,7 +826,7 @@
826 *:MINGW*:*)826 *:MINGW*:*)
827 echo ${UNAME_MACHINE}-pc-mingw32827 echo ${UNAME_MACHINE}-pc-mingw32
828 exit ;;828 exit ;;
829 i*:MSYS*:*)829 *:MSYS*:*)
830 echo ${UNAME_MACHINE}-pc-msys830 echo ${UNAME_MACHINE}-pc-msys
831 exit ;;831 exit ;;
832 i*:windows32*:*)832 i*:windows32*:*)
@@ -969,10 +969,10 @@
969 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`969 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
970 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }970 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
971 ;;971 ;;
972 or1k:Linux:*:*)972 openrisc*:Linux:*:*)
973 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}973 echo or1k-unknown-linux-${LIBC}
974 exit ;;974 exit ;;
975 or32:Linux:*:*)975 or32:Linux:*:* | or1k*:Linux:*:*)
976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}976 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
977 exit ;;977 exit ;;
978 padre:Linux:*:*)978 padre:Linux:*:*)
@@ -1260,16 +1260,26 @@
1260 if test "$UNAME_PROCESSOR" = unknown ; then1260 if test "$UNAME_PROCESSOR" = unknown ; then
1261 UNAME_PROCESSOR=powerpc1261 UNAME_PROCESSOR=powerpc
1262 fi1262 fi
1263 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then1263 if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
1264 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \1264 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
1265 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \1265 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
1266 grep IS_64BIT_ARCH >/dev/null1266 (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
1267 then1267 grep IS_64BIT_ARCH >/dev/null
1268 case $UNAME_PROCESSOR in1268 then
1269 i386) UNAME_PROCESSOR=x86_64 ;;1269 case $UNAME_PROCESSOR in
1270 powerpc) UNAME_PROCESSOR=powerpc64 ;;1270 i386) UNAME_PROCESSOR=x86_64 ;;
1271 esac1271 powerpc) UNAME_PROCESSOR=powerpc64 ;;
1272 esac
1273 fi
1272 fi1274 fi
1275 elif test "$UNAME_PROCESSOR" = i386 ; then
1276 # Avoid executing cc on OS X 10.9, as it ships with a stub
1277 # that puts up a graphical alert prompting to install
1278 # developer tools. Any system running Mac OS X 10.7 or
1279 # later (Darwin 11 and later) is required to have a 64-bit
1280 # processor. This is not true of the ARM version of Darwin
1281 # that Apple uses in portable devices.
1282 UNAME_PROCESSOR=x86_64
1273 fi1283 fi
1274 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}1284 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1275 exit ;;1285 exit ;;
@@ -1361,154 +1371,6 @@
1361 exit ;;1371 exit ;;
1362esac1372esac
13631373
1364eval $set_cc_for_build
1365cat >$dummy.c <<EOF
1366#ifdef _SEQUENT_
1367# include <sys/types.h>
1368# include <sys/utsname.h>
1369#endif
1370main ()
1371{
1372#if defined (sony)
1373#if defined (MIPSEB)
1374 /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
1375 I don't know.... */
1376 printf ("mips-sony-bsd\n"); exit (0);
1377#else
1378#include <sys/param.h>
1379 printf ("m68k-sony-newsos%s\n",
1380#ifdef NEWSOS4
1381 "4"
1382#else
1383 ""
1384#endif
1385 ); exit (0);
1386#endif
1387#endif
1388
1389#if defined (__arm) && defined (__acorn) && defined (__unix)
1390 printf ("arm-acorn-riscix\n"); exit (0);
1391#endif
1392
1393#if defined (hp300) && !defined (hpux)
1394 printf ("m68k-hp-bsd\n"); exit (0);
1395#endif
1396
1397#if defined (NeXT)
1398#if !defined (__ARCHITECTURE__)
1399#define __ARCHITECTURE__ "m68k"
1400#endif
1401 int version;
1402 version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
1403 if (version < 4)
1404 printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
1405 else
1406 printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
1407 exit (0);
1408#endif
1409
1410#if defined (MULTIMAX) || defined (n16)
1411#if defined (UMAXV)
1412 printf ("ns32k-encore-sysv\n"); exit (0);
1413#else
1414#if defined (CMU)
1415 printf ("ns32k-encore-mach\n"); exit (0);
1416#else
1417 printf ("ns32k-encore-bsd\n"); exit (0);
1418#endif
1419#endif
1420#endif
1421
1422#if defined (__386BSD__)
1423 printf ("i386-pc-bsd\n"); exit (0);
1424#endif
1425
1426#if defined (sequent)
1427#if defined (i386)
1428 printf ("i386-sequent-dynix\n"); exit (0);
1429#endif
1430#if defined (ns32000)
1431 printf ("ns32k-sequent-dynix\n"); exit (0);
1432#endif
1433#endif
1434
1435#if defined (_SEQUENT_)
1436 struct utsname un;
1437
1438 uname(&un);
1439
1440 if (strncmp(un.version, "V2", 2) == 0) {
1441 printf ("i386-sequent-ptx2\n"); exit (0);
1442 }
1443 if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
1444 printf ("i386-sequent-ptx1\n"); exit (0);
1445 }
1446 printf ("i386-sequent-ptx\n"); exit (0);
1447
1448#endif
1449
1450#if defined (vax)
1451# if !defined (ultrix)
1452# include <sys/param.h>
1453# if defined (BSD)
1454# if BSD == 43
1455 printf ("vax-dec-bsd4.3\n"); exit (0);
1456# else
1457# if BSD == 199006
1458 printf ("vax-dec-bsd4.3reno\n"); exit (0);
1459# else
1460 printf ("vax-dec-bsd\n"); exit (0);
1461# endif
1462# endif
1463# else
1464 printf ("vax-dec-bsd\n"); exit (0);
1465# endif
1466# else
1467 printf ("vax-dec-ultrix\n"); exit (0);
1468# endif
1469#endif
1470
1471#if defined (alliant) && defined (i860)
1472 printf ("i860-alliant-bsd\n"); exit (0);
1473#endif
1474
1475 exit (1);
1476}
1477EOF
1478
1479$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
1480 { echo "$SYSTEM_NAME"; exit; }
1481
1482# Apollos put the system type in the environment.
1483
1484test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
1485
1486# Convex versions that predate uname can use getsysinfo(1)
1487
1488if [ -x /usr/convex/getsysinfo ]
1489then
1490 case `getsysinfo -f cpu_type` in
1491 c1*)
1492 echo c1-convex-bsd
1493 exit ;;
1494 c2*)
1495 if getsysinfo -f scalar_acc
1496 then echo c32-convex-bsd
1497 else echo c2-convex-bsd
1498 fi
1499 exit ;;
1500 c34*)
1501 echo c34-convex-bsd
1502 exit ;;
1503 c38*)
1504 echo c38-convex-bsd
1505 exit ;;
1506 c4*)
1507 echo c4-convex-bsd
1508 exit ;;
1509 esac
1510fi
1511
1512cat >&2 <<EOF1374cat >&2 <<EOF
1513$0: unable to guess system type1375$0: unable to guess system type
15141376
15151377
=== modified file 'config.sub'
--- config.sub 2014-06-23 08:06:22 +0000
+++ config.sub 2015-01-04 19:54:48 +0000
@@ -1,8 +1,8 @@
1#! /bin/sh1#! /bin/sh
2# Configuration validation subroutine script.2# Configuration validation subroutine script.
3# Copyright 1992-2013 Free Software Foundation, Inc.3# Copyright 1992-2014 Free Software Foundation, Inc.
44
5timestamp='2013-08-10'5timestamp='2014-09-11'
66
7# This file is free software; you can redistribute it and/or modify it7# This file is free software; you can redistribute it and/or modify it
8# under the terms of the GNU General Public License as published by8# under the terms of the GNU General Public License as published by
@@ -68,7 +68,7 @@
68version="\68version="\
69GNU config.sub ($timestamp)69GNU config.sub ($timestamp)
7070
71Copyright 1992-2013 Free Software Foundation, Inc.71Copyright 1992-2014 Free Software Foundation, Inc.
7272
73This is free software; see the source for copying conditions. There is NO73This is free software; see the source for copying conditions. There is NO
74warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."74warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -265,6 +265,7 @@
265 | hexagon \265 | hexagon \
266 | i370 | i860 | i960 | ia64 \266 | i370 | i860 | i960 | ia64 \
267 | ip2k | iq2000 \267 | ip2k | iq2000 \
268 | k1om \
268 | le32 | le64 \269 | le32 | le64 \
269 | lm32 \270 | lm32 \
270 | m32c | m32r | m32rle | m68000 | m68k | m88k \271 | m32c | m32r | m32rle | m68000 | m68k | m88k \
@@ -282,8 +283,10 @@
282 | mips64vr5900 | mips64vr5900el \283 | mips64vr5900 | mips64vr5900el \
283 | mipsisa32 | mipsisa32el \284 | mipsisa32 | mipsisa32el \
284 | mipsisa32r2 | mipsisa32r2el \285 | mipsisa32r2 | mipsisa32r2el \
286 | mipsisa32r6 | mipsisa32r6el \
285 | mipsisa64 | mipsisa64el \287 | mipsisa64 | mipsisa64el \
286 | mipsisa64r2 | mipsisa64r2el \288 | mipsisa64r2 | mipsisa64r2el \
289 | mipsisa64r6 | mipsisa64r6el \
287 | mipsisa64sb1 | mipsisa64sb1el \290 | mipsisa64sb1 | mipsisa64sb1el \
288 | mipsisa64sr71k | mipsisa64sr71kel \291 | mipsisa64sr71k | mipsisa64sr71kel \
289 | mipsr5900 | mipsr5900el \292 | mipsr5900 | mipsr5900el \
@@ -295,11 +298,11 @@
295 | nds32 | nds32le | nds32be \298 | nds32 | nds32le | nds32be \
296 | nios | nios2 | nios2eb | nios2el \299 | nios | nios2 | nios2eb | nios2el \
297 | ns16k | ns32k \300 | ns16k | ns32k \
298 | open8 \301 | open8 | or1k | or1knd | or32 \
299 | or1k | or32 \
300 | pdp10 | pdp11 | pj | pjl \302 | pdp10 | pdp11 | pj | pjl \
301 | powerpc | powerpc64 | powerpc64le | powerpcle \303 | powerpc | powerpc64 | powerpc64le | powerpcle \
302 | pyramid \304 | pyramid \
305 | riscv32 | riscv64 \
303 | rl78 | rx \306 | rl78 | rx \
304 | score \307 | score \
305 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \308 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
@@ -324,7 +327,7 @@
324 c6x)327 c6x)
325 basic_machine=tic6x-unknown328 basic_machine=tic6x-unknown
326 ;;329 ;;
327 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)330 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
328 basic_machine=$basic_machine-unknown331 basic_machine=$basic_machine-unknown
329 os=-none332 os=-none
330 ;;333 ;;
@@ -381,6 +384,7 @@
381 | hexagon-* \384 | hexagon-* \
382 | i*86-* | i860-* | i960-* | ia64-* \385 | i*86-* | i860-* | i960-* | ia64-* \
383 | ip2k-* | iq2000-* \386 | ip2k-* | iq2000-* \
387 | k1om-* \
384 | le32-* | le64-* \388 | le32-* | le64-* \
385 | lm32-* \389 | lm32-* \
386 | m32c-* | m32r-* | m32rle-* \390 | m32c-* | m32r-* | m32rle-* \
@@ -400,8 +404,10 @@
400 | mips64vr5900-* | mips64vr5900el-* \404 | mips64vr5900-* | mips64vr5900el-* \
401 | mipsisa32-* | mipsisa32el-* \405 | mipsisa32-* | mipsisa32el-* \
402 | mipsisa32r2-* | mipsisa32r2el-* \406 | mipsisa32r2-* | mipsisa32r2el-* \
407 | mipsisa32r6-* | mipsisa32r6el-* \
403 | mipsisa64-* | mipsisa64el-* \408 | mipsisa64-* | mipsisa64el-* \
404 | mipsisa64r2-* | mipsisa64r2el-* \409 | mipsisa64r2-* | mipsisa64r2el-* \
410 | mipsisa64r6-* | mipsisa64r6el-* \
405 | mipsisa64sb1-* | mipsisa64sb1el-* \411 | mipsisa64sb1-* | mipsisa64sb1el-* \
406 | mipsisa64sr71k-* | mipsisa64sr71kel-* \412 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
407 | mipsr5900-* | mipsr5900el-* \413 | mipsr5900-* | mipsr5900el-* \
@@ -413,6 +419,7 @@
413 | nios-* | nios2-* | nios2eb-* | nios2el-* \419 | nios-* | nios2-* | nios2eb-* | nios2el-* \
414 | none-* | np1-* | ns16k-* | ns32k-* \420 | none-* | np1-* | ns16k-* | ns32k-* \
415 | open8-* \421 | open8-* \
422 | or1k*-* \
416 | orion-* \423 | orion-* \
417 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \424 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
418 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \425 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
@@ -822,6 +829,10 @@
822 basic_machine=powerpc-unknown829 basic_machine=powerpc-unknown
823 os=-morphos830 os=-morphos
824 ;;831 ;;
832 moxiebox)
833 basic_machine=moxie-unknown
834 os=-moxiebox
835 ;;
825 msdos)836 msdos)
826 basic_machine=i386-pc837 basic_machine=i386-pc
827 os=-msdos838 os=-msdos
@@ -1367,14 +1378,14 @@
1367 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \1378 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1368 | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \1379 | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
1369 | -linux-newlib* | -linux-musl* | -linux-uclibc* \1380 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
1370 | -uxpv* | -beos* | -mpeix* | -udk* \1381 | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
1371 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \1382 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1372 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \1383 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1373 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \1384 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1374 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \1385 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1375 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \1386 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1376 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \1387 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1377 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)1388 | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*)
1378 # Remember, each alternative MUST END IN *, to match a version number.1389 # Remember, each alternative MUST END IN *, to match a version number.
1379 ;;1390 ;;
1380 -qnx*)1391 -qnx*)
@@ -1592,9 +1603,6 @@
1592 mips*-*)1603 mips*-*)
1593 os=-elf1604 os=-elf
1594 ;;1605 ;;
1595 or1k-*)
1596 os=-elf
1597 ;;
1598 or32-*)1606 or32-*)
1599 os=-coff1607 os=-coff
1600 ;;1608 ;;
16011609
=== modified file 'configure'
--- configure 2014-06-23 08:06:22 +0000
+++ configure 2015-01-04 19:54:48 +0000
@@ -1,7 +1,7 @@
1#! /bin/sh1#! /bin/sh
2# From configure.ac 61cba9a.2# From configure.ac b0e0492.
3# Guess values for system-dependent variables and create Makefiles.3# Guess values for system-dependent variables and create Makefiles.
4# Generated by GNU Autoconf 2.69 for xfce4-panel 4.11.1.4# Generated by GNU Autoconf 2.69 for xfce4-panel 4.11.2.
5#5#
6# Report bugs to <http://bugzilla.xfce.org/>.6# Report bugs to <http://bugzilla.xfce.org/>.
7#7#
@@ -597,8 +597,8 @@
597# Identity of this package.597# Identity of this package.
598PACKAGE_NAME='xfce4-panel'598PACKAGE_NAME='xfce4-panel'
599PACKAGE_TARNAME='xfce4-panel'599PACKAGE_TARNAME='xfce4-panel'
600PACKAGE_VERSION='4.11.1'600PACKAGE_VERSION='4.11.2'
601PACKAGE_STRING='xfce4-panel 4.11.1'601PACKAGE_STRING='xfce4-panel 4.11.2'
602PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'602PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'
603PACKAGE_URL=''603PACKAGE_URL=''
604604
@@ -1499,7 +1499,7 @@
1499 # Omit some internal or obsolete options to make the list less imposing.1499 # Omit some internal or obsolete options to make the list less imposing.
1500 # This message is too long to be a string in the A/UX 3.1 sh.1500 # This message is too long to be a string in the A/UX 3.1 sh.
1501 cat <<_ACEOF1501 cat <<_ACEOF
1502\`configure' configures xfce4-panel 4.11.1 to adapt to many kinds of systems.1502\`configure' configures xfce4-panel 4.11.2 to adapt to many kinds of systems.
15031503
1504Usage: $0 [OPTION]... [VAR=VALUE]...1504Usage: $0 [OPTION]... [VAR=VALUE]...
15051505
@@ -1573,7 +1573,7 @@
15731573
1574if test -n "$ac_init_help"; then1574if test -n "$ac_init_help"; then
1575 case $ac_init_help in1575 case $ac_init_help in
1576 short | recursive ) echo "Configuration of xfce4-panel 4.11.1:";;1576 short | recursive ) echo "Configuration of xfce4-panel 4.11.2:";;
1577 esac1577 esac
1578 cat <<\_ACEOF1578 cat <<\_ACEOF
15791579
@@ -1715,7 +1715,7 @@
1715test -n "$ac_init_help" && exit $ac_status1715test -n "$ac_init_help" && exit $ac_status
1716if $ac_init_version; then1716if $ac_init_version; then
1717 cat <<\_ACEOF1717 cat <<\_ACEOF
1718xfce4-panel configure 4.11.11718xfce4-panel configure 4.11.2
1719generated by GNU Autoconf 2.691719generated by GNU Autoconf 2.69
17201720
1721Copyright (C) 2012 Free Software Foundation, Inc.1721Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2090,7 +2090,7 @@
2090This file contains any messages produced by compilers while2090This file contains any messages produced by compilers while
2091running configure, to aid debugging if configure makes a mistake.2091running configure, to aid debugging if configure makes a mistake.
20922092
2093It was created by xfce4-panel $as_me 4.11.1, which was2093It was created by xfce4-panel $as_me 4.11.2, which was
2094generated by GNU Autoconf 2.69. Invocation command line was2094generated by GNU Autoconf 2.69. Invocation command line was
20952095
2096 $ $0 $@2096 $ $0 $@
@@ -2958,7 +2958,7 @@
29582958
2959# Define the identity of the package.2959# Define the identity of the package.
2960 PACKAGE='xfce4-panel'2960 PACKAGE='xfce4-panel'
2961 VERSION='4.11.1'2961 VERSION='4.11.2'
29622962
29632963
2964cat >>confdefs.h <<_ACEOF2964cat >>confdefs.h <<_ACEOF
@@ -3167,6 +3167,7 @@
3167 fi3167 fi
3168fi3168fi
31693169
3170
3170{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&53171{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
3171$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }3172$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
3172 # Check whether --enable-maintainer-mode was given.3173 # Check whether --enable-maintainer-mode was given.
@@ -13413,11 +13414,11 @@
13413LIBXFCE4PANEL_VERINFO=4:0:013414LIBXFCE4PANEL_VERINFO=4:0:0
1341413415
1341513416
13416LIBXFCE4PANEL_VERSION=4.11.113417LIBXFCE4PANEL_VERSION=4.11.2
13417LIBXFCE4PANEL_VERSION_API=1.013418LIBXFCE4PANEL_VERSION_API=1.0
13418LIBXFCE4PANEL_VERSION_MAJOR=413419LIBXFCE4PANEL_VERSION_MAJOR=4
13419LIBXFCE4PANEL_VERSION_MINOR=1113420LIBXFCE4PANEL_VERSION_MINOR=11
13420LIBXFCE4PANEL_VERSION_MICRO=113421LIBXFCE4PANEL_VERSION_MICRO=2
1342113422
13422$as_echo "#define LIBXFCE4PANEL_VERSION_API \"1.0\"" >>confdefs.h13423$as_echo "#define LIBXFCE4PANEL_VERSION_API \"1.0\"" >>confdefs.h
1342313424
@@ -19288,7 +19289,7 @@
19288# report actual input values of CONFIG_FILES etc. instead of their19289# report actual input values of CONFIG_FILES etc. instead of their
19289# values after options handling.19290# values after options handling.
19290ac_log="19291ac_log="
19291This file was extended by xfce4-panel $as_me 4.11.1, which was19292This file was extended by xfce4-panel $as_me 4.11.2, which was
19292generated by GNU Autoconf 2.69. Invocation command line was19293generated by GNU Autoconf 2.69. Invocation command line was
1929319294
19294 CONFIG_FILES = $CONFIG_FILES19295 CONFIG_FILES = $CONFIG_FILES
@@ -19354,7 +19355,7 @@
19354cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=119355cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
19355ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"19356ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
19356ac_cs_version="\\19357ac_cs_version="\\
19357xfce4-panel config.status 4.11.119358xfce4-panel config.status 4.11.2
19358configured by $0, generated by GNU Autoconf 2.69,19359configured by $0, generated by GNU Autoconf 2.69,
19359 with options \\"\$ac_cs_config\\"19360 with options \\"\$ac_cs_config\\"
1936019361
1936119362
=== modified file 'configure.ac'
--- configure.ac 2014-06-23 08:06:22 +0000
+++ configure.ac 2015-01-04 19:54:48 +0000
@@ -18,9 +18,9 @@
18m4_define([xfce4_panel_config_version], [2])18m4_define([xfce4_panel_config_version], [2])
19m4_define([xfce4_panel_version_major], [4])19m4_define([xfce4_panel_version_major], [4])
20m4_define([xfce4_panel_version_minor], [11])20m4_define([xfce4_panel_version_minor], [11])
21m4_define([xfce4_panel_version_micro], [1])21m4_define([xfce4_panel_version_micro], [2])
22m4_define([xfce4_panel_version_nano], []) dnl leave this empty to have no nano version22m4_define([xfce4_panel_version_nano], []) dnl leave this empty to have no nano version
23m4_define([xfce4_panel_version_build], [61cba9a])23m4_define([xfce4_panel_version_build], [b0e0492])
24m4_define([xfce4_panel_version_tag], [])24m4_define([xfce4_panel_version_tag], [])
25m4_define([xfce4_panel_version], [xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(), [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], [xfce4_panel_version_tag()-xfce4_panel_version_build()], [xfce4_panel_version_tag()])])25m4_define([xfce4_panel_version], [xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(), [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], [xfce4_panel_version_tag()-xfce4_panel_version_build()], [xfce4_panel_version_tag()])])
2626
2727
=== modified file 'debian/changelog'
--- debian/changelog 2014-10-14 06:15:01 +0000
+++ debian/changelog 2015-01-04 19:54:48 +0000
@@ -1,3 +1,9 @@
1xfce4-panel (4.11.2-0ubuntu1) vivid; urgency=medium
2
3 * New upstream release.
4
5 -- Jackson Doak <noskcaj@ubuntu.com> Mon, 05 Jan 2015 06:15:06 +1100
6
1xfce4-panel (4.11.1-0ubuntu2) utopic; urgency=medium7xfce4-panel (4.11.1-0ubuntu2) utopic; urgency=medium
28
3 * debian/patches/02_support-dmtool.patch9 * debian/patches/02_support-dmtool.patch
410
=== modified file 'debian/patches/02_support-dmtool.patch'
--- debian/patches/02_support-dmtool.patch 2014-10-14 06:15:01 +0000
+++ debian/patches/02_support-dmtool.patch 2015-01-04 19:54:48 +0000
@@ -6,9 +6,13 @@
6Last-Update: 2014-10-116Last-Update: 2014-10-11
7---7---
8This patch header follows DEP-3: http://dep.debian.net/deps/dep3/8This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
9---
10 plugins/actions/actions.c | 18 ++++++++++++++++--
11 1 file changed, 16 insertions(+), 2 deletions(-)
12
9--- a/plugins/actions/actions.c13--- a/plugins/actions/actions.c
10+++ b/plugins/actions/actions.c14+++ b/plugins/actions/actions.c
11@@ -860,9 +860,17 @@15@@ -860,9 +860,17 @@ actions_plugin_actions_allowed (void)
12 GError *error = NULL;16 GError *error = NULL;
13 17
14 /* check for commands we use */18 /* check for commands we use */
@@ -27,15 +31,15 @@
27 g_free (path);31 g_free (path);
28 32
29 path = g_find_program_in_path ("xflock4");33 path = g_find_program_in_path ("xflock4");
30@@ -915,6 +923,7 @@34@@ -917,6 +925,7 @@ actions_plugin_action_activate (GtkWidge
31 gboolean unattended = FALSE;35 gboolean succeed = FALSE;
32 GError *error = NULL;36 XfconfChannel *channel;
33 gboolean succeed = FALSE;37 gboolean allow_save;
34+ gchar *path;38+ gchar *path;
35 39
36 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);40 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);
37 panel_return_if_fail (entry != NULL);41 panel_return_if_fail (entry != NULL);
38@@ -958,7 +967,12 @@42@@ -965,7 +974,12 @@ actions_plugin_action_activate (GtkWidge
39 break;43 break;
40 44
41 case ACTION_TYPE_SWITCH_USER:45 case ACTION_TYPE_SWITCH_USER:
4246
=== modified file 'docs/references/html/XfceArrowButton.html'
--- docs/references/html/XfceArrowButton.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/XfceArrowButton.html 2015-01-04 19:54:48 +0000
@@ -8,17 +8,17 @@
8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
9<link rel="prev" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">9<link rel="prev" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
10<link rel="next" href="XfceHVBox.html" title="XfceHVBox">10<link rel="next" href="XfceHVBox.html" title="XfceHVBox">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#XfceArrowButton.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#XfceArrowButton.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#XfceArrowButton.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 19 <a href="#XfceArrowButton.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20 <a href="#XfceArrowButton.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 20 <a href="#XfceArrowButton.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21 <a href="#XfceArrowButton.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span> 21 <a href="#XfceArrowButton.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22 <a href="#XfceArrowButton.signals" class="shortcut">Signals</a></span>22 <a href="#XfceArrowButton.signals" class="shortcut">Signals</a></span>
23</td>23</td>
24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -45,7 +45,7 @@
45<tbody>45<tbody>
46<tr>46<tr>
47<td class="function_type">47<td class="function_type">
48<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *48<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
49</td>49</td>
50<td class="function_name">50<td class="function_name">
51<a class="link" href="XfceArrowButton.html#xfce-arrow-button-new" title="xfce_arrow_button_new ()">xfce_arrow_button_new</a> <span class="c_punctuation">()</span>51<a class="link" href="XfceArrowButton.html#xfce-arrow-button-new" title="xfce_arrow_button_new ()">xfce_arrow_button_new</a> <span class="c_punctuation">()</span>
@@ -53,7 +53,7 @@
53</tr>53</tr>
54<tr>54<tr>
55<td class="function_type">55<td class="function_type">
56<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>56<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
57</td>57</td>
58<td class="function_name">58<td class="function_name">
59<a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-arrow-type" title="xfce_arrow_button_get_arrow_type ()">xfce_arrow_button_get_arrow_type</a> <span class="c_punctuation">()</span>59<a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-arrow-type" title="xfce_arrow_button_get_arrow_type ()">xfce_arrow_button_get_arrow_type</a> <span class="c_punctuation">()</span>
@@ -69,7 +69,7 @@
69</tr>69</tr>
70<tr>70<tr>
71<td class="function_type">71<td class="function_type">
72<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>72<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
73</td>73</td>
74<td class="function_name">74<td class="function_name">
75<a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-blinking" title="xfce_arrow_button_get_blinking ()">xfce_arrow_button_get_blinking</a> <span class="c_punctuation">()</span>75<a class="link" href="XfceArrowButton.html#xfce-arrow-button-get-blinking" title="xfce_arrow_button_get_blinking ()">xfce_arrow_button_get_blinking</a> <span class="c_punctuation">()</span>
@@ -95,7 +95,7 @@
95<col width="200px" class="properties_flags">95<col width="200px" class="properties_flags">
96</colgroup>96</colgroup>
97<tbody><tr>97<tbody><tr>
98<td class="property_type"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></td>98<td class="property_type"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></td>
99<td class="property_name"><a class="link" href="XfceArrowButton.html#XfceArrowButton--arrow-type" title="The “arrow-type” property">arrow-type</a></td>99<td class="property_name"><a class="link" href="XfceArrowButton.html#XfceArrowButton--arrow-type" title="The “arrow-type” property">arrow-type</a></td>
100<td class="property_flags">Read / Write</td>100<td class="property_flags">Read / Write</td>
101</tr></tbody>101</tr></tbody>
@@ -131,14 +131,14 @@
131</div>131</div>
132<div class="refsect1">132<div class="refsect1">
133<a name="XfceArrowButton.object-hierarchy"></a><h2>Object Hierarchy</h2>133<a name="XfceArrowButton.object-hierarchy"></a><h2>Object Hierarchy</h2>
134<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>134<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
135 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>135 <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
136 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>136 <span class="lineart">╰──</span> GtkObject
137 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>137 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
138 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>138 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
139 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBin.html">GtkBin</a>139 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
140 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkButton.html">GtkButton</a>140 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkButton.html">GtkButton</a>
141 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkToggleButton.html">GtkToggleButton</a>141 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html">GtkToggleButton</a>
142 <span class="lineart">╰──</span> XfceArrowButton142 <span class="lineart">╰──</span> XfceArrowButton
143</pre>143</pre>
144</div>144</div>
@@ -146,7 +146,7 @@
146<a name="XfceArrowButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>146<a name="XfceArrowButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
147<p>147<p>
148XfceArrowButton implements148XfceArrowButton implements
149 AtkImplementorIface, <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a> and <a href="http://library.gnome.org/devel/gtk3/GtkActivatable.html">GtkActivatable</a>.</p>149 <a href="/usr/share/gtk-doc/html/atk/AtkObject.html#AtkImplementorIface">AtkImplementorIface</a>, <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and <a href="http://developer.gnome.org/gtk2/GtkActivatable.html">GtkActivatable</a>.</p>
150</div>150</div>
151<div class="refsect1">151<div class="refsect1">
152<a name="XfceArrowButton.includes"></a><h2>Includes</h2>152<a name="XfceArrowButton.includes"></a><h2>Includes</h2>
@@ -158,14 +158,14 @@
158<p>Toggle button with (optional) arrow. The arrow direction will be158<p>Toggle button with (optional) arrow. The arrow direction will be
159inverted when the button is toggled.159inverted when the button is toggled.
160Since 4.8 it is also possible to make the button blink and pack additional160Since 4.8 it is also possible to make the button blink and pack additional
161widgets in the button, using <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html#gtk-container-add"><code class="function">gtk_container_add()</code></a>.</p>161widgets in the button, using <a href="http://developer.gnome.org/gtk2/GtkContainer.html#gtk-container-add"><code class="function">gtk_container_add()</code></a>.</p>
162</div>162</div>
163<div class="refsect1">163<div class="refsect1">
164<a name="XfceArrowButton.functions_details"></a><h2>Functions</h2>164<a name="XfceArrowButton.functions_details"></a><h2>Functions</h2>
165<div class="refsect2">165<div class="refsect2">
166<a name="xfce-arrow-button-new"></a><h3>xfce_arrow_button_new ()</h3>166<a name="xfce-arrow-button-new"></a><h3>xfce_arrow_button_new ()</h3>
167<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *167<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
168xfce_arrow_button_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>168xfce_arrow_button_new (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>
169<p>Creates a new <a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> widget.</p>169<p>Creates a new <a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> widget.</p>
170<div class="refsect3">170<div class="refsect3">
171<a name="id-1.4.3.11.2.5"></a><h4>Parameters</h4>171<a name="id-1.4.3.11.2.5"></a><h4>Parameters</h4>
@@ -177,7 +177,7 @@
177</colgroup>177</colgroup>
178<tbody><tr>178<tbody><tr>
179<td class="parameter_name"><p>arrow_type</p></td>179<td class="parameter_name"><p>arrow_type</p></td>
180<td class="parameter_description"><p><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for the arrow button</p></td>180<td class="parameter_description"><p><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for the arrow button</p></td>
181<td class="parameter_annotations"> </td>181<td class="parameter_annotations"> </td>
182</tr></tbody>182</tr></tbody>
183</table></div>183</table></div>
@@ -191,7 +191,7 @@
191<hr>191<hr>
192<div class="refsect2">192<div class="refsect2">
193<a name="xfce-arrow-button-get-arrow-type"></a><h3>xfce_arrow_button_get_arrow_type ()</h3>193<a name="xfce-arrow-button-get-arrow-type"></a><h3>xfce_arrow_button_get_arrow_type ()</h3>
194<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>194<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
195xfce_arrow_button_get_arrow_type (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>195xfce_arrow_button_get_arrow_type (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
196<p>Returns the value of the ::arrow-type property.</p>196<p>Returns the value of the ::arrow-type property.</p>
197<div class="refsect3">197<div class="refsect3">
@@ -211,7 +211,7 @@
211</div>211</div>
212<div class="refsect3">212<div class="refsect3">
213<a name="id-1.4.3.11.3.6"></a><h4>Returns</h4>213<a name="id-1.4.3.11.3.6"></a><h4>Returns</h4>
214<p> the <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of <em class="parameter"><code>button</code></em>214<p> the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of <em class="parameter"><code>button</code></em>
215.</p>215.</p>
216<p></p>216<p></p>
217</div>217</div>
@@ -221,7 +221,7 @@
221<a name="xfce-arrow-button-set-arrow-type"></a><h3>xfce_arrow_button_set_arrow_type ()</h3>221<a name="xfce-arrow-button-set-arrow-type"></a><h3>xfce_arrow_button_set_arrow_type ()</h3>
222<pre class="programlisting"><span class="returnvalue">void</span>222<pre class="programlisting"><span class="returnvalue">void</span>
223xfce_arrow_button_set_arrow_type (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,223xfce_arrow_button_set_arrow_type (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
224 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>224 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> arrow_type</code></em>);</pre>
225<p>Sets the arrow type for <em class="parameter"><code>button</code></em>225<p>Sets the arrow type for <em class="parameter"><code>button</code></em>
226.</p>226.</p>
227<div class="refsect3">227<div class="refsect3">
@@ -240,7 +240,7 @@
240</tr>240</tr>
241<tr>241<tr>
242<td class="parameter_name"><p>arrow_type</p></td>242<td class="parameter_name"><p>arrow_type</p></td>
243<td class="parameter_description"><p>a valid <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></p></td>243<td class="parameter_description"><p>a valid <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></p></td>
244<td class="parameter_annotations"> </td>244<td class="parameter_annotations"> </td>
245</tr>245</tr>
246</tbody>246</tbody>
@@ -250,10 +250,10 @@
250<hr>250<hr>
251<div class="refsect2">251<div class="refsect2">
252<a name="xfce-arrow-button-get-blinking"></a><h3>xfce_arrow_button_get_blinking ()</h3>252<a name="xfce-arrow-button-get-blinking"></a><h3>xfce_arrow_button_get_blinking ()</h3>
253<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>253<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
254xfce_arrow_button_get_blinking (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>254xfce_arrow_button_get_blinking (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>);</pre>
255<p>Whether the button is blinking. If the blink timeout is finished255<p>Whether the button is blinking. If the blink timeout is finished
256and the button is still highlighted, this functions returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>256and the button is still highlighted, this functions returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</p>
257<div class="refsect3">257<div class="refsect3">
258<a name="id-1.4.3.11.5.5"></a><h4>Parameters</h4>258<a name="id-1.4.3.11.5.5"></a><h4>Parameters</h4>
259<div class="informaltable"><table width="100%" border="0">259<div class="informaltable"><table width="100%" border="0">
@@ -271,7 +271,7 @@
271</div>271</div>
272<div class="refsect3">272<div class="refsect3">
273<a name="id-1.4.3.11.5.6"></a><h4>Returns</h4>273<a name="id-1.4.3.11.5.6"></a><h4>Returns</h4>
274<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>button</code></em>274<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when <em class="parameter"><code>button</code></em>
275is blinking.</p>275is blinking.</p>
276<p></p>276<p></p>
277</div>277</div>
@@ -282,7 +282,7 @@
282<a name="xfce-arrow-button-set-blinking"></a><h3>xfce_arrow_button_set_blinking ()</h3>282<a name="xfce-arrow-button-set-blinking"></a><h3>xfce_arrow_button_set_blinking ()</h3>
283<pre class="programlisting"><span class="returnvalue">void</span>283<pre class="programlisting"><span class="returnvalue">void</span>
284xfce_arrow_button_set_blinking (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,284xfce_arrow_button_set_blinking (<em class="parameter"><code><a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button</code></em>,
285 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);</pre>285 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blinking</code></em>);</pre>
286<p>Make the button blink.</p>286<p>Make the button blink.</p>
287<div class="refsect3">287<div class="refsect3">
288<a name="id-1.4.3.11.6.5"></a><h4>Parameters</h4>288<a name="id-1.4.3.11.6.5"></a><h4>Parameters</h4>
@@ -300,7 +300,7 @@
300</tr>300</tr>
301<tr>301<tr>
302<td class="parameter_name"><p>blinking</p></td>302<td class="parameter_name"><p>blinking</p></td>
303<td class="parameter_description"><p><a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the button should start blinking, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to303<td class="parameter_description"><p><a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the button should start blinking, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to
304stop the blinking.</p></td>304stop the blinking.</p></td>
305<td class="parameter_annotations"> </td>305<td class="parameter_annotations"> </td>
306</tr>306</tr>
@@ -323,7 +323,7 @@
323<a name="XfceArrowButton.property-details"></a><h2>Property Details</h2>323<a name="XfceArrowButton.property-details"></a><h2>Property Details</h2>
324<div class="refsect2">324<div class="refsect2">
325<a name="XfceArrowButton--arrow-type"></a><h3>The <code class="literal">“arrow-type”</code> property</h3>325<a name="XfceArrowButton--arrow-type"></a><h3>The <code class="literal">“arrow-type”</code> property</h3>
326<pre class="programlisting"> “arrow-type” <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></pre>326<pre class="programlisting"> “arrow-type” <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></pre>
327<p>The arrow type of the button. This value also determines the direction327<p>The arrow type of the button. This value also determines the direction
328of the popup menu.</p>328of the popup menu.</p>
329<p>Flags: Read / Write</p>329<p>Flags: Read / Write</p>
@@ -336,8 +336,8 @@
336<a name="XfceArrowButton-arrow-type-changed"></a><h3>The <code class="literal">“arrow-type-changed”</code> signal</h3>336<a name="XfceArrowButton-arrow-type-changed"></a><h3>The <code class="literal">“arrow-type-changed”</code> signal</h3>
337<pre class="programlisting"><span class="returnvalue">void</span>337<pre class="programlisting"><span class="returnvalue">void</span>
338user_function (<a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button,338user_function (<a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button,
339 <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> type,339 <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> type,
340 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>340 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
341<p>Emitted when the arrow direction of the menu button changes.341<p>Emitted when the arrow direction of the menu button changes.
342This value also determines the direction of the popup menu.</p>342This value also determines the direction of the popup menu.</p>
343<div class="refsect3">343<div class="refsect3">
@@ -356,7 +356,7 @@
356</tr>356</tr>
357<tr>357<tr>
358<td class="parameter_name"><p>type</p></td>358<td class="parameter_name"><p>type</p></td>
359<td class="parameter_description"><p>the new <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of the button</p></td>359<td class="parameter_description"><p>the new <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> of the button</p></td>
360<td class="parameter_annotations"> </td>360<td class="parameter_annotations"> </td>
361</tr>361</tr>
362<tr>362<tr>
@@ -373,6 +373,6 @@
373</div>373</div>
374<div class="footer">374<div class="footer">
375<hr>375<hr>
376 Generated by GTK-Doc V1.20</div>376 Generated by GTK-Doc V1.21</div>
377</body>377</body>
378</html>378</html>
379\ No newline at end of file379\ No newline at end of file
380380
=== modified file 'docs/references/html/XfceHVBox.html'
--- docs/references/html/XfceHVBox.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/XfceHVBox.html 2015-01-04 19:54:48 +0000
@@ -8,15 +8,15 @@
8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
9<link rel="prev" href="XfceArrowButton.html" title="XfceArrowButton">9<link rel="prev" href="XfceArrowButton.html" title="XfceArrowButton">
10<link rel="next" href="XfcePanelImage.html" title="XfcePanelImage">10<link rel="next" href="XfcePanelImage.html" title="XfcePanelImage">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#XfceHVBox.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#XfceHVBox.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#XfceHVBox.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 19 <a href="#XfceHVBox.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20 <a href="#XfceHVBox.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span>20 <a href="#XfceHVBox.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span>
21</td>21</td>
22<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>22<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -43,7 +43,7 @@
43<tbody>43<tbody>
44<tr>44<tr>
45<td class="function_type">45<td class="function_type">
46<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *46<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
47</td>47</td>
48<td class="function_name">48<td class="function_name">
49<a class="link" href="XfceHVBox.html#xfce-hvbox-new" title="xfce_hvbox_new ()">xfce_hvbox_new</a> <span class="c_punctuation">()</span>49<a class="link" href="XfceHVBox.html#xfce-hvbox-new" title="xfce_hvbox_new ()">xfce_hvbox_new</a> <span class="c_punctuation">()</span>
@@ -59,7 +59,7 @@
59</tr>59</tr>
60<tr>60<tr>
61<td class="function_type">61<td class="function_type">
62<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>62<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
63</td>63</td>
64<td class="function_name">64<td class="function_name">
65<a class="link" href="XfceHVBox.html#xfce-hvbox-get-orientation" title="xfce_hvbox_get_orientation ()">xfce_hvbox_get_orientation</a> <span class="c_punctuation">()</span>65<a class="link" href="XfceHVBox.html#xfce-hvbox-get-orientation" title="xfce_hvbox_get_orientation ()">xfce_hvbox_get_orientation</a> <span class="c_punctuation">()</span>
@@ -83,12 +83,12 @@
83</div>83</div>
84<div class="refsect1">84<div class="refsect1">
85<a name="XfceHVBox.object-hierarchy"></a><h2>Object Hierarchy</h2>85<a name="XfceHVBox.object-hierarchy"></a><h2>Object Hierarchy</h2>
86<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>86<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
87 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>87 <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
88 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>88 <span class="lineart">╰──</span> GtkObject
89 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>89 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
90 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>90 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
91 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBox.html">GtkBox</a>91 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBox.html">GtkBox</a>
92 <span class="lineart">╰──</span> XfceHVBox92 <span class="lineart">╰──</span> XfceHVBox
93</pre>93</pre>
94</div>94</div>
@@ -96,7 +96,7 @@
96<a name="XfceHVBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>96<a name="XfceHVBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
97<p>97<p>
98XfceHVBox implements98XfceHVBox implements
99 AtkImplementorIface, <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a> and <a href="http://library.gnome.org/devel/gtk3/gtk2-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>99 <a href="/usr/share/gtk-doc/html/atk/AtkObject.html#AtkImplementorIface">AtkImplementorIface</a>, <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and <a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#GtkOrientable">GtkOrientable</a>.</p>
100</div>100</div>
101<div class="refsect1">101<div class="refsect1">
102<a name="XfceHVBox.includes"></a><h2>Includes</h2>102<a name="XfceHVBox.includes"></a><h2>Includes</h2>
@@ -105,21 +105,21 @@
105</div>105</div>
106<div class="refsect1">106<div class="refsect1">
107<a name="XfceHVBox.description"></a><h2>Description</h2>107<a name="XfceHVBox.description"></a><h2>Description</h2>
108<p><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> is a <a href="http://library.gnome.org/devel/gtk3/GtkBox.html"><span class="type">GtkBox</span></a> widget that allows the user to change108<p><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> is a <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a> widget that allows the user to change
109its orientation. It is in fact a combination of <a href="http://library.gnome.org/devel/gtk3/GtkHBox.html"><span class="type">GtkHBox</span></a> and <a href="http://library.gnome.org/devel/gtk3/GtkVBox.html"><span class="type">GtkVBox</span></a>.</p>109its orientation. It is in fact a combination of <a href="http://developer.gnome.org/gtk2/GtkHBox.html"><span class="type">GtkHBox</span></a> and <a href="http://developer.gnome.org/gtk2/GtkVBox.html"><span class="type">GtkVBox</span></a>.</p>
110<p>If your code depends on Gtk+ 2.16 or later, if it better to use110<p>If your code depends on Gtk+ 2.16 or later, if it better to use
111the normal <a href="http://library.gnome.org/devel/gtk3/GtkBox.html"><span class="type">GtkBox</span></a> widgets in combination with111the normal <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a> widgets in combination with
112<a href="http://library.gnome.org/devel/gtk3/gtk2-Orientable.html#gtk-orientable-set-orientation"><code class="function">gtk_orientable_set_orientation()</code></a>.</p>112<a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#gtk-orientable-set-orientation"><code class="function">gtk_orientable_set_orientation()</code></a>.</p>
113<p>See also: <a href="http://library.gnome.org/devel/gtk3/gtk2-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> and <a href="http://library.gnome.org/devel/gtk3/GtkBox.html"><span class="type">GtkBox</span></a>.</p>113<p>See also: <a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#GtkOrientable"><span class="type">GtkOrientable</span></a> and <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a>.</p>
114</div>114</div>
115<div class="refsect1">115<div class="refsect1">
116<a name="XfceHVBox.functions_details"></a><h2>Functions</h2>116<a name="XfceHVBox.functions_details"></a><h2>Functions</h2>
117<div class="refsect2">117<div class="refsect2">
118<a name="xfce-hvbox-new"></a><h3>xfce_hvbox_new ()</h3>118<a name="xfce-hvbox-new"></a><h3>xfce_hvbox_new ()</h3>
119<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *119<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
120xfce_hvbox_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,120xfce_hvbox_new (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>,
121 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> homogeneous</code></em>,121 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> homogeneous</code></em>,
122 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>122 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> spacing</code></em>);</pre>
123<p>Creates a new <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>123<p>Creates a new <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>
124<div class="refsect3">124<div class="refsect3">
125<a name="id-1.4.4.9.2.5"></a><h4>Parameters</h4>125<a name="id-1.4.4.9.2.5"></a><h4>Parameters</h4>
@@ -159,7 +159,7 @@
159<a name="xfce-hvbox-set-orientation"></a><h3>xfce_hvbox_set_orientation ()</h3>159<a name="xfce-hvbox-set-orientation"></a><h3>xfce_hvbox_set_orientation ()</h3>
160<pre class="programlisting"><span class="returnvalue">void</span>160<pre class="programlisting"><span class="returnvalue">void</span>
161xfce_hvbox_set_orientation (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>,161xfce_hvbox_set_orientation (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>,
162 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>162 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation</code></em>);</pre>
163<p>Set the new orientation of the <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>163<p>Set the new orientation of the <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>
164<div class="refsect3">164<div class="refsect3">
165<a name="id-1.4.4.9.3.5"></a><h4>Parameters</h4>165<a name="id-1.4.4.9.3.5"></a><h4>Parameters</h4>
@@ -187,7 +187,7 @@
187<hr>187<hr>
188<div class="refsect2">188<div class="refsect2">
189<a name="xfce-hvbox-get-orientation"></a><h3>xfce_hvbox_get_orientation ()</h3>189<a name="xfce-hvbox-get-orientation"></a><h3>xfce_hvbox_get_orientation ()</h3>
190<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>190<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
191xfce_hvbox_get_orientation (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);</pre>191xfce_hvbox_get_orientation (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>);</pre>
192<p>Get the current orientation of the <em class="parameter"><code>hvbox</code></em>192<p>Get the current orientation of the <em class="parameter"><code>hvbox</code></em>
193.</p>193.</p>
@@ -225,6 +225,6 @@
225</div>225</div>
226<div class="footer">226<div class="footer">
227<hr>227<hr>
228 Generated by GTK-Doc V1.20</div>228 Generated by GTK-Doc V1.21</div>
229</body>229</body>
230</html>230</html>
231\ No newline at end of file231\ No newline at end of file
232232
=== modified file 'docs/references/html/XfcePanelImage.html'
--- docs/references/html/XfcePanelImage.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/XfcePanelImage.html 2015-01-04 19:54:48 +0000
@@ -8,17 +8,17 @@
8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">8<link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
9<link rel="prev" href="XfceHVBox.html" title="XfceHVBox">9<link rel="prev" href="XfceHVBox.html" title="XfceHVBox">
10<link rel="next" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">10<link rel="next" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#XfcePanelImage.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#XfcePanelImage.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#XfcePanelImage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 19 <a href="#XfcePanelImage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20 <a href="#XfcePanelImage.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 20 <a href="#XfcePanelImage.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21 <a href="#XfcePanelImage.properties" class="shortcut">Properties</a></span><span id="nav_style_properties"> <span class="dim">|</span> 21 <a href="#XfcePanelImage.properties" class="shortcut">Properties</a></span><span id="nav_style_properties">  <span class="dim">|</span> 
22 <a href="#XfcePanelImage.style-properties" class="shortcut">Style Properties</a></span>22 <a href="#XfcePanelImage.style-properties" class="shortcut">Style Properties</a></span>
23</td>23</td>
24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -45,7 +45,7 @@
45<tbody>45<tbody>
46<tr>46<tr>
47<td class="function_type">47<td class="function_type">
48<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *48<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
49</td>49</td>
50<td class="function_name">50<td class="function_name">
51<a class="link" href="XfcePanelImage.html#xfce-panel-image-new" title="xfce_panel_image_new ()">xfce_panel_image_new</a> <span class="c_punctuation">()</span>51<a class="link" href="XfcePanelImage.html#xfce-panel-image-new" title="xfce_panel_image_new ()">xfce_panel_image_new</a> <span class="c_punctuation">()</span>
@@ -53,7 +53,7 @@
53</tr>53</tr>
54<tr>54<tr>
55<td class="function_type">55<td class="function_type">
56<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *56<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
57</td>57</td>
58<td class="function_name">58<td class="function_name">
59<a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()">xfce_panel_image_new_from_pixbuf</a> <span class="c_punctuation">()</span>59<a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()">xfce_panel_image_new_from_pixbuf</a> <span class="c_punctuation">()</span>
@@ -61,7 +61,7 @@
61</tr>61</tr>
62<tr>62<tr>
63<td class="function_type">63<td class="function_type">
64<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *64<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
65</td>65</td>
66<td class="function_name">66<td class="function_name">
67<a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()">xfce_panel_image_new_from_source</a> <span class="c_punctuation">()</span>67<a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()">xfce_panel_image_new_from_source</a> <span class="c_punctuation">()</span>
@@ -93,7 +93,7 @@
93</tr>93</tr>
94<tr>94<tr>
95<td class="function_type">95<td class="function_type">
96<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>96<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
97</td>97</td>
98<td class="function_name">98<td class="function_name">
99<a class="link" href="XfcePanelImage.html#xfce-panel-image-get-size" title="xfce_panel_image_get_size ()">xfce_panel_image_get_size</a> <span class="c_punctuation">()</span>99<a class="link" href="XfcePanelImage.html#xfce-panel-image-get-size" title="xfce_panel_image_get_size ()">xfce_panel_image_get_size</a> <span class="c_punctuation">()</span>
@@ -121,18 +121,18 @@
121<tbody>121<tbody>
122<tr>122<tr>
123<td class="property_type">123<td class="property_type">
124<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *</td>124<span class="type">GdkPixbuf</span> *</td>
125<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--pixbuf" title="The “pixbuf” property">pixbuf</a></td>125<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--pixbuf" title="The “pixbuf” property">pixbuf</a></td>
126<td class="property_flags">Read / Write</td>126<td class="property_flags">Read / Write</td>
127</tr>127</tr>
128<tr>128<tr>
129<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>129<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
130<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--size" title="The “size” property">size</a></td>130<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--size" title="The “size” property">size</a></td>
131<td class="property_flags">Read / Write</td>131<td class="property_flags">Read / Write</td>
132</tr>132</tr>
133<tr>133<tr>
134<td class="property_type">134<td class="property_type">
135<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>135<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
136<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--source" title="The “source” property">source</a></td>136<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--source" title="The “source” property">source</a></td>
137<td class="property_flags">Read / Write</td>137<td class="property_flags">Read / Write</td>
138</tr>138</tr>
@@ -148,7 +148,7 @@
148<col width="200px" class="style_properties_flags">148<col width="200px" class="style_properties_flags">
149</colgroup>149</colgroup>
150<tbody><tr>150<tbody><tr>
151<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>151<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
152<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--s-force-gtk-icon-sizes" title="The “force-gtk-icon-sizes” style property">force-gtk-icon-sizes</a></td>152<td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--s-force-gtk-icon-sizes" title="The “force-gtk-icon-sizes” style property">force-gtk-icon-sizes</a></td>
153<td class="property_flags">Read / Write</td>153<td class="property_flags">Read / Write</td>
154</tr></tbody>154</tr></tbody>
@@ -169,10 +169,10 @@
169</div>169</div>
170<div class="refsect1">170<div class="refsect1">
171<a name="XfcePanelImage.object-hierarchy"></a><h2>Object Hierarchy</h2>171<a name="XfcePanelImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
172<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>172<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
173 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>173 <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
174 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>174 <span class="lineart">╰──</span> GtkObject
175 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>175 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
176 <span class="lineart">╰──</span> XfcePanelImage176 <span class="lineart">╰──</span> XfcePanelImage
177</pre>177</pre>
178</div>178</div>
@@ -180,7 +180,7 @@
180<a name="XfcePanelImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>180<a name="XfcePanelImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
181<p>181<p>
182XfcePanelImage implements182XfcePanelImage implements
183 AtkImplementorIface and <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a>.</p>183 <a href="/usr/share/gtk-doc/html/atk/AtkObject.html#AtkImplementorIface">AtkImplementorIface</a> and <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a>.</p>
184</div>184</div>
185<div class="refsect1">185<div class="refsect1">
186<a name="XfcePanelImage.includes"></a><h2>Includes</h2>186<a name="XfcePanelImage.includes"></a><h2>Includes</h2>
@@ -204,7 +204,7 @@
204<a name="XfcePanelImage.functions_details"></a><h2>Functions</h2>204<a name="XfcePanelImage.functions_details"></a><h2>Functions</h2>
205<div class="refsect2">205<div class="refsect2">
206<a name="xfce-panel-image-new"></a><h3>xfce_panel_image_new ()</h3>206<a name="xfce-panel-image-new"></a><h3>xfce_panel_image_new ()</h3>
207<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *207<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
208xfce_panel_image_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>208xfce_panel_image_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
209<p>Creates a new empty <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> widget.</p>209<p>Creates a new empty <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> widget.</p>
210<div class="refsect3">210<div class="refsect3">
@@ -217,8 +217,8 @@
217<hr>217<hr>
218<div class="refsect2">218<div class="refsect2">
219<a name="xfce-panel-image-new-from-pixbuf"></a><h3>xfce_panel_image_new_from_pixbuf ()</h3>219<a name="xfce-panel-image-new-from-pixbuf"></a><h3>xfce_panel_image_new_from_pixbuf ()</h3>
220<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *220<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
221xfce_panel_image_new_from_pixbuf (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>221xfce_panel_image_new_from_pixbuf (<em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
222<p>Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>pixbuf</code></em>222<p>Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>pixbuf</code></em>
223. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>223. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
224will add its own reference rather than adopting yours. You don't224will add its own reference rather than adopting yours. You don't
@@ -235,7 +235,7 @@
235</colgroup>235</colgroup>
236<tbody><tr>236<tbody><tr>
237<td class="parameter_name"><p>pixbuf</p></td>237<td class="parameter_name"><p>pixbuf</p></td>
238<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>238<td class="parameter_description"><p>a <span class="type">GdkPixbuf</span>, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
239<td class="parameter_annotations"> </td>239<td class="parameter_annotations"> </td>
240</tr></tbody>240</tr></tbody>
241</table></div>241</table></div>
@@ -250,8 +250,8 @@
250<hr>250<hr>
251<div class="refsect2">251<div class="refsect2">
252<a name="xfce-panel-image-new-from-source"></a><h3>xfce_panel_image_new_from_source ()</h3>252<a name="xfce-panel-image-new-from-source"></a><h3>xfce_panel_image_new_from_source ()</h3>
253<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *253<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
254xfce_panel_image_new_from_source (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>254xfce_panel_image_new_from_source (<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>
255<p>Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>source</code></em>255<p>Creates a new <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> displaying <em class="parameter"><code>source</code></em>
256. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>256. <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
257will detect if <em class="parameter"><code>source</code></em>257will detect if <em class="parameter"><code>source</code></em>
@@ -270,7 +270,7 @@
270<tbody><tr>270<tbody><tr>
271<td class="parameter_name"><p>source</p></td>271<td class="parameter_name"><p>source</p></td>
272<td class="parameter_description"><p>source of the image. This can be an absolute path or272<td class="parameter_description"><p>source of the image. This can be an absolute path or
273an icon-name or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>273an icon-name or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
274<td class="parameter_annotations"> </td>274<td class="parameter_annotations"> </td>
275</tr></tbody>275</tr></tbody>
276</table></div>276</table></div>
@@ -287,7 +287,7 @@
287<a name="xfce-panel-image-set-from-pixbuf"></a><h3>xfce_panel_image_set_from_pixbuf ()</h3>287<a name="xfce-panel-image-set-from-pixbuf"></a><h3>xfce_panel_image_set_from_pixbuf ()</h3>
288<pre class="programlisting"><span class="returnvalue">void</span>288<pre class="programlisting"><span class="returnvalue">void</span>
289xfce_panel_image_set_from_pixbuf (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,289xfce_panel_image_set_from_pixbuf (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
290 <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>290 <em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
291<p>See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()"><code class="function">xfce_panel_image_new_from_pixbuf()</code></a> for details.</p>291<p>See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-pixbuf" title="xfce_panel_image_new_from_pixbuf ()"><code class="function">xfce_panel_image_new_from_pixbuf()</code></a> for details.</p>
292<div class="refsect3">292<div class="refsect3">
293<a name="id-1.4.5.11.5.5"></a><h4>Parameters</h4>293<a name="id-1.4.5.11.5.5"></a><h4>Parameters</h4>
@@ -305,7 +305,7 @@
305</tr>305</tr>
306<tr>306<tr>
307<td class="parameter_name"><p>pixbuf</p></td>307<td class="parameter_name"><p>pixbuf</p></td>
308<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>308<td class="parameter_description"><p>a <span class="type">GdkPixbuf</span>, or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
309<td class="parameter_annotations"> </td>309<td class="parameter_annotations"> </td>
310</tr>310</tr>
311</tbody>311</tbody>
@@ -318,7 +318,7 @@
318<a name="xfce-panel-image-set-from-source"></a><h3>xfce_panel_image_set_from_source ()</h3>318<a name="xfce-panel-image-set-from-source"></a><h3>xfce_panel_image_set_from_source ()</h3>
319<pre class="programlisting"><span class="returnvalue">void</span>319<pre class="programlisting"><span class="returnvalue">void</span>
320xfce_panel_image_set_from_source (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,320xfce_panel_image_set_from_source (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
321 <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>321 <em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>);</pre>
322<p>See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()"><code class="function">xfce_panel_image_new_from_source()</code></a> for details.</p>322<p>See <a class="link" href="XfcePanelImage.html#xfce-panel-image-new-from-source" title="xfce_panel_image_new_from_source ()"><code class="function">xfce_panel_image_new_from_source()</code></a> for details.</p>
323<div class="refsect3">323<div class="refsect3">
324<a name="id-1.4.5.11.6.5"></a><h4>Parameters</h4>324<a name="id-1.4.5.11.6.5"></a><h4>Parameters</h4>
@@ -337,7 +337,7 @@
337<tr>337<tr>
338<td class="parameter_name"><p>source</p></td>338<td class="parameter_name"><p>source</p></td>
339<td class="parameter_description"><p>source of the image. This can be an absolute path or339<td class="parameter_description"><p>source of the image. This can be an absolute path or
340an icon-name or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>340an icon-name or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</p></td>
341<td class="parameter_annotations"> </td>341<td class="parameter_annotations"> </td>
342</tr>342</tr>
343</tbody>343</tbody>
@@ -350,7 +350,7 @@
350<a name="xfce-panel-image-set-size"></a><h3>xfce_panel_image_set_size ()</h3>350<a name="xfce-panel-image-set-size"></a><h3>xfce_panel_image_set_size ()</h3>
351<pre class="programlisting"><span class="returnvalue">void</span>351<pre class="programlisting"><span class="returnvalue">void</span>
352xfce_panel_image_set_size (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,352xfce_panel_image_set_size (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>,
353 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>353 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
354<p>This will force an image size, instead of looking at the allocation354<p>This will force an image size, instead of looking at the allocation
355size, see introduction for more details. You can set a <em class="parameter"><code>size</code></em>355size, see introduction for more details. You can set a <em class="parameter"><code>size</code></em>
356 of356 of
@@ -382,7 +382,7 @@
382<hr>382<hr>
383<div class="refsect2">383<div class="refsect2">
384<a name="xfce-panel-image-get-size"></a><h3>xfce_panel_image_get_size ()</h3>384<a name="xfce-panel-image-get-size"></a><h3>xfce_panel_image_get_size ()</h3>
385<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>385<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
386xfce_panel_image_get_size (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);</pre>386xfce_panel_image_get_size (<em class="parameter"><code><a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> *image</code></em>);</pre>
387<p>The size of the image, set by <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-size" title="xfce_panel_image_set_size ()"><code class="function">xfce_panel_image_set_size()</code></a> or -1387<p>The size of the image, set by <a class="link" href="XfcePanelImage.html#xfce-panel-image-set-size" title="xfce_panel_image_set_size ()"><code class="function">xfce_panel_image_set_size()</code></a> or -1
388if no size is forced and the image is scaled to the allocation size.</p>388if no size is forced and the image is scaled to the allocation size.</p>
@@ -445,14 +445,14 @@
445<a name="XfcePanelImage.property-details"></a><h2>Property Details</h2>445<a name="XfcePanelImage.property-details"></a><h2>Property Details</h2>
446<div class="refsect2">446<div class="refsect2">
447<a name="XfcePanelImage--pixbuf"></a><h3>The <code class="literal">“pixbuf”</code> property</h3>447<a name="XfcePanelImage--pixbuf"></a><h3>The <code class="literal">“pixbuf”</code> property</h3>
448<pre class="programlisting"> “pixbuf” <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *</pre>448<pre class="programlisting"> “pixbuf” <span class="type">GdkPixbuf</span> *</pre>
449<p>Pixbuf image.</p>449<p>Pixbuf image.</p>
450<p>Flags: Read / Write</p>450<p>Flags: Read / Write</p>
451</div>451</div>
452<hr>452<hr>
453<div class="refsect2">453<div class="refsect2">
454<a name="XfcePanelImage--size"></a><h3>The <code class="literal">“size”</code> property</h3>454<a name="XfcePanelImage--size"></a><h3>The <code class="literal">“size”</code> property</h3>
455<pre class="programlisting"> “size” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>455<pre class="programlisting"> “size” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
456<p>Pixel size of the image.</p>456<p>Pixel size of the image.</p>
457<p>Flags: Read / Write</p>457<p>Flags: Read / Write</p>
458<p>Allowed values: [-1,128]</p>458<p>Allowed values: [-1,128]</p>
@@ -461,7 +461,7 @@
461<hr>461<hr>
462<div class="refsect2">462<div class="refsect2">
463<a name="XfcePanelImage--source"></a><h3>The <code class="literal">“source”</code> property</h3>463<a name="XfcePanelImage--source"></a><h3>The <code class="literal">“source”</code> property</h3>
464<pre class="programlisting"> “source” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>464<pre class="programlisting"> “source” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
465<p>Icon or filename.</p>465<p>Icon or filename.</p>
466<p>Flags: Read / Write</p>466<p>Flags: Read / Write</p>
467<p>Default value: NULL</p>467<p>Default value: NULL</p>
@@ -471,7 +471,7 @@
471<a name="XfcePanelImage.style-property-details"></a><h2>Style Property Details</h2>471<a name="XfcePanelImage.style-property-details"></a><h2>Style Property Details</h2>
472<div class="refsect2">472<div class="refsect2">
473<a name="XfcePanelImage--s-force-gtk-icon-sizes"></a><h3>The <code class="literal">“force-gtk-icon-sizes”</code> style property</h3>473<a name="XfcePanelImage--s-force-gtk-icon-sizes"></a><h3>The <code class="literal">“force-gtk-icon-sizes”</code> style property</h3>
474<pre class="programlisting"> “force-gtk-icon-sizes” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>474<pre class="programlisting"> “force-gtk-icon-sizes” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
475<p>Force the image to fix to GtkIconSizes.</p>475<p>Force the image to fix to GtkIconSizes.</p>
476<p>Flags: Read / Write</p>476<p>Flags: Read / Write</p>
477<p>Default value: FALSE</p>477<p>Default value: FALSE</p>
@@ -480,6 +480,6 @@
480</div>480</div>
481<div class="footer">481<div class="footer">
482<hr>482<hr>
483 Generated by GTK-Doc V1.20</div>483 Generated by GTK-Doc V1.21</div>
484</body>484</body>
485</html>485</html>
486\ No newline at end of file486\ No newline at end of file
487487
=== modified file 'docs/references/html/XfcePanelPlugin.html'
--- docs/references/html/XfcePanelPlugin.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/XfcePanelPlugin.html 2015-01-04 19:54:48 +0000
@@ -8,17 +8,17 @@
8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
9<link rel="prev" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">9<link rel="prev" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
10<link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">10<link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#XfcePanelPlugin.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#XfcePanelPlugin.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#XfcePanelPlugin.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 19 <a href="#XfcePanelPlugin.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
20 <a href="#XfcePanelPlugin.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 20 <a href="#XfcePanelPlugin.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
21 <a href="#XfcePanelPlugin.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span> 21 <a href="#XfcePanelPlugin.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
22 <a href="#XfcePanelPlugin.signals" class="shortcut">Signals</a></span>22 <a href="#XfcePanelPlugin.signals" class="shortcut">Signals</a></span>
23</td>23</td>
24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>24<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -44,21 +44,21 @@
44</colgroup>44</colgroup>
45<tbody>45<tbody>
46<tr>46<tr>
47<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *47<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
48</td>48</td>
49<td class="function_name">49<td class="function_name">
50<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()">xfce_panel_plugin_get_name</a> <span class="c_punctuation">()</span>50<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()">xfce_panel_plugin_get_name</a> <span class="c_punctuation">()</span>
51</td>51</td>
52</tr>52</tr>
53<tr>53<tr>
54<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *54<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
55</td>55</td>
56<td class="function_name">56<td class="function_name">
57<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()">xfce_panel_plugin_get_display_name</a> <span class="c_punctuation">()</span>57<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()">xfce_panel_plugin_get_display_name</a> <span class="c_punctuation">()</span>
58</td>58</td>
59</tr>59</tr>
60<tr>60<tr>
61<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *61<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
62</td>62</td>
63<td class="function_name">63<td class="function_name">
64<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()">xfce_panel_plugin_get_comment</a> <span class="c_punctuation">()</span>64<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()">xfce_panel_plugin_get_comment</a> <span class="c_punctuation">()</span>
@@ -66,21 +66,21 @@
66</tr>66</tr>
67<tr>67<tr>
68<td class="function_type">68<td class="function_type">
69<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>69<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
70</td>70</td>
71<td class="function_name">71<td class="function_name">
72<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-unique-id" title="xfce_panel_plugin_get_unique_id ()">xfce_panel_plugin_get_unique_id</a> <span class="c_punctuation">()</span>72<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-unique-id" title="xfce_panel_plugin_get_unique_id ()">xfce_panel_plugin_get_unique_id</a> <span class="c_punctuation">()</span>
73</td>73</td>
74</tr>74</tr>
75<tr>75<tr>
76<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *76<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
77</td>77</td>
78<td class="function_name">78<td class="function_name">
79<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-property-base" title="xfce_panel_plugin_get_property_base ()">xfce_panel_plugin_get_property_base</a> <span class="c_punctuation">()</span>79<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-property-base" title="xfce_panel_plugin_get_property_base ()">xfce_panel_plugin_get_property_base</a> <span class="c_punctuation">()</span>
80</td>80</td>
81</tr>81</tr>
82<tr>82<tr>
83<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *83<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
84</td>84</td>
85<td class="function_name">85<td class="function_name">
86<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()">xfce_panel_plugin_get_arguments</a> <span class="c_punctuation">()</span>86<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()">xfce_panel_plugin_get_arguments</a> <span class="c_punctuation">()</span>
@@ -88,7 +88,7 @@
88</tr>88</tr>
89<tr>89<tr>
90<td class="function_type">90<td class="function_type">
91<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>91<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
92</td>92</td>
93<td class="function_name">93<td class="function_name">
94<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()">xfce_panel_plugin_get_size</a> <span class="c_punctuation">()</span>94<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()">xfce_panel_plugin_get_size</a> <span class="c_punctuation">()</span>
@@ -96,7 +96,7 @@
96</tr>96</tr>
97<tr>97<tr>
98<td class="function_type">98<td class="function_type">
99<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>99<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
100</td>100</td>
101<td class="function_name">101<td class="function_name">
102<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-expand" title="xfce_panel_plugin_get_expand ()">xfce_panel_plugin_get_expand</a> <span class="c_punctuation">()</span>102<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-expand" title="xfce_panel_plugin_get_expand ()">xfce_panel_plugin_get_expand</a> <span class="c_punctuation">()</span>
@@ -112,7 +112,7 @@
112</tr>112</tr>
113<tr>113<tr>
114<td class="function_type">114<td class="function_type">
115<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>115<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
116</td>116</td>
117<td class="function_name">117<td class="function_name">
118<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()">xfce_panel_plugin_get_orientation</a> <span class="c_punctuation">()</span>118<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()">xfce_panel_plugin_get_orientation</a> <span class="c_punctuation">()</span>
@@ -128,7 +128,7 @@
128</tr>128</tr>
129<tr>129<tr>
130<td class="function_type">130<td class="function_type">
131<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>131<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
132</td>132</td>
133<td class="function_name">133<td class="function_name">
134<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()">xfce_panel_plugin_get_locked</a> <span class="c_punctuation">()</span>134<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()">xfce_panel_plugin_get_locked</a> <span class="c_punctuation">()</span>
@@ -208,7 +208,7 @@
208</tr>208</tr>
209<tr>209<tr>
210<td class="function_type">210<td class="function_type">
211<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>211<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
212</td>212</td>
213<td class="function_name">213<td class="function_name">
214<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-arrow-type" title="xfce_panel_plugin_arrow_type ()">xfce_panel_plugin_arrow_type</a> <span class="c_punctuation">()</span>214<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-arrow-type" title="xfce_panel_plugin_arrow_type ()">xfce_panel_plugin_arrow_type</a> <span class="c_punctuation">()</span>
@@ -248,7 +248,7 @@
248</tr>248</tr>
249<tr>249<tr>
250<td class="function_type">250<td class="function_type">
251<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *251<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
252</td>252</td>
253<td class="function_name">253<td class="function_name">
254<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()">xfce_panel_plugin_lookup_rc_file</a> <span class="c_punctuation">()</span>254<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()">xfce_panel_plugin_lookup_rc_file</a> <span class="c_punctuation">()</span>
@@ -256,7 +256,7 @@
256</tr>256</tr>
257<tr>257<tr>
258<td class="function_type">258<td class="function_type">
259<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *259<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
260</td>260</td>
261<td class="function_name">261<td class="function_name">
262<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()">xfce_panel_plugin_save_location</a> <span class="c_punctuation">()</span>262<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-save-location" title="xfce_panel_plugin_save_location ()">xfce_panel_plugin_save_location</a> <span class="c_punctuation">()</span>
@@ -287,24 +287,24 @@
287</colgroup>287</colgroup>
288<tbody>288<tbody>
289<tr>289<tr>
290<td class="property_type"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>290<td class="property_type"><a href="https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
291<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--arguments" title="The “arguments” property">arguments</a></td>291<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--arguments" title="The “arguments” property">arguments</a></td>
292<td class="property_flags">Read / Write / Construct Only</td>292<td class="property_flags">Read / Write / Construct Only</td>
293</tr>293</tr>
294<tr>294<tr>
295<td class="property_type">295<td class="property_type">
296<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>296<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
297<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--comment" title="The “comment” property">comment</a></td>297<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--comment" title="The “comment” property">comment</a></td>
298<td class="property_flags">Read / Write / Construct Only</td>298<td class="property_flags">Read / Write / Construct Only</td>
299</tr>299</tr>
300<tr>300<tr>
301<td class="property_type">301<td class="property_type">
302<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>302<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
303<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--display-name" title="The “display-name” property">display-name</a></td>303<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--display-name" title="The “display-name” property">display-name</a></td>
304<td class="property_flags">Read / Write / Construct Only</td>304<td class="property_flags">Read / Write / Construct Only</td>
305</tr>305</tr>
306<tr>306<tr>
307<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>307<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
308<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--expand" title="The “expand” property">expand</a></td>308<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--expand" title="The “expand” property">expand</a></td>
309<td class="property_flags">Read / Write</td>309<td class="property_flags">Read / Write</td>
310</tr>310</tr>
@@ -315,17 +315,17 @@
315</tr>315</tr>
316<tr>316<tr>
317<td class="property_type">317<td class="property_type">
318<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>318<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
319<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--name" title="The “name” property">name</a></td>319<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--name" title="The “name” property">name</a></td>
320<td class="property_flags">Read / Write / Construct Only</td>320<td class="property_flags">Read / Write / Construct Only</td>
321</tr>321</tr>
322<tr>322<tr>
323<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>323<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
324<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--nrows" title="The “nrows” property">nrows</a></td>324<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--nrows" title="The “nrows” property">nrows</a></td>
325<td class="property_flags">Read</td>325<td class="property_flags">Read</td>
326</tr>326</tr>
327<tr>327<tr>
328<td class="property_type"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></td>328<td class="property_type"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></td>
329<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--orientation" title="The “orientation” property">orientation</a></td>329<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--orientation" title="The “orientation” property">orientation</a></td>
330<td class="property_flags">Read</td>330<td class="property_flags">Read</td>
331</tr>331</tr>
@@ -335,22 +335,22 @@
335<td class="property_flags">Read</td>335<td class="property_flags">Read</td>
336</tr>336</tr>
337<tr>337<tr>
338<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>338<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
339<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--shrink" title="The “shrink” property">shrink</a></td>339<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--shrink" title="The “shrink” property">shrink</a></td>
340<td class="property_flags">Read / Write</td>340<td class="property_flags">Read / Write</td>
341</tr>341</tr>
342<tr>342<tr>
343<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>343<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
344<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--size" title="The “size” property">size</a></td>344<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--size" title="The “size” property">size</a></td>
345<td class="property_flags">Read</td>345<td class="property_flags">Read</td>
346</tr>346</tr>
347<tr>347<tr>
348<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>348<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
349<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--small" title="The “small” property">small</a></td>349<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--small" title="The “small” property">small</a></td>
350<td class="property_flags">Read / Write</td>350<td class="property_flags">Read / Write</td>
351</tr>351</tr>
352<tr>352<tr>
353<td class="property_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>353<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
354<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--unique-id" title="The “unique-id” property">unique-id</a></td>354<td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--unique-id" title="The “unique-id” property">unique-id</a></td>
355<td class="property_flags">Read / Write / Construct Only</td>355<td class="property_flags">Read / Write / Construct Only</td>
356</tr>356</tr>
@@ -397,7 +397,7 @@
397<td class="signal_flags">Run Last</td>397<td class="signal_flags">Run Last</td>
398</tr>398</tr>
399<tr>399<tr>
400<td class="signal_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>400<td class="signal_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
401<td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-remote-event" title="The “remote-event” signal">remote-event</a></td>401<td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-remote-event" title="The “remote-event” signal">remote-event</a></td>
402<td class="signal_flags">Run Last</td>402<td class="signal_flags">Run Last</td>
403</tr>403</tr>
@@ -417,7 +417,7 @@
417<td class="signal_flags">Run Last</td>417<td class="signal_flags">Run Last</td>
418</tr>418</tr>
419<tr>419<tr>
420<td class="signal_type"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>420<td class="signal_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
421<td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-size-changed" title="The “size-changed” signal">size-changed</a></td>421<td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-size-changed" title="The “size-changed” signal">size-changed</a></td>
422<td class="signal_flags">Run Last</td>422<td class="signal_flags">Run Last</td>
423</tr>423</tr>
@@ -445,13 +445,13 @@
445</div>445</div>
446<div class="refsect1">446<div class="refsect1">
447<a name="XfcePanelPlugin.object-hierarchy"></a><h2>Object Hierarchy</h2>447<a name="XfcePanelPlugin.object-hierarchy"></a><h2>Object Hierarchy</h2>
448<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>448<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
449 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>449 <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
450 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>450 <span class="lineart">╰──</span> GtkObject
451 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>451 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
452 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>452 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
453 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBin.html">GtkBin</a>453 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
454 <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkEventBox.html">GtkEventBox</a>454 <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkEventBox.html">GtkEventBox</a>
455 <span class="lineart">╰──</span> XfcePanelPlugin455 <span class="lineart">╰──</span> XfcePanelPlugin
456</pre>456</pre>
457</div>457</div>
@@ -459,7 +459,7 @@
459<a name="XfcePanelPlugin.implemented-interfaces"></a><h2>Implemented Interfaces</h2>459<a name="XfcePanelPlugin.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
460<p>460<p>
461XfcePanelPlugin implements461XfcePanelPlugin implements
462 AtkImplementorIface, <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a> and XfcePanelPluginProvider.</p>462 <a href="/usr/share/gtk-doc/html/atk/AtkObject.html#AtkImplementorIface">AtkImplementorIface</a>, <a href="http://developer.gnome.org/gtk2/GtkBuildable.html">GtkBuildable</a> and XfcePanelPluginProvider.</p>
463</div>463</div>
464<div class="refsect1">464<div class="refsect1">
465<a name="XfcePanelPlugin.includes"></a><h2>Includes</h2>465<a name="XfcePanelPlugin.includes"></a><h2>Includes</h2>
@@ -475,7 +475,7 @@
475<a name="XfcePanelPlugin.functions_details"></a><h2>Functions</h2>475<a name="XfcePanelPlugin.functions_details"></a><h2>Functions</h2>
476<div class="refsect2">476<div class="refsect2">
477<a name="xfce-panel-plugin-get-name"></a><h3>xfce_panel_plugin_get_name ()</h3>477<a name="xfce-panel-plugin-get-name"></a><h3>xfce_panel_plugin_get_name ()</h3>
478<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *478<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
479xfce_panel_plugin_get_name (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>479xfce_panel_plugin_get_name (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
480<p>The internal name of the panel plugin.</p>480<p>The internal name of the panel plugin.</p>
481<div class="refsect3">481<div class="refsect3">
@@ -502,7 +502,7 @@
502<hr>502<hr>
503<div class="refsect2">503<div class="refsect2">
504<a name="xfce-panel-plugin-get-display-name"></a><h3>xfce_panel_plugin_get_display_name ()</h3>504<a name="xfce-panel-plugin-get-display-name"></a><h3>xfce_panel_plugin_get_display_name ()</h3>
505<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *505<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
506xfce_panel_plugin_get_display_name (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>506xfce_panel_plugin_get_display_name (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
507<p>This returns the translated name of the plugin set in the .desktop507<p>This returns the translated name of the plugin set in the .desktop
508file of the plugin.</p>508file of the plugin.</p>
@@ -530,7 +530,7 @@
530<hr>530<hr>
531<div class="refsect2">531<div class="refsect2">
532<a name="xfce-panel-plugin-get-comment"></a><h3>xfce_panel_plugin_get_comment ()</h3>532<a name="xfce-panel-plugin-get-comment"></a><h3>xfce_panel_plugin_get_comment ()</h3>
533<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *533<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
534xfce_panel_plugin_get_comment (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>534xfce_panel_plugin_get_comment (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
535<p>This returns the translated comment of the plugin set in535<p>This returns the translated comment of the plugin set in
536the .desktop file of the plugin.</p>536the .desktop file of the plugin.</p>
@@ -559,7 +559,7 @@
559<hr>559<hr>
560<div class="refsect2">560<div class="refsect2">
561<a name="xfce-panel-plugin-get-unique-id"></a><h3>xfce_panel_plugin_get_unique_id ()</h3>561<a name="xfce-panel-plugin-get-unique-id"></a><h3>xfce_panel_plugin_get_unique_id ()</h3>
562<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>562<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
563xfce_panel_plugin_get_unique_id (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>563xfce_panel_plugin_get_unique_id (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
564<p>The internal unique id of the plugin. Each plugin in the panel has564<p>The internal unique id of the plugin. Each plugin in the panel has
565a unique number that is for example used for the config file name565a unique number that is for example used for the config file name
@@ -589,7 +589,7 @@
589<hr>589<hr>
590<div class="refsect2">590<div class="refsect2">
591<a name="xfce-panel-plugin-get-property-base"></a><h3>xfce_panel_plugin_get_property_base ()</h3>591<a name="xfce-panel-plugin-get-property-base"></a><h3>xfce_panel_plugin_get_property_base ()</h3>
592<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *592<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
593xfce_panel_plugin_get_property_base (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>593xfce_panel_plugin_get_property_base (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
594<p>The property base for this plugin in the xfce4-panel XfconfChannel,594<p>The property base for this plugin in the xfce4-panel XfconfChannel,
595this name is something like /plugins/plugin-1.</p>595this name is something like /plugins/plugin-1.</p>
@@ -620,10 +620,10 @@
620<hr>620<hr>
621<div class="refsect2">621<div class="refsect2">
622<a name="xfce-panel-plugin-get-arguments"></a><h3>xfce_panel_plugin_get_arguments ()</h3>622<a name="xfce-panel-plugin-get-arguments"></a><h3>xfce_panel_plugin_get_arguments ()</h3>
623<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *623<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
624xfce_panel_plugin_get_arguments (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>624xfce_panel_plugin_get_arguments (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
625<p>Argument vector passed to the plugin when it was added. Most of the625<p>Argument vector passed to the plugin when it was added. Most of the
626time the return value will be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, but if could for example contain626time the return value will be <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, but if could for example contain
627a list of filenames when the user added the plugin with</p>627a list of filenames when the user added the plugin with</p>
628<p>xfce4-panel --add=launcher *.desktop</p>628<p>xfce4-panel --add=launcher *.desktop</p>
629<p>see the code of the launcher plugin how to use this.</p>629<p>see the code of the launcher plugin how to use this.</p>
@@ -653,7 +653,7 @@
653<hr>653<hr>
654<div class="refsect2">654<div class="refsect2">
655<a name="xfce-panel-plugin-get-size"></a><h3>xfce_panel_plugin_get_size ()</h3>655<a name="xfce-panel-plugin-get-size"></a><h3>xfce_panel_plugin_get_size ()</h3>
656<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>656<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
657xfce_panel_plugin_get_size (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>657xfce_panel_plugin_get_size (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
658<p>The size of the panel in which the plugin is embedded.</p>658<p>The size of the panel in which the plugin is embedded.</p>
659<div class="refsect3">659<div class="refsect3">
@@ -680,7 +680,7 @@
680<hr>680<hr>
681<div class="refsect2">681<div class="refsect2">
682<a name="xfce-panel-plugin-get-expand"></a><h3>xfce_panel_plugin_get_expand ()</h3>682<a name="xfce-panel-plugin-get-expand"></a><h3>xfce_panel_plugin_get_expand ()</h3>
683<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>683<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
684xfce_panel_plugin_get_expand (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>684xfce_panel_plugin_get_expand (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
685<p>Whether the plugin is expanded or not. This set by the plugin using685<p>Whether the plugin is expanded or not. This set by the plugin using
686<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>.</p>686<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>.</p>
@@ -701,8 +701,8 @@
701</div>701</div>
702<div class="refsect3">702<div class="refsect3">
703<a name="id-1.3.3.11.9.6"></a><h4>Returns</h4>703<a name="id-1.3.3.11.9.6"></a><h4>Returns</h4>
704<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the plugin should expand,704<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the plugin should expand,
705<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>705<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
706<p></p>706<p></p>
707</div>707</div>
708</div>708</div>
@@ -711,7 +711,7 @@
711<a name="xfce-panel-plugin-set-expand"></a><h3>xfce_panel_plugin_set_expand ()</h3>711<a name="xfce-panel-plugin-set-expand"></a><h3>xfce_panel_plugin_set_expand ()</h3>
712<pre class="programlisting"><span class="returnvalue">void</span>712<pre class="programlisting"><span class="returnvalue">void</span>
713xfce_panel_plugin_set_expand (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,713xfce_panel_plugin_set_expand (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
714 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);</pre>714 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>);</pre>
715<p>Wether the plugin should expand of not</p>715<p>Wether the plugin should expand of not</p>
716<div class="refsect3">716<div class="refsect3">
717<a name="id-1.3.3.11.10.5"></a><h4>Parameters</h4>717<a name="id-1.3.3.11.10.5"></a><h4>Parameters</h4>
@@ -739,7 +739,7 @@
739<hr>739<hr>
740<div class="refsect2">740<div class="refsect2">
741<a name="xfce-panel-plugin-get-orientation"></a><h3>xfce_panel_plugin_get_orientation ()</h3>741<a name="xfce-panel-plugin-get-orientation"></a><h3>xfce_panel_plugin_get_orientation ()</h3>
742<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>742<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
743xfce_panel_plugin_get_orientation (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>743xfce_panel_plugin_get_orientation (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
744<p>The orientation of the panel in which the plugin is embedded.</p>744<p>The orientation of the panel in which the plugin is embedded.</p>
745<div class="refsect3">745<div class="refsect3">
@@ -759,7 +759,7 @@
759</div>759</div>
760<div class="refsect3">760<div class="refsect3">
761<a name="id-1.3.3.11.11.6"></a><h4>Returns</h4>761<a name="id-1.3.3.11.11.6"></a><h4>Returns</h4>
762<p> the current <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</p>762<p> the current <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</p>
763<p></p>763<p></p>
764</div>764</div>
765</div>765</div>
@@ -793,7 +793,7 @@
793<hr>793<hr>
794<div class="refsect2">794<div class="refsect2">
795<a name="xfce-panel-plugin-get-locked"></a><h3>xfce_panel_plugin_get_locked ()</h3>795<a name="xfce-panel-plugin-get-locked"></a><h3>xfce_panel_plugin_get_locked ()</h3>
796<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>796<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
797xfce_panel_plugin_get_locked (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>797xfce_panel_plugin_get_locked (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
798<p>Whether the plugin is locked (not allowing customization). This798<p>Whether the plugin is locked (not allowing customization). This
799is emitted through the panel based on the Xfconf locking of the799is emitted through the panel based on the Xfconf locking of the
@@ -820,8 +820,8 @@
820</div>820</div>
821<div class="refsect3">821<div class="refsect3">
822<a name="id-1.3.3.11.13.7"></a><h4>Returns</h4>822<a name="id-1.3.3.11.13.7"></a><h4>Returns</h4>
823<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is not allowed to modify the plugin,823<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user is not allowed to modify the plugin,
824<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is customization is allowed.</p>824<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> is customization is allowed.</p>
825<p></p>825<p></p>
826</div>826</div>
827<p class="since">Since 4.8</p>827<p class="since">Since 4.8</p>
@@ -831,7 +831,7 @@
831<a name="xfce-panel-plugin-take-window"></a><h3>xfce_panel_plugin_take_window ()</h3>831<a name="xfce-panel-plugin-take-window"></a><h3>xfce_panel_plugin_take_window ()</h3>
832<pre class="programlisting"><span class="returnvalue">void</span>832<pre class="programlisting"><span class="returnvalue">void</span>
833xfce_panel_plugin_take_window (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,833xfce_panel_plugin_take_window (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
834 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);</pre>834 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);</pre>
835<p>Connect a dialog to a plugin. When the <em class="parameter"><code>plugin</code></em>835<p>Connect a dialog to a plugin. When the <em class="parameter"><code>plugin</code></em>
836 is closed, it will836 is closed, it will
837destroy the <em class="parameter"><code>window</code></em>837destroy the <em class="parameter"><code>window</code></em>
@@ -852,7 +852,7 @@
852</tr>852</tr>
853<tr>853<tr>
854<td class="parameter_name"><p>window</p></td>854<td class="parameter_name"><p>window</p></td>
855<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWindow.html"><span class="type">GtkWindow</span></a>.</p></td>855<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a>.</p></td>
856<td class="parameter_annotations"> </td>856<td class="parameter_annotations"> </td>
857</tr>857</tr>
858</tbody>858</tbody>
@@ -865,7 +865,7 @@
865<a name="xfce-panel-plugin-add-action-widget"></a><h3>xfce_panel_plugin_add_action_widget ()</h3>865<a name="xfce-panel-plugin-add-action-widget"></a><h3>xfce_panel_plugin_add_action_widget ()</h3>
866<pre class="programlisting"><span class="returnvalue">void</span>866<pre class="programlisting"><span class="returnvalue">void</span>
867xfce_panel_plugin_add_action_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,867xfce_panel_plugin_add_action_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
868 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>868 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
869<p>Attach the plugin menu to this widget. Plugin writers should call this869<p>Attach the plugin menu to this widget. Plugin writers should call this
870for every widget that can receive mouse events. If you forget to call this870for every widget that can receive mouse events. If you forget to call this
871the plugin will not have a right-click menu and the user won't be able to871the plugin will not have a right-click menu and the user won't be able to
@@ -886,7 +886,7 @@
886</tr>886</tr>
887<tr>887<tr>
888<td class="parameter_name"><p>widget</p></td>888<td class="parameter_name"><p>widget</p></td>
889<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> that receives mouse events.</p></td>889<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> that receives mouse events.</p></td>
890<td class="parameter_annotations"> </td>890<td class="parameter_annotations"> </td>
891</tr>891</tr>
892</tbody>892</tbody>
@@ -898,7 +898,7 @@
898<a name="xfce-panel-plugin-menu-insert-item"></a><h3>xfce_panel_plugin_menu_insert_item ()</h3>898<a name="xfce-panel-plugin-menu-insert-item"></a><h3>xfce_panel_plugin_menu_insert_item ()</h3>
899<pre class="programlisting"><span class="returnvalue">void</span>899<pre class="programlisting"><span class="returnvalue">void</span>
900xfce_panel_plugin_menu_insert_item (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,900xfce_panel_plugin_menu_insert_item (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
901 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);</pre>901 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);</pre>
902<p>Insert a custom menu item to the plugin's right click menu. This item902<p>Insert a custom menu item to the plugin's right click menu. This item
903is packed below the "Move" menu item.</p>903is packed below the "Move" menu item.</p>
904<div class="refsect3">904<div class="refsect3">
@@ -917,7 +917,7 @@
917</tr>917</tr>
918<tr>918<tr>
919<td class="parameter_name"><p>item</p></td>919<td class="parameter_name"><p>item</p></td>
920<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a>.</p></td>920<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a>.</p></td>
921<td class="parameter_annotations"> </td>921<td class="parameter_annotations"> </td>
922</tr>922</tr>
923</tbody>923</tbody>
@@ -1048,13 +1048,13 @@
1048<a name="xfce-panel-plugin-register-menu"></a><h3>xfce_panel_plugin_register_menu ()</h3>1048<a name="xfce-panel-plugin-register-menu"></a><h3>xfce_panel_plugin_register_menu ()</h3>
1049<pre class="programlisting"><span class="returnvalue">void</span>1049<pre class="programlisting"><span class="returnvalue">void</span>
1050xfce_panel_plugin_register_menu (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,1050xfce_panel_plugin_register_menu (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
1051 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>1051 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
1052<p>Register a menu that is about to popup. This will make sure the panel1052<p>Register a menu that is about to popup. This will make sure the panel
1053will properly handle its autohide behaviour. You have to call this1053will properly handle its autohide behaviour. You have to call this
1054function every time the menu is opened (e.g. using <code class="function">gtk_popup_menu()</code>).</p>1054function every time the menu is opened (e.g. using <code class="function">gtk_popup_menu()</code>).</p>
1055<p>If you want to open the menu aligned to the side of the panel (and the1055<p>If you want to open the menu aligned to the side of the panel (and the
1056plugin), you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> as1056plugin), you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> as
1057<a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>. This callback function will take care of calling1057<a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>. This callback function will take care of calling
1058<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()"><code class="function">xfce_panel_plugin_register_menu()</code></a> as well.</p>1058<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()"><code class="function">xfce_panel_plugin_register_menu()</code></a> as well.</p>
1059<p>See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> and <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-block-autohide" title="xfce_panel_plugin_block_autohide ()"><code class="function">xfce_panel_plugin_block_autohide()</code></a>.</p>1059<p>See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> and <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-block-autohide" title="xfce_panel_plugin_block_autohide ()"><code class="function">xfce_panel_plugin_block_autohide()</code></a>.</p>
1060<div class="refsect3">1060<div class="refsect3">
@@ -1073,7 +1073,7 @@
1073</tr>1073</tr>
1074<tr>1074<tr>
1075<td class="parameter_name"><p>menu</p></td>1075<td class="parameter_name"><p>menu</p></td>
1076<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a> that will be opened</p></td>1076<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> that will be opened</p></td>
1077<td class="parameter_annotations"> </td>1077<td class="parameter_annotations"> </td>
1078</tr>1078</tr>
1079</tbody>1079</tbody>
@@ -1083,9 +1083,9 @@
1083<hr>1083<hr>
1084<div class="refsect2">1084<div class="refsect2">
1085<a name="xfce-panel-plugin-arrow-type"></a><h3>xfce_panel_plugin_arrow_type ()</h3>1085<a name="xfce-panel-plugin-arrow-type"></a><h3>xfce_panel_plugin_arrow_type ()</h3>
1086<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>1086<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
1087xfce_panel_plugin_arrow_type (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>1087xfce_panel_plugin_arrow_type (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
1088<p>Determine the <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for a widget that opens a menu and uses1088<p>Determine the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> for a widget that opens a menu and uses
1089<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> to position the menu.</p>1089<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> to position the menu.</p>
1090<div class="refsect3">1090<div class="refsect3">
1091<a name="id-1.3.3.11.23.5"></a><h4>Parameters</h4>1091<a name="id-1.3.3.11.23.5"></a><h4>Parameters</h4>
@@ -1104,7 +1104,7 @@
1104</div>1104</div>
1105<div class="refsect3">1105<div class="refsect3">
1106<a name="id-1.3.3.11.23.6"></a><h4>Returns</h4>1106<a name="id-1.3.3.11.23.6"></a><h4>Returns</h4>
1107<p> the <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> to use.</p>1107<p> the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> to use.</p>
1108<p></p>1108<p></p>
1109</div>1109</div>
1110</div>1110</div>
@@ -1113,10 +1113,10 @@
1113<a name="xfce-panel-plugin-position-widget"></a><h3>xfce_panel_plugin_position_widget ()</h3>1113<a name="xfce-panel-plugin-position-widget"></a><h3>xfce_panel_plugin_position_widget ()</h3>
1114<pre class="programlisting"><span class="returnvalue">void</span>1114<pre class="programlisting"><span class="returnvalue">void</span>
1115xfce_panel_plugin_position_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,1115xfce_panel_plugin_position_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
1116 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,1116 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,
1117 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,1117 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
1118 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,1118 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
1119 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);</pre>1119 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);</pre>
1120<p>The menu widget is positioned relative to <em class="parameter"><code>attach_widget</code></em>1120<p>The menu widget is positioned relative to <em class="parameter"><code>attach_widget</code></em>
1121.1121.
1122If <em class="parameter"><code>attach_widget</code></em>1122If <em class="parameter"><code>attach_widget</code></em>
@@ -1124,8 +1124,8 @@
1124relative to <em class="parameter"><code>panel_plugin</code></em>1124relative to <em class="parameter"><code>panel_plugin</code></em>
1125.</p>1125.</p>
1126<p>This function is intended for custom menu widgets.1126<p>This function is intended for custom menu widgets.
1127For a regular <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a> you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>1127For a regular <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> you should use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>
1128instead (as callback argument to <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>).</p>1128instead (as callback argument to <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>).</p>
1129<p>See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>.</p>1129<p>See also: <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a>.</p>
1130<div class="refsect3">1130<div class="refsect3">
1131<a name="id-1.3.3.11.24.7"></a><h4>Parameters</h4>1131<a name="id-1.3.3.11.24.7"></a><h4>Parameters</h4>
@@ -1143,12 +1143,12 @@
1143</tr>1143</tr>
1144<tr>1144<tr>
1145<td class="parameter_name"><p>menu_widget</p></td>1145<td class="parameter_name"><p>menu_widget</p></td>
1146<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> that will be used as popup menu.</p></td>1146<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> that will be used as popup menu.</p></td>
1147<td class="parameter_annotations"> </td>1147<td class="parameter_annotations"> </td>
1148</tr>1148</tr>
1149<tr>1149<tr>
1150<td class="parameter_name"><p>attach_widget</p></td>1150<td class="parameter_name"><p>attach_widget</p></td>
1151<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> relative to which the menu should be positioned.</p></td>1151<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> relative to which the menu should be positioned.</p></td>
1152<td class="parameter_annotations"> </td>1152<td class="parameter_annotations"> </td>
1153</tr>1153</tr>
1154<tr>1154<tr>
@@ -1169,17 +1169,17 @@
1169<div class="refsect2">1169<div class="refsect2">
1170<a name="xfce-panel-plugin-position-menu"></a><h3>xfce_panel_plugin_position_menu ()</h3>1170<a name="xfce-panel-plugin-position-menu"></a><h3>xfce_panel_plugin_position_menu ()</h3>
1171<pre class="programlisting"><span class="returnvalue">void</span>1171<pre class="programlisting"><span class="returnvalue">void</span>
1172xfce_panel_plugin_position_menu (<em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>,1172xfce_panel_plugin_position_menu (<em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>,
1173 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,1173 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
1174 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,1174 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>,
1175 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,1175 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *push_in</code></em>,
1176 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> panel_plugin</code></em>);</pre>1176 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> panel_plugin</code></em>);</pre>
1177<p>Function to be used as <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a> in a call to <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.1177<p>Function to be used as <a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a> in a call to <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.
1178As data argument it needs an <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>.</p>1178As data argument it needs an <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>.</p>
1179<p>The menu is normally positioned relative to <em class="parameter"><code>panel_plugin</code></em>1179<p>The menu is normally positioned relative to <em class="parameter"><code>panel_plugin</code></em>
1180. If you want the1180. If you want the
1181menu to be positioned relative to another widget, you can use1181menu to be positioned relative to another widget, you can use
1182<a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#gtk-menu-attach-to-widget"><code class="function">gtk_menu_attach_to_widget()</code></a> to explicitly set a 'parent' widget.</p>1182<a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-attach-to-widget"><code class="function">gtk_menu_attach_to_widget()</code></a> to explicitly set a 'parent' widget.</p>
1183<p>As a convenience, <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> calls1183<p>As a convenience, <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-menu" title="xfce_panel_plugin_position_menu ()"><code class="function">xfce_panel_plugin_position_menu()</code></a> calls
1184<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()"><code class="function">xfce_panel_plugin_register_menu()</code></a> for the menu.</p>1184<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-register-menu" title="xfce_panel_plugin_register_menu ()"><code class="function">xfce_panel_plugin_register_menu()</code></a> for the menu.</p>
1185<div class="example">1185<div class="example">
@@ -1198,7 +1198,7 @@
1198</div>1198</div>
1199<br class="example-break"><p>For a custom widget that will be used as a popup menu, use1199<br class="example-break"><p>For a custom widget that will be used as a popup menu, use
1200<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-widget" title="xfce_panel_plugin_position_widget ()"><code class="function">xfce_panel_plugin_position_widget()</code></a> instead.</p>1200<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-position-widget" title="xfce_panel_plugin_position_widget ()"><code class="function">xfce_panel_plugin_position_widget()</code></a> instead.</p>
1201<p>See also: <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.</p>1201<p>See also: <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.</p>
1202<div class="refsect3">1202<div class="refsect3">
1203<a name="id-1.3.3.11.25.10"></a><h4>Parameters</h4>1203<a name="id-1.3.3.11.25.10"></a><h4>Parameters</h4>
1204<div class="informaltable"><table width="100%" border="0">1204<div class="informaltable"><table width="100%" border="0">
@@ -1210,7 +1210,7 @@
1210<tbody>1210<tbody>
1211<tr>1211<tr>
1212<td class="parameter_name"><p>menu</p></td>1212<td class="parameter_name"><p>menu</p></td>
1213<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a>.</p></td>1213<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a>.</p></td>
1214<td class="parameter_annotations"> </td>1214<td class="parameter_annotations"> </td>
1215</tr>1215</tr>
1216<tr>1216<tr>
@@ -1225,7 +1225,7 @@
1225</tr>1225</tr>
1226<tr>1226<tr>
1227<td class="parameter_name"><p>push_in</p></td>1227<td class="parameter_name"><p>push_in</p></td>
1228<td class="parameter_description"><p>keep inside the screen (see <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>)</p></td>1228<td class="parameter_description"><p>keep inside the screen (see <a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>)</p></td>
1229<td class="parameter_annotations"> </td>1229<td class="parameter_annotations"> </td>
1230</tr>1230</tr>
1231<tr>1231<tr>
@@ -1242,7 +1242,7 @@
1242<a name="xfce-panel-plugin-focus-widget"></a><h3>xfce_panel_plugin_focus_widget ()</h3>1242<a name="xfce-panel-plugin-focus-widget"></a><h3>xfce_panel_plugin_focus_widget ()</h3>
1243<pre class="programlisting"><span class="returnvalue">void</span>1243<pre class="programlisting"><span class="returnvalue">void</span>
1244xfce_panel_plugin_focus_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,1244xfce_panel_plugin_focus_widget (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
1245 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>1245 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
1246<p>Grab the focus on <em class="parameter"><code>widget</code></em>1246<p>Grab the focus on <em class="parameter"><code>widget</code></em>
1247. Asks the panel to allow focus on its items1247. Asks the panel to allow focus on its items
1248and set the focus to the requested widget.</p>1248and set the focus to the requested widget.</p>
@@ -1262,7 +1262,7 @@
1262</tr>1262</tr>
1263<tr>1263<tr>
1264<td class="parameter_name"><p>widget</p></td>1264<td class="parameter_name"><p>widget</p></td>
1265<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> inside the plugins that should be focussed.</p></td>1265<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> inside the plugins that should be focussed.</p></td>
1266<td class="parameter_annotations"> </td>1266<td class="parameter_annotations"> </td>
1267</tr>1267</tr>
1268</tbody>1268</tbody>
@@ -1274,7 +1274,7 @@
1274<a name="xfce-panel-plugin-block-autohide"></a><h3>xfce_panel_plugin_block_autohide ()</h3>1274<a name="xfce-panel-plugin-block-autohide"></a><h3>xfce_panel_plugin_block_autohide ()</h3>
1275<pre class="programlisting"><span class="returnvalue">void</span>1275<pre class="programlisting"><span class="returnvalue">void</span>
1276xfce_panel_plugin_block_autohide (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,1276xfce_panel_plugin_block_autohide (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
1277 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blocked</code></em>);</pre>1277 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> blocked</code></em>);</pre>
1278<p>Wether this plugin blocks the autohide functality of the panel. Use1278<p>Wether this plugin blocks the autohide functality of the panel. Use
1279this when you 'popup' something that is visually attached to the1279this when you 'popup' something that is visually attached to the
1280plugin at it will look weird for a user if the panel will hide while1280plugin at it will look weird for a user if the panel will hide while
@@ -1307,7 +1307,7 @@
1307<hr>1307<hr>
1308<div class="refsect2">1308<div class="refsect2">
1309<a name="xfce-panel-plugin-lookup-rc-file"></a><h3>xfce_panel_plugin_lookup_rc_file ()</h3>1309<a name="xfce-panel-plugin-lookup-rc-file"></a><h3>xfce_panel_plugin_lookup_rc_file ()</h3>
1310<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *1310<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
1311xfce_panel_plugin_lookup_rc_file (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>1311xfce_panel_plugin_lookup_rc_file (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>);</pre>
1312<p>Looks for the plugin resource file. This should be used to get the1312<p>Looks for the plugin resource file. This should be used to get the
1313plugin read location of the config file. You should only use the1313plugin read location of the config file. You should only use the
@@ -1331,17 +1331,17 @@
1331</div>1331</div>
1332<div class="refsect3">1332<div class="refsect3">
1333<a name="id-1.3.3.11.28.7"></a><h4>Returns</h4>1333<a name="id-1.3.3.11.28.7"></a><h4>Returns</h4>
1334<p> The path to a config file or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.1334<p> The path to a config file or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.
1335The returned string must be freed using <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a></p>1335The returned string must be freed using <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a></p>
1336<p></p>1336<p></p>
1337</div>1337</div>
1338</div>1338</div>
1339<hr>1339<hr>
1340<div class="refsect2">1340<div class="refsect2">
1341<a name="xfce-panel-plugin-save-location"></a><h3>xfce_panel_plugin_save_location ()</h3>1341<a name="xfce-panel-plugin-save-location"></a><h3>xfce_panel_plugin_save_location ()</h3>
1342<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *1342<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
1343xfce_panel_plugin_save_location (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,1343xfce_panel_plugin_save_location (<em class="parameter"><code><a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin</code></em>,
1344 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create</code></em>);</pre>1344 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create</code></em>);</pre>
1345<p>Returns the path that can be used to store configuration information.1345<p>Returns the path that can be used to store configuration information.
1346Don't use this function if you want to read from the config file, but1346Don't use this function if you want to read from the config file, but
1347use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()"><code class="function">xfce_panel_plugin_lookup_rc_file()</code></a> instead.</p>1347use <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-lookup-rc-file" title="xfce_panel_plugin_lookup_rc_file ()"><code class="function">xfce_panel_plugin_lookup_rc_file()</code></a> instead.</p>
@@ -1370,8 +1370,8 @@
1370</div>1370</div>
1371<div class="refsect3">1371<div class="refsect3">
1372<a name="id-1.3.3.11.29.7"></a><h4>Returns</h4>1372<a name="id-1.3.3.11.29.7"></a><h4>Returns</h4>
1373<p> The path to a config file or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.1373<p> The path to a config file or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no file was found.
1374The returned string must be freed u sing <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>1374The returned string must be freed u sing <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</p>
1375<p></p>1375<p></p>
1376</div>1376</div>
1377</div>1377</div>
@@ -1559,9 +1559,9 @@
1559<a name="XfcePanelPlugin.property-details"></a><h2>Property Details</h2>1559<a name="XfcePanelPlugin.property-details"></a><h2>Property Details</h2>
1560<div class="refsect2">1560<div class="refsect2">
1561<a name="XfcePanelPlugin--arguments"></a><h3>The <code class="literal">“arguments”</code> property</h3>1561<a name="XfcePanelPlugin--arguments"></a><h3>The <code class="literal">“arguments”</code> property</h3>
1562<pre class="programlisting"> “arguments” <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>1562<pre class="programlisting"> “arguments” <a href="https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
1563<p>The arguments the plugin was started with. If the plugin was not1563<p>The arguments the plugin was started with. If the plugin was not
1564started with any arguments this value is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Plugin writer can1564started with any arguments this value is <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Plugin writer can
1565use it to read the arguments array, but1565use it to read the arguments array, but
1566<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()"><code class="function">xfce_panel_plugin_get_arguments()</code></a> is recommended.</p>1566<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-arguments" title="xfce_panel_plugin_get_arguments ()"><code class="function">xfce_panel_plugin_get_arguments()</code></a> is recommended.</p>
1567<p>Flags: Read / Write / Construct Only</p>1567<p>Flags: Read / Write / Construct Only</p>
@@ -1569,7 +1569,7 @@
1569<hr>1569<hr>
1570<div class="refsect2">1570<div class="refsect2">
1571<a name="XfcePanelPlugin--comment"></a><h3>The <code class="literal">“comment”</code> property</h3>1571<a name="XfcePanelPlugin--comment"></a><h3>The <code class="literal">“comment”</code> property</h3>
1572<pre class="programlisting"> “comment” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>1572<pre class="programlisting"> “comment” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
1573<p>The translated description of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set1573<p>The translated description of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set
1574during plugin construction and can't be set twice. Plugin writer can use1574during plugin construction and can't be set twice. Plugin writer can use
1575it to read the plugin description, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()"><code class="function">xfce_panel_plugin_get_comment()</code></a>1575it to read the plugin description, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-comment" title="xfce_panel_plugin_get_comment ()"><code class="function">xfce_panel_plugin_get_comment()</code></a>
@@ -1581,7 +1581,7 @@
1581<hr>1581<hr>
1582<div class="refsect2">1582<div class="refsect2">
1583<a name="XfcePanelPlugin--display-name"></a><h3>The <code class="literal">“display-name”</code> property</h3>1583<a name="XfcePanelPlugin--display-name"></a><h3>The <code class="literal">“display-name”</code> property</h3>
1584<pre class="programlisting"> “display-name” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>1584<pre class="programlisting"> “display-name” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
1585<p>The translated display name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set1585<p>The translated display name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set
1586during plugin construction and can't be set twice. Plugin writer can use1586during plugin construction and can't be set twice. Plugin writer can use
1587it to read the plugin display name, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()"><code class="function">xfce_panel_plugin_get_display_name()</code></a>1587it to read the plugin display name, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-display-name" title="xfce_panel_plugin_get_display_name ()"><code class="function">xfce_panel_plugin_get_display_name()</code></a>
@@ -1592,7 +1592,7 @@
1592<hr>1592<hr>
1593<div class="refsect2">1593<div class="refsect2">
1594<a name="XfcePanelPlugin--expand"></a><h3>The <code class="literal">“expand”</code> property</h3>1594<a name="XfcePanelPlugin--expand"></a><h3>The <code class="literal">“expand”</code> property</h3>
1595<pre class="programlisting"> “expand” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>1595<pre class="programlisting"> “expand” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1596<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> expands on the panel. Plugin writes can use it1596<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> expands on the panel. Plugin writes can use it
1597to read or set this property, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>1597to read or set this property, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-set-expand" title="xfce_panel_plugin_set_expand ()"><code class="function">xfce_panel_plugin_set_expand()</code></a>
1598is recommended.</p>1598is recommended.</p>
@@ -1611,7 +1611,7 @@
1611<hr>1611<hr>
1612<div class="refsect2">1612<div class="refsect2">
1613<a name="XfcePanelPlugin--name"></a><h3>The <code class="literal">“name”</code> property</h3>1613<a name="XfcePanelPlugin--name"></a><h3>The <code class="literal">“name”</code> property</h3>
1614<pre class="programlisting"> “name” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>1614<pre class="programlisting"> “name” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
1615<p>The internal, unstranslated, name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin1615<p>The internal, unstranslated, name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin
1616writer can use it to read the plugin name, but1616writer can use it to read the plugin name, but
1617<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()"><code class="function">xfce_panel_plugin_get_name()</code></a> is recommended since that returns1617<a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-name" title="xfce_panel_plugin_get_name ()"><code class="function">xfce_panel_plugin_get_name()</code></a> is recommended since that returns
@@ -1622,7 +1622,7 @@
1622<hr>1622<hr>
1623<div class="refsect2">1623<div class="refsect2">
1624<a name="XfcePanelPlugin--nrows"></a><h3>The <code class="literal">“nrows”</code> property</h3>1624<a name="XfcePanelPlugin--nrows"></a><h3>The <code class="literal">“nrows”</code> property</h3>
1625<pre class="programlisting"> “nrows” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>1625<pre class="programlisting"> “nrows” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
1626<p>Number of rows the plugin is embedded on.</p>1626<p>Number of rows the plugin is embedded on.</p>
1627<p>Flags: Read</p>1627<p>Flags: Read</p>
1628<p>Allowed values: [1,6]</p>1628<p>Allowed values: [1,6]</p>
@@ -1632,8 +1632,8 @@
1632<hr>1632<hr>
1633<div class="refsect2">1633<div class="refsect2">
1634<a name="XfcePanelPlugin--orientation"></a><h3>The <code class="literal">“orientation”</code> property</h3>1634<a name="XfcePanelPlugin--orientation"></a><h3>The <code class="literal">“orientation”</code> property</h3>
1635<pre class="programlisting"> “orientation” <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></pre>1635<pre class="programlisting"> “orientation” <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></pre>
1636<p>The <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the1636<p>The <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the
1637plugin orientation, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()"><code class="function">xfce_panel_plugin_get_orientation()</code></a> is recommended.</p>1637plugin orientation, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-orientation" title="xfce_panel_plugin_get_orientation ()"><code class="function">xfce_panel_plugin_get_orientation()</code></a> is recommended.</p>
1638<p>Flags: Read</p>1638<p>Flags: Read</p>
1639<p>Default value: GTK_ORIENTATION_HORIZONTAL</p>1639<p>Default value: GTK_ORIENTATION_HORIZONTAL</p>
@@ -1651,7 +1651,7 @@
1651<hr>1651<hr>
1652<div class="refsect2">1652<div class="refsect2">
1653<a name="XfcePanelPlugin--shrink"></a><h3>The <code class="literal">“shrink”</code> property</h3>1653<a name="XfcePanelPlugin--shrink"></a><h3>The <code class="literal">“shrink”</code> property</h3>
1654<pre class="programlisting"> “shrink” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>1654<pre class="programlisting"> “shrink” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1655<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> can shrink when there is no space left on the panel.1655<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> can shrink when there is no space left on the panel.
1656Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_shrink()</code>1656Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_shrink()</code>
1657is recommended.</p>1657is recommended.</p>
@@ -1662,7 +1662,7 @@
1662<hr>1662<hr>
1663<div class="refsect2">1663<div class="refsect2">
1664<a name="XfcePanelPlugin--size"></a><h3>The <code class="literal">“size”</code> property</h3>1664<a name="XfcePanelPlugin--size"></a><h3>The <code class="literal">“size”</code> property</h3>
1665<pre class="programlisting"> “size” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>1665<pre class="programlisting"> “size” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
1666<p>The size in pixels of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the1666<p>The size in pixels of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin writer can use it to read the
1667plugin size, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()"><code class="function">xfce_panel_plugin_get_size()</code></a> is recommended.</p>1667plugin size, but <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-size" title="xfce_panel_plugin_get_size ()"><code class="function">xfce_panel_plugin_get_size()</code></a> is recommended.</p>
1668<p>Flags: Read</p>1668<p>Flags: Read</p>
@@ -1672,7 +1672,7 @@
1672<hr>1672<hr>
1673<div class="refsect2">1673<div class="refsect2">
1674<a name="XfcePanelPlugin--small"></a><h3>The <code class="literal">“small”</code> property</h3>1674<a name="XfcePanelPlugin--small"></a><h3>The <code class="literal">“small”</code> property</h3>
1675<pre class="programlisting"> “small” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>1675<pre class="programlisting"> “small” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
1676<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> is small enough to fit a single row of a multi-row panel.1676<p>Wether the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> is small enough to fit a single row of a multi-row panel.
1677Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_small()</code>1677Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_small()</code>
1678is recommended.</p>1678is recommended.</p>
@@ -1683,7 +1683,7 @@
1683<hr>1683<hr>
1684<div class="refsect2">1684<div class="refsect2">
1685<a name="XfcePanelPlugin--unique-id"></a><h3>The <code class="literal">“unique-id”</code> property</h3>1685<a name="XfcePanelPlugin--unique-id"></a><h3>The <code class="literal">“unique-id”</code> property</h3>
1686<pre class="programlisting"> “unique-id” <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>1686<pre class="programlisting"> “unique-id” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
1687<p>Unique plugin ID.</p>1687<p>Unique plugin ID.</p>
1688<p>Flags: Read / Write / Construct Only</p>1688<p>Flags: Read / Write / Construct Only</p>
1689<p>Allowed values: &gt;= -1</p>1689<p>Allowed values: &gt;= -1</p>
@@ -1696,7 +1696,7 @@
1696<a name="XfcePanelPlugin-about"></a><h3>The <code class="literal">“about”</code> signal</h3>1696<a name="XfcePanelPlugin-about"></a><h3>The <code class="literal">“about”</code> signal</h3>
1697<pre class="programlisting"><span class="returnvalue">void</span>1697<pre class="programlisting"><span class="returnvalue">void</span>
1698user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1698user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1699 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1699 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1700<p>This signal is emmitted when the About entry in the right-click1700<p>This signal is emmitted when the About entry in the right-click
1701menu is clicked. Plugin writes can use it to show information1701menu is clicked. Plugin writes can use it to show information
1702about the plugin and display credits of the developers, translators1702about the plugin and display credits of the developers, translators
@@ -1731,7 +1731,7 @@
1731<a name="XfcePanelPlugin-configure-plugin"></a><h3>The <code class="literal">“configure-plugin”</code> signal</h3>1731<a name="XfcePanelPlugin-configure-plugin"></a><h3>The <code class="literal">“configure-plugin”</code> signal</h3>
1732<pre class="programlisting"><span class="returnvalue">void</span>1732<pre class="programlisting"><span class="returnvalue">void</span>
1733user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1733user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1734 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1734 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1735<p>This signal is emmitted when the Properties entry in the right-click1735<p>This signal is emmitted when the Properties entry in the right-click
1736menu is clicked. Plugin writes can use this signal to open a1736menu is clicked. Plugin writes can use this signal to open a
1737plugin settings dialog.</p>1737plugin settings dialog.</p>
@@ -1766,7 +1766,7 @@
1766<a name="XfcePanelPlugin-free-data"></a><h3>The <code class="literal">“free-data”</code> signal</h3>1766<a name="XfcePanelPlugin-free-data"></a><h3>The <code class="literal">“free-data”</code> signal</h3>
1767<pre class="programlisting"><span class="returnvalue">void</span>1767<pre class="programlisting"><span class="returnvalue">void</span>
1768user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1768user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1769 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1769 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1770<p>This signal is emmitted when the plugin is closing. Plugin1770<p>This signal is emmitted when the plugin is closing. Plugin
1771writers should use this signal to free any allocated resources.</p>1771writers should use this signal to free any allocated resources.</p>
1772<p>See also <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a>.</p>1772<p>See also <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a>.</p>
@@ -1800,7 +1800,7 @@
1800<pre class="programlisting"><span class="returnvalue">void</span>1800<pre class="programlisting"><span class="returnvalue">void</span>
1801user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1801user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1802 <span class="type">XfcePanelPluginMode</span> mode,1802 <span class="type">XfcePanelPluginMode</span> mode,
1803 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1803 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1804<p>This signal is emmitted whenever the mode of the panel1804<p>This signal is emmitted whenever the mode of the panel
1805the <em class="parameter"><code>plugin</code></em>1805the <em class="parameter"><code>plugin</code></em>
1806 is on changes.</p>1806 is on changes.</p>
@@ -1839,8 +1839,8 @@
1839<a name="XfcePanelPlugin-nrows-changed"></a><h3>The <code class="literal">“nrows-changed”</code> signal</h3>1839<a name="XfcePanelPlugin-nrows-changed"></a><h3>The <code class="literal">“nrows-changed”</code> signal</h3>
1840<pre class="programlisting"><span class="returnvalue">void</span>1840<pre class="programlisting"><span class="returnvalue">void</span>
1841user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1841user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1842 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> rows,1842 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> rows,
1843 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1843 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1844<p>This signal is emmitted whenever the nrows of the panel1844<p>This signal is emmitted whenever the nrows of the panel
1845the <em class="parameter"><code>plugin</code></em>1845the <em class="parameter"><code>plugin</code></em>
1846 is on changes.</p>1846 is on changes.</p>
@@ -1879,8 +1879,8 @@
1879<a name="XfcePanelPlugin-orientation-changed"></a><h3>The <code class="literal">“orientation-changed”</code> signal</h3>1879<a name="XfcePanelPlugin-orientation-changed"></a><h3>The <code class="literal">“orientation-changed”</code> signal</h3>
1880<pre class="programlisting"><span class="returnvalue">void</span>1880<pre class="programlisting"><span class="returnvalue">void</span>
1881user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1881user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1882 <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,1882 <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,
1883 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1883 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1884<p>This signal is emmitted whenever the orientation of the panel1884<p>This signal is emmitted whenever the orientation of the panel
1885the <em class="parameter"><code>plugin</code></em>1885the <em class="parameter"><code>plugin</code></em>
1886 is on changes. Plugins writers can for example use1886 is on changes. Plugins writers can for example use
@@ -1902,7 +1902,7 @@
1902</tr>1902</tr>
1903<tr>1903<tr>
1904<td class="parameter_name"><p>orientation</p></td>1904<td class="parameter_name"><p>orientation</p></td>
1905<td class="parameter_description"><p>new <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</p></td>1905<td class="parameter_description"><p>new <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> of the panel.</p></td>
1906<td class="parameter_annotations"> </td>1906<td class="parameter_annotations"> </td>
1907</tr>1907</tr>
1908<tr>1908<tr>
@@ -1918,11 +1918,11 @@
1918<hr>1918<hr>
1919<div class="refsect2">1919<div class="refsect2">
1920<a name="XfcePanelPlugin-remote-event"></a><h3>The <code class="literal">“remote-event”</code> signal</h3>1920<a name="XfcePanelPlugin-remote-event"></a><h3>The <code class="literal">“remote-event”</code> signal</h3>
1921<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>1921<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1922user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1922user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1923 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name,1923 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name,
1924 <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value,1924 <a href="https://developer.gnome.org/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value,
1925 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1925 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1926<p>This signal is emmitted by the user by running1926<p>This signal is emmitted by the user by running
1927xfce4-panel --plugin-event=plugin-name:name:type:value. It can be1927xfce4-panel --plugin-event=plugin-name:name:type:value. It can be
1928used for remote communication, like for example to popup a menu.</p>1928used for remote communication, like for example to popup a menu.</p>
@@ -1960,7 +1960,7 @@
1960</div>1960</div>
1961<div class="refsect3">1961<div class="refsect3">
1962<a name="id-1.3.3.14.8.6"></a><h4>Returns</h4>1962<a name="id-1.3.3.14.8.6"></a><h4>Returns</h4>
1963<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop signal emission to other plugins, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>1963<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop signal emission to other plugins, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>
1964to send the signal also to other plugins with the same1964to send the signal also to other plugins with the same
1965name.</p>1965name.</p>
1966<p></p>1966<p></p>
@@ -1972,7 +1972,7 @@
1972<a name="XfcePanelPlugin-removed"></a><h3>The <code class="literal">“removed”</code> signal</h3>1972<a name="XfcePanelPlugin-removed"></a><h3>The <code class="literal">“removed”</code> signal</h3>
1973<pre class="programlisting"><span class="returnvalue">void</span>1973<pre class="programlisting"><span class="returnvalue">void</span>
1974user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,1974user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
1975 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>1975 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1976<p>This signal is emmitted when the plugin is permanently removed from1976<p>This signal is emmitted when the plugin is permanently removed from
1977the panel configuration by the user. Developers can use this signal1977the panel configuration by the user. Developers can use this signal
1978to cleanup custom setting locations that for example store passwords.</p>1978to cleanup custom setting locations that for example store passwords.</p>
@@ -2011,7 +2011,7 @@
2011<a name="XfcePanelPlugin-save"></a><h3>The <code class="literal">“save”</code> signal</h3>2011<a name="XfcePanelPlugin-save"></a><h3>The <code class="literal">“save”</code> signal</h3>
2012<pre class="programlisting"><span class="returnvalue">void</span>2012<pre class="programlisting"><span class="returnvalue">void</span>
2013user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,2013user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2014 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>2014 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2015<p>This signal is emitted when the plugin should save it's2015<p>This signal is emitted when the plugin should save it's
2016configuration. The signal is always emmitted before the plugin2016configuration. The signal is always emmitted before the plugin
2017closes (before the "free-data" signal) and also once in 102017closes (before the "free-data" signal) and also once in 10
@@ -2047,7 +2047,7 @@
2047<pre class="programlisting"><span class="returnvalue">void</span>2047<pre class="programlisting"><span class="returnvalue">void</span>
2048user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,2048user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2049 <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> position,2049 <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> position,
2050 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>2050 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2051<p>This signal is emmitted whenever the screen position of the panel2051<p>This signal is emmitted whenever the screen position of the panel
2052the <em class="parameter"><code>plugin</code></em>2052the <em class="parameter"><code>plugin</code></em>
2053 is on changes. Plugins writers can for example use2053 is on changes. Plugins writers can for example use
@@ -2084,15 +2084,15 @@
2084<hr>2084<hr>
2085<div class="refsect2">2085<div class="refsect2">
2086<a name="XfcePanelPlugin-size-changed"></a><h3>The <code class="literal">“size-changed”</code> signal</h3>2086<a name="XfcePanelPlugin-size-changed"></a><h3>The <code class="literal">“size-changed”</code> signal</h3>
2087<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>2087<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2088user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,2088user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2089 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size,2089 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size,
2090 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>2090 <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2091<p>This signal is emmitted whenever the size of the panel2091<p>This signal is emmitted whenever the size of the panel
2092the <em class="parameter"><code>plugin</code></em>2092the <em class="parameter"><code>plugin</code></em>
2093 is on changes. Plugins writers can for example use2093 is on changes. Plugins writers can for example use
2094this signal to update their icon size.</p>2094this signal to update their icon size.</p>
2095<p>If the function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> or is not used, the panel will force2095<p>If the function returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> or is not used, the panel will force
2096a square size to the plugin. If you want non-square plugins and you2096a square size to the plugin. If you want non-square plugins and you
2097don't need this signal you can use something like this:</p>2097don't need this signal you can use something like this:</p>
2098<p>g_signal_connect (plugin, "size-changed", G_CALLBACK (gtk_true), NULL);</p>2098<p>g_signal_connect (plugin, "size-changed", G_CALLBACK (gtk_true), NULL);</p>
@@ -2129,6 +2129,6 @@
2129</div>2129</div>
2130<div class="footer">2130<div class="footer">
2131<hr>2131<hr>
2132 Generated by GTK-Doc V1.20</div>2132 Generated by GTK-Doc V1.21</div>
2133</body>2133</body>
2134</html>2134</html>
2135\ No newline at end of file2135\ No newline at end of file
21362136
=== modified file 'docs/references/html/api-index-4-6.html'
--- docs/references/html/api-index-4-6.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/api-index-4-6.html 2015-01-04 19:54:48 +0000
@@ -7,11 +7,11 @@
7<link rel="home" href="index.html" title="Libxfce4panel Reference Manual">7<link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="api-index-4-8.html" title="Index of new symbols in 4.8">9<link rel="prev" href="api-index-4-8.html" title="Index of new symbols in 4.8">
10<meta name="generator" content="GTK-Doc V1.20 (XML mode)">10<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
11<link rel="stylesheet" href="style.css" type="text/css">11<link rel="stylesheet" href="style.css" type="text/css">
12</head>12</head>
13<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">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="10"><tr valign="middle">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"><span id="nav_index"><a class="shortcut" href="#idxP">P</a></span></td>15<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxP">P</a></span></td>
16<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>16<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
17<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>17<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -33,6 +33,6 @@
33</div>33</div>
34<div class="footer">34<div class="footer">
35<hr>35<hr>
36 Generated by GTK-Doc V1.20</div>36 Generated by GTK-Doc V1.21</div>
37</body>37</body>
38</html>38</html>
39\ No newline at end of file39\ No newline at end of file
4040
=== modified file 'docs/references/html/api-index-4-8.html'
--- docs/references/html/api-index-4-8.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/api-index-4-8.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">9<link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">
10<link rel="next" href="api-index-4-6.html" title="Index of new symbols in 4.6">10<link rel="next" href="api-index-4-6.html" title="Index of new symbols in 4.6">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
17  <span class="dim">|</span> 17  <span class="dim">|</span> 
18 <a class="shortcut" href="#idxL">L</a>18 <a class="shortcut" href="#idxL">L</a>
@@ -184,6 +184,6 @@
184</div>184</div>
185<div class="footer">185<div class="footer">
186<hr>186<hr>
187 Generated by GTK-Doc V1.20</div>187 Generated by GTK-Doc V1.21</div>
188</body>188</body>
189</html>189</html>
190\ No newline at end of file190\ No newline at end of file
191191
=== modified file 'docs/references/html/api-index-deprecated.html'
--- docs/references/html/api-index-deprecated.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/api-index-deprecated.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="api-index-full.html" title="Index of all symbols">9<link rel="prev" href="api-index-full.html" title="Index of all symbols">
10<link rel="next" href="api-index-4-8.html" title="Index of new symbols in 4.8">10<link rel="next" href="api-index-4-8.html" title="Index of new symbols in 4.8">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
17  <span class="dim">|</span> 17  <span class="dim">|</span> 
18 <a class="shortcut" href="#idxC">C</a>18 <a class="shortcut" href="#idxC">C</a>
@@ -104,6 +104,6 @@
104</div>104</div>
105<div class="footer">105<div class="footer">
106<hr>106<hr>
107 Generated by GTK-Doc V1.20</div>107 Generated by GTK-Doc V1.21</div>
108</body>108</body>
109</html>109</html>
110\ No newline at end of file110\ No newline at end of file
111111
=== modified file 'docs/references/html/api-index-full.html'
--- docs/references/html/api-index-full.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/api-index-full.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">9<link rel="prev" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">
10<link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">10<link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>16<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
17  <span class="dim">|</span> 17  <span class="dim">|</span> 
18 <a class="shortcut" href="#idxC">C</a>18 <a class="shortcut" href="#idxC">C</a>
@@ -569,6 +569,6 @@
569</div>569</div>
570<div class="footer">570<div class="footer">
571<hr>571<hr>
572 Generated by GTK-Doc V1.20</div>572 Generated by GTK-Doc V1.21</div>
573</body>573</body>
574</html>574</html>
575\ No newline at end of file575\ No newline at end of file
576576
=== modified file 'docs/references/html/index.html'
--- docs/references/html/index.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/index.html 2015-01-04 19:54:48 +0000
@@ -6,7 +6,7 @@
6<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">6<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7<link rel="home" href="index.html" title="Libxfce4panel Reference Manual">7<link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
8<link rel="next" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">8<link rel="next" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
9<meta name="generator" content="GTK-Doc V1.20 (XML mode)">9<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
10<link rel="stylesheet" href="style.css" type="text/css">10<link rel="stylesheet" href="style.css" type="text/css">
11</head>11</head>
12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">12<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -20,7 +20,7 @@
20</h3>20</h3>
21<div class="affiliation"><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:nick@xfce.org">nick@xfce.org</a>&gt;</code></p></div></div>21<div class="affiliation"><div class="address"><p><code class="email">&lt;<a class="email" href="mailto:nick@xfce.org">nick@xfce.org</a>&gt;</code></p></div></div>
22</div></div></div>22</div></div></div>
23<div><p class="releaseinfo">Version 4.11.123<div><p class="releaseinfo">Version 4.11.2
24</p></div>24</p></div>
25<div><p class="copyright">Copyright © 2006, 2007 Jasper Huijsmans</p></div>25<div><p class="copyright">Copyright © 2006, 2007 Jasper Huijsmans</p></div>
26<div><p class="copyright">Copyright © 2008, 2010 Nick Schermer</p></div>26<div><p class="copyright">Copyright © 2008, 2010 Nick Schermer</p></div>
@@ -89,6 +89,6 @@
89</div>89</div>
90<div class="footer">90<div class="footer">
91<hr>91<hr>
92 Generated by GTK-Doc V1.20</div>92 Generated by GTK-Doc V1.21</div>
93</body>93</body>
94</html>94</html>
95\ No newline at end of file95\ No newline at end of file
9696
=== modified file 'docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html'
--- docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
9<link rel="prev" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">9<link rel="prev" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">
10<link rel="next" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">10<link rel="next" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Commonly-used-plugin-macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Commonly-used-plugin-macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Commonly-used-plugin-macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Commonly-used-plugin-macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -128,9 +128,9 @@
128<div class="warning">128<div class="warning">
129<p><code class="literal">panel_slice_alloc</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>129<p><code class="literal">panel_slice_alloc</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
130<p>Deprecated because panel depends on recent enough130<p>Deprecated because panel depends on recent enough
131 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> instead.</p>131 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> instead.</p>
132</div>132</div>
133<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> for more information.</p>133<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-alloc"><code class="function">g_slice_alloc()</code></a> for more information.</p>
134<div class="refsect3">134<div class="refsect3">
135<a name="id-1.2.4.7.3.6"></a><h4>Parameters</h4>135<a name="id-1.2.4.7.3.6"></a><h4>Parameters</h4>
136<div class="informaltable"><table width="100%" border="0">136<div class="informaltable"><table width="100%" border="0">
@@ -160,9 +160,9 @@
160<div class="warning">160<div class="warning">
161<p><code class="literal">panel_slice_alloc0</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>161<p><code class="literal">panel_slice_alloc0</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
162<p>Deprecated because panel depends on recent enough162<p>Deprecated because panel depends on recent enough
163 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> instead.</p>163 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> instead.</p>
164</div>164</div>
165<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> for more information.</p>165<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-alloc0"><code class="function">g_slice_alloc0()</code></a> for more information.</p>
166<div class="refsect3">166<div class="refsect3">
167<a name="id-1.2.4.7.4.6"></a><h4>Parameters</h4>167<a name="id-1.2.4.7.4.6"></a><h4>Parameters</h4>
168<div class="informaltable"><table width="100%" border="0">168<div class="informaltable"><table width="100%" border="0">
@@ -192,9 +192,9 @@
192<div class="warning">192<div class="warning">
193<p><code class="literal">panel_slice_free</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>193<p><code class="literal">panel_slice_free</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
194<p>Deprecated because panel depends on recent enough194<p>Deprecated because panel depends on recent enough
195 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> instead.</p>195 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> instead.</p>
196</div>196</div>
197<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> for more information.</p>197<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-free"><code class="function">g_slice_free()</code></a> for more information.</p>
198<div class="refsect3">198<div class="refsect3">
199<a name="id-1.2.4.7.5.6"></a><h4>Parameters</h4>199<a name="id-1.2.4.7.5.6"></a><h4>Parameters</h4>
200<div class="informaltable"><table width="100%" border="0">200<div class="informaltable"><table width="100%" border="0">
@@ -226,9 +226,9 @@
226<div class="warning">226<div class="warning">
227<p><code class="literal">panel_slice_free1</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>227<p><code class="literal">panel_slice_free1</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
228<p>Deprecated because panel depends on recent enough228<p>Deprecated because panel depends on recent enough
229 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> instead.</p>229 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> instead.</p>
230</div>230</div>
231<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> for more information.</p>231<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-free1"><code class="function">g_slice_free1()</code></a> for more information.</p>
232<div class="refsect3">232<div class="refsect3">
233<a name="id-1.2.4.7.6.6"></a><h4>Parameters</h4>233<a name="id-1.2.4.7.6.6"></a><h4>Parameters</h4>
234<div class="informaltable"><table width="100%" border="0">234<div class="informaltable"><table width="100%" border="0">
@@ -260,9 +260,9 @@
260<div class="warning">260<div class="warning">
261<p><code class="literal">panel_slice_new</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>261<p><code class="literal">panel_slice_new</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
262<p>Deprecated because panel depends on recent enough262<p>Deprecated because panel depends on recent enough
263 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> instead.</p>263 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> instead.</p>
264</div>264</div>
265<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> for more information.</p>265<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-new"><code class="function">g_slice_new()</code></a> for more information.</p>
266<div class="refsect3">266<div class="refsect3">
267<a name="id-1.2.4.7.7.6"></a><h4>Parameters</h4>267<a name="id-1.2.4.7.7.6"></a><h4>Parameters</h4>
268<div class="informaltable"><table width="100%" border="0">268<div class="informaltable"><table width="100%" border="0">
@@ -292,9 +292,9 @@
292<div class="warning">292<div class="warning">
293<p><code class="literal">panel_slice_new0</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>293<p><code class="literal">panel_slice_new0</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
294<p>Deprecated because panel depends on recent enough294<p>Deprecated because panel depends on recent enough
295 version of glib. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> instead.</p>295 version of glib. Use <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> instead.</p>
296</div>296</div>
297<p>See <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> for more information.</p>297<p>See <a href="https://developer.gnome.org/glib/unstable/glib-Memory-Slices.html#g-slice-new0"><code class="function">g_slice_new0()</code></a> for more information.</p>
298<div class="refsect3">298<div class="refsect3">
299<a name="id-1.2.4.7.8.6"></a><h4>Parameters</h4>299<a name="id-1.2.4.7.8.6"></a><h4>Parameters</h4>
300<div class="informaltable"><table width="100%" border="0">300<div class="informaltable"><table width="100%" border="0">
@@ -325,7 +325,7 @@
325<p><code class="literal">PANEL_PARAM_READABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>325<p><code class="literal">PANEL_PARAM_READABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
326<p>Deprecated because panel depends on recent enough326<p>Deprecated because panel depends on recent enough
327 version of glib. Use <span class="type">G_PARAM_READABLE</span>327 version of glib. Use <span class="type">G_PARAM_READABLE</span>
328 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>328 | <a href="https://developer.gnome.org/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
329</div>329</div>
330<p>Macro for <span class="type">G_PARAM_READABLE</span> with static strings.</p>330<p>Macro for <span class="type">G_PARAM_READABLE</span> with static strings.</p>
331</div>331</div>
@@ -337,10 +337,10 @@
337<div class="warning">337<div class="warning">
338<p><code class="literal">PANEL_PARAM_READWRITE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>338<p><code class="literal">PANEL_PARAM_READWRITE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
339<p>Deprecated because panel depends on recent enough339<p>Deprecated because panel depends on recent enough
340 version of glib. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS"><span class="type">G_PARAM_READWRITE</span></a>340 version of glib. Use <span class="type">G_PARAM_READWRITE</span>
341 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>341 | <a href="https://developer.gnome.org/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
342</div>342</div>
343<p>Macro for <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-READWRITE:CAPS"><span class="type">G_PARAM_READWRITE</span></a> with static strings.</p>343<p>Macro for <span class="type">G_PARAM_READWRITE</span> with static strings.</p>
344</div>344</div>
345<hr>345<hr>
346<div class="refsect2">346<div class="refsect2">
@@ -351,7 +351,7 @@
351<p><code class="literal">PANEL_PARAM_WRITABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>351<p><code class="literal">PANEL_PARAM_WRITABLE</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
352<p>Deprecated because panel depends on recent enough352<p>Deprecated because panel depends on recent enough
353 version of glib. Use <span class="type">G_PARAM_WRITABLE</span>353 version of glib. Use <span class="type">G_PARAM_WRITABLE</span>
354 | <a href="http://library.gnome.org/devel/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>354 | <a href="https://developer.gnome.org/gobject/unstable/gobject-GParamSpec.html#G-PARAM-STATIC-STRINGS:CAPS"><span class="type">G_PARAM_STATIC_STRINGS</span></a> instead.</p>
355</div>355</div>
356<p>Macro for <a class="link" href="libxfce4panel-Commonly-used-plugin-macros.html#PANEL-PARAM-WRITABLE:CAPS" title="PANEL_PARAM_WRITABLE"><span class="type">PANEL_PARAM_WRITABLE</span></a> with static strings.</p>356<p>Macro for <a class="link" href="libxfce4panel-Commonly-used-plugin-macros.html#PANEL-PARAM-WRITABLE:CAPS" title="PANEL_PARAM_WRITABLE"><span class="type">PANEL_PARAM_WRITABLE</span></a> with static strings.</p>
357</div>357</div>
@@ -362,6 +362,6 @@
362</div>362</div>
363<div class="footer">363<div class="footer">
364<hr>364<hr>
365 Generated by GTK-Doc V1.20</div>365 Generated by GTK-Doc V1.21</div>
366</body>366</body>
367</html>367</html>
368\ No newline at end of file368\ No newline at end of file
369369
=== modified file 'docs/references/html/libxfce4panel-Convenience-Functions.html'
--- docs/references/html/libxfce4panel-Convenience-Functions.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Convenience-Functions.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">8<link rel="up" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
9<link rel="prev" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">9<link rel="prev" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
10<link rel="next" href="api-index-full.html" title="Index of all symbols">10<link rel="next" href="api-index-full.html" title="Index of all symbols">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Convenience-Functions.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Convenience-Functions.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Convenience-Functions.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Convenience-Functions.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -42,7 +42,7 @@
42<tbody>42<tbody>
43<tr>43<tr>
44<td class="function_type">44<td class="function_type">
45<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *45<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
46</td>46</td>
47<td class="function_name">47<td class="function_name">
48<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-button" title="xfce_panel_create_button ()">xfce_panel_create_button</a> <span class="c_punctuation">()</span>48<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-button" title="xfce_panel_create_button ()">xfce_panel_create_button</a> <span class="c_punctuation">()</span>
@@ -50,14 +50,14 @@
50</tr>50</tr>
51<tr>51<tr>
52<td class="function_type">52<td class="function_type">
53<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *53<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
54</td>54</td>
55<td class="function_name">55<td class="function_name">
56<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-toggle-button" title="xfce_panel_create_toggle_button ()">xfce_panel_create_toggle_button</a> <span class="c_punctuation">()</span>56<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-create-toggle-button" title="xfce_panel_create_toggle_button ()">xfce_panel_create_toggle_button</a> <span class="c_punctuation">()</span>
57</td>57</td>
58</tr>58</tr>
59<tr>59<tr>
60<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *60<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
61</td>61</td>
62<td class="function_name">62<td class="function_name">
63<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-get-channel-name" title="xfce_panel_get_channel_name ()">xfce_panel_get_channel_name</a> <span class="c_punctuation">()</span>63<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-get-channel-name" title="xfce_panel_get_channel_name ()">xfce_panel_get_channel_name</a> <span class="c_punctuation">()</span>
@@ -65,7 +65,7 @@
65</tr>65</tr>
66<tr>66<tr>
67<td class="function_type">67<td class="function_type">
68<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *68<span class="returnvalue">GdkPixbuf</span> *
69</td>69</td>
70<td class="function_name">70<td class="function_name">
71<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source" title="xfce_panel_pixbuf_from_source ()">xfce_panel_pixbuf_from_source</a> <span class="c_punctuation">()</span>71<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source" title="xfce_panel_pixbuf_from_source ()">xfce_panel_pixbuf_from_source</a> <span class="c_punctuation">()</span>
@@ -73,7 +73,7 @@
73</tr>73</tr>
74<tr>74<tr>
75<td class="function_type">75<td class="function_type">
76<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *76<span class="returnvalue">GdkPixbuf</span> *
77</td>77</td>
78<td class="function_name">78<td class="function_name">
79<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source-at-size" title="xfce_panel_pixbuf_from_source_at_size ()">xfce_panel_pixbuf_from_source_at_size</a> <span class="c_punctuation">()</span>79<a class="link" href="libxfce4panel-Convenience-Functions.html#xfce-panel-pixbuf-from-source-at-size" title="xfce_panel_pixbuf_from_source_at_size ()">xfce_panel_pixbuf_from_source_at_size</a> <span class="c_punctuation">()</span>
@@ -124,33 +124,33 @@
124<a name="libxfce4panel-Convenience-Functions.functions_details"></a><h2>Functions</h2>124<a name="libxfce4panel-Convenience-Functions.functions_details"></a><h2>Functions</h2>
125<div class="refsect2">125<div class="refsect2">
126<a name="xfce-panel-create-button"></a><h3>xfce_panel_create_button ()</h3>126<a name="xfce-panel-create-button"></a><h3>xfce_panel_create_button ()</h3>
127<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *127<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
128xfce_panel_create_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>128xfce_panel_create_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
129<p>Create regular <a href="http://library.gnome.org/devel/gtk3/GtkButton.html"><span class="type">GtkButton</span></a> with a few properties set to be useful in the129<p>Create regular <a href="http://developer.gnome.org/gtk2/GtkButton.html"><span class="type">GtkButton</span></a> with a few properties set to be useful in the
130Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>130Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>
131<div class="refsect3">131<div class="refsect3">
132<a name="id-1.5.2.8.2.5"></a><h4>Returns</h4>132<a name="id-1.5.2.8.2.5"></a><h4>Returns</h4>
133<p> newly created <a href="http://library.gnome.org/devel/gtk3/GtkButton.html"><span class="type">GtkButton</span></a>.</p>133<p> newly created <a href="http://developer.gnome.org/gtk2/GtkButton.html"><span class="type">GtkButton</span></a>.</p>
134<p></p>134<p></p>
135</div>135</div>
136</div>136</div>
137<hr>137<hr>
138<div class="refsect2">138<div class="refsect2">
139<a name="xfce-panel-create-toggle-button"></a><h3>xfce_panel_create_toggle_button ()</h3>139<a name="xfce-panel-create-toggle-button"></a><h3>xfce_panel_create_toggle_button ()</h3>
140<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *140<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
141xfce_panel_create_toggle_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>141xfce_panel_create_toggle_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
142<p>Create regular <a href="http://library.gnome.org/devel/gtk3/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a> with a few properties set to be useful in142<p>Create regular <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a> with a few properties set to be useful in
143Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>143Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>
144<div class="refsect3">144<div class="refsect3">
145<a name="id-1.5.2.8.3.5"></a><h4>Returns</h4>145<a name="id-1.5.2.8.3.5"></a><h4>Returns</h4>
146<p> newly created <a href="http://library.gnome.org/devel/gtk3/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a>.</p>146<p> newly created <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a>.</p>
147<p></p>147<p></p>
148</div>148</div>
149</div>149</div>
150<hr>150<hr>
151<div class="refsect2">151<div class="refsect2">
152<a name="xfce-panel-get-channel-name"></a><h3>xfce_panel_get_channel_name ()</h3>152<a name="xfce-panel-get-channel-name"></a><h3>xfce_panel_get_channel_name ()</h3>
153<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *153<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
154xfce_panel_get_channel_name (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>154xfce_panel_get_channel_name (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
155<p>Function for the name of the Xfconf channel used by the panel. By default155<p>Function for the name of the Xfconf channel used by the panel. By default
156this returns "xfce4-panel", but you can override this value with the156this returns "xfce4-panel", but you can override this value with the
@@ -168,10 +168,10 @@
168<hr>168<hr>
169<div class="refsect2">169<div class="refsect2">
170<a name="xfce-panel-pixbuf-from-source"></a><h3>xfce_panel_pixbuf_from_source ()</h3>170<a name="xfce-panel-pixbuf-from-source"></a><h3>xfce_panel_pixbuf_from_source ()</h3>
171<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *171<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *
172xfce_panel_pixbuf_from_source (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,172xfce_panel_pixbuf_from_source (<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
173 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,173 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
174 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>174 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>);</pre>
175<p>See xfce_panel_pixbuf_from_source_at_size</p>175<p>See xfce_panel_pixbuf_from_source_at_size</p>
176<div class="refsect3">176<div class="refsect3">
177<a name="id-1.5.2.8.5.5"></a><h4>Parameters</h4>177<a name="id-1.5.2.8.5.5"></a><h4>Parameters</h4>
@@ -189,7 +189,7 @@
189</tr>189</tr>
190<tr>190<tr>
191<td class="parameter_name"><p>icon_theme</p></td>191<td class="parameter_name"><p>icon_theme</p></td>
192<td class="parameter_description"><p>icon theme or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</p></td>192<td class="parameter_description"><p>icon theme or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</p></td>
193<td class="parameter_annotations"> </td>193<td class="parameter_annotations"> </td>
194</tr>194</tr>
195<tr>195<tr>
@@ -202,7 +202,7 @@
202</div>202</div>
203<div class="refsect3">203<div class="refsect3">
204<a name="id-1.5.2.8.5.6"></a><h4>Returns</h4>204<a name="id-1.5.2.8.5.6"></a><h4>Returns</h4>
205<p> a GdkPixbuf or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should205<p> a GdkPixbuf or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should
206be released with g_object_unref when no longer used.</p>206be released with g_object_unref when no longer used.</p>
207<p>See also: XfcePanelImage</p>207<p>See also: XfcePanelImage</p>
208<p></p>208<p></p>
@@ -212,11 +212,11 @@
212<hr>212<hr>
213<div class="refsect2">213<div class="refsect2">
214<a name="xfce-panel-pixbuf-from-source-at-size"></a><h3>xfce_panel_pixbuf_from_source_at_size ()</h3>214<a name="xfce-panel-pixbuf-from-source-at-size"></a><h3>xfce_panel_pixbuf_from_source_at_size ()</h3>
215<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *215<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *
216xfce_panel_pixbuf_from_source_at_size (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,216xfce_panel_pixbuf_from_source_at_size (<em class="parameter"><code>const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *source</code></em>,
217 <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,217 <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
218 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_width</code></em>,218 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_width</code></em>,
219 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_height</code></em>);</pre>219 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_height</code></em>);</pre>
220<p>Try to load a pixbuf from a source string. The source could be220<p>Try to load a pixbuf from a source string. The source could be
221an abolute path, an icon name or a filename that points to a221an abolute path, an icon name or a filename that points to a
222file in the pixmaps directory.</p>222file in the pixmaps directory.</p>
@@ -243,7 +243,7 @@
243</tr>243</tr>
244<tr>244<tr>
245<td class="parameter_name"><p>icon_theme</p></td>245<td class="parameter_name"><p>icon_theme</p></td>
246<td class="parameter_description"><p>icon theme or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</p></td>246<td class="parameter_description"><p>icon theme or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default icon theme</p></td>
247<td class="parameter_annotations"> </td>247<td class="parameter_annotations"> </td>
248</tr>248</tr>
249<tr>249<tr>
@@ -261,7 +261,7 @@
261</div>261</div>
262<div class="refsect3">262<div class="refsect3">
263<a name="id-1.5.2.8.6.8"></a><h4>Returns</h4>263<a name="id-1.5.2.8.6.8"></a><h4>Returns</h4>
264<p> a GdkPixbuf or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should264<p> a GdkPixbuf or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if nothing was found. The value should
265be released with g_object_unref when no longer used.</p>265be released with g_object_unref when no longer used.</p>
266<p>See also: XfcePanelImage</p>266<p>See also: XfcePanelImage</p>
267<p></p>267<p></p>
@@ -277,7 +277,7 @@
277<p><code class="literal">xfce_allow_panel_customization</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>277<p><code class="literal">xfce_allow_panel_customization</code> has been deprecated since version 4.8 and should not be used in newly-written code.</p>
278<p>Look at <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()"><code class="function">xfce_panel_plugin_get_locked()</code></a>.</p>278<p>Look at <a class="link" href="XfcePanelPlugin.html#xfce-panel-plugin-get-locked" title="xfce_panel_plugin_get_locked ()"><code class="function">xfce_panel_plugin_get_locked()</code></a>.</p>
279</div>279</div>
280<p>Always returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. Plugins can be locked on a plugin basis280<p>Always returns <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>. Plugins can be locked on a plugin basis
281level in the future, so this function is useless.</p>281level in the future, so this function is useless.</p>
282</div>282</div>
283</div>283</div>
@@ -308,6 +308,6 @@
308</div>308</div>
309<div class="footer">309<div class="footer">
310<hr>310<hr>
311 Generated by GTK-Doc V1.20</div>311 Generated by GTK-Doc V1.21</div>
312</body>312</body>
313</html>313</html>
314\ No newline at end of file314\ No newline at end of file
315315
=== modified file 'docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html'
--- docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
9<link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">9<link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
10<link rel="next" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">10<link rel="next" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -161,9 +161,9 @@
161<div class="refsect2">161<div class="refsect2">
162<a name="XFCE-PANEL-DEFINE-TYPE:CAPS"></a><h3>XFCE_PANEL_DEFINE_TYPE()</h3>162<a name="XFCE-PANEL-DEFINE-TYPE:CAPS"></a><h3>XFCE_PANEL_DEFINE_TYPE()</h3>
163<pre class="programlisting">#define XFCE_PANEL_DEFINE_TYPE(TypeName, type_name, TYPE_PARENT)</pre>163<pre class="programlisting">#define XFCE_PANEL_DEFINE_TYPE(TypeName, type_name, TYPE_PARENT)</pre>
164<p>A convenient macro of <a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> for panel plugins. Only164<p>A convenient macro of <a href="https://developer.gnome.org/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> for panel plugins. Only
165difference with <a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> is that the type name send to165difference with <a href="https://developer.gnome.org/gobject/unstable/GTypeModule.html#G-DEFINE-DYNAMIC-TYPE:CAPS"><span class="type">G_DEFINE_DYNAMIC_TYPE</span></a> is that the type name send to
166<a href="http://library.gnome.org/devel/gobject/unstable/GTypeModule.html#g-type-module-register-type"><code class="function">g_type_module_register_type()</code></a> is prefixed with "Xfce". This allows you166<a href="https://developer.gnome.org/gobject/unstable/GTypeModule.html#g-type-module-register-type"><code class="function">g_type_module_register_type()</code></a> is prefixed with "Xfce". This allows you
167use use shorted structure names in the code, while the real name of the167use use shorted structure names in the code, while the real name of the
168object is a full "Xfce" name.</p>168object is a full "Xfce" name.</p>
169<p>The _register_type function should be added to the args in169<p>The _register_type function should be added to the args in
@@ -202,12 +202,12 @@
202<a name="XFCE-PANEL-DEFINE-PREINIT-FUNC:CAPS"></a><h3>XFCE_PANEL_DEFINE_PREINIT_FUNC()</h3>202<a name="XFCE-PANEL-DEFINE-PREINIT-FUNC:CAPS"></a><h3>XFCE_PANEL_DEFINE_PREINIT_FUNC()</h3>
203<pre class="programlisting">#define XFCE_PANEL_DEFINE_PREINIT_FUNC(preinit_func)</pre>203<pre class="programlisting">#define XFCE_PANEL_DEFINE_PREINIT_FUNC(preinit_func)</pre>
204<p>Registers a pre-init function in the plugin module. This function204<p>Registers a pre-init function in the plugin module. This function
205is called before <a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-init"><code class="function">gtk_init()</code></a> and can be used to initialize205is called before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a> and can be used to initialize
206special libaries.206special libaries.
207Downside of this that the plugin cannot run internal. Even if you207Downside of this that the plugin cannot run internal. Even if you
208set X-XFCE-Interal=TRUE in the desktop file, the panel will force208set X-XFCE-Interal=TRUE in the desktop file, the panel will force
209the plugin to run inside a wrapper (this because the panel called209the plugin to run inside a wrapper (this because the panel called
210<a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-init"><code class="function">gtk_init()</code></a> long before it starts to load the plugins).</p>210<a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a> long before it starts to load the plugins).</p>
211<p>Note that you can only use this once and it only works in211<p>Note that you can only use this once and it only works in
212combination with the plugins register/define functions added212combination with the plugins register/define functions added
213in 4.8.</p>213in 4.8.</p>
@@ -243,6 +243,6 @@
243</div>243</div>
244<div class="footer">244<div class="footer">
245<hr>245<hr>
246 Generated by GTK-Doc V1.20</div>246 Generated by GTK-Doc V1.21</div>
247</body>247</body>
248</html>248</html>
249\ No newline at end of file249\ No newline at end of file
250250
=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html'
--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
9<link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">9<link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
10<link rel="next" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">10<link rel="next" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -130,7 +130,7 @@
130 for more information.</p>130 for more information.</p>
131</div>131</div>
132<p>Same as <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html#XFCE-PANEL-PLUGIN-REGISTER-EXTERNAL-WITH-CHECK:CAPS" title="XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()"><code class="function">XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()</code></a>, but with a132<p>Same as <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html#XFCE-PANEL-PLUGIN-REGISTER-EXTERNAL-WITH-CHECK:CAPS" title="XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()"><code class="function">XFCE_PANEL_PLUGIN_REGISTER_EXTERNAL_WITH_CHECK()</code></a>, but with a
133preinit function that is called before <a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-init"><code class="function">gtk_init()</code></a>. This allows plugins133preinit function that is called before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a>. This allows plugins
134to initialize libraries or threads.</p>134to initialize libraries or threads.</p>
135<div class="refsect3">135<div class="refsect3">
136<a name="id-1.3.5.7.3.7"></a><h4>Parameters</h4>136<a name="id-1.3.5.7.3.7"></a><h4>Parameters</h4>
@@ -150,13 +150,13 @@
150<tr>150<tr>
151<td class="parameter_name"><p>preinit_func</p></td>151<td class="parameter_name"><p>preinit_func</p></td>
152<td class="parameter_description"><p>name of a function that can be case to <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()"><span class="type">XfcePanelPluginPreInit</span></a>152<td class="parameter_description"><p>name of a function that can be case to <a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()"><span class="type">XfcePanelPluginPreInit</span></a>
153or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>153or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
154<td class="parameter_annotations"> </td>154<td class="parameter_annotations"> </td>
155</tr>155</tr>
156<tr>156<tr>
157<td class="parameter_name"><p>check_func</p></td>157<td class="parameter_name"><p>check_func</p></td>
158<td class="parameter_description"><p>name of a function that can be cast to an158<td class="parameter_description"><p>name of a function that can be cast to an
159<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>159<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
160<td class="parameter_annotations"> </td>160<td class="parameter_annotations"> </td>
161</tr>161</tr>
162</tbody>162</tbody>
@@ -198,7 +198,7 @@
198<tr>198<tr>
199<td class="parameter_name"><p>check_func</p></td>199<td class="parameter_name"><p>check_func</p></td>
200<td class="parameter_description"><p>name of a function that can be cast to an200<td class="parameter_description"><p>name of a function that can be cast to an
201<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>201<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
202<td class="parameter_annotations"> </td>202<td class="parameter_annotations"> </td>
203</tr>203</tr>
204</tbody>204</tbody>
@@ -258,7 +258,7 @@
258<tr>258<tr>
259<td class="parameter_name"><p>check_func</p></td>259<td class="parameter_name"><p>check_func</p></td>
260<td class="parameter_description"><p>name of a function that can be cast to an260<td class="parameter_description"><p>name of a function that can be cast to an
261<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>261<a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()"><span class="type">XfcePanelPluginCheck</span></a> or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
262<td class="parameter_annotations"> </td>262<td class="parameter_annotations"> </td>
263</tr>263</tr>
264</tbody>264</tbody>
@@ -272,6 +272,6 @@
272</div>272</div>
273<div class="footer">273<div class="footer">
274<hr>274<hr>
275 Generated by GTK-Doc V1.20</div>275 Generated by GTK-Doc V1.21</div>
276</body>276</body>
277</html>277</html>
278\ No newline at end of file278\ No newline at end of file
279279
=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html'
--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">8<link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
9<link rel="prev" href="XfcePanelPlugin.html" title="XfcePanelPlugin">9<link rel="prev" href="XfcePanelPlugin.html" title="XfcePanelPlugin">
10<link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">10<link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Panel-Plugin-Register-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Panel-Plugin-Register-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Panel-Plugin-Register-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Panel-Plugin-Register-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -42,7 +42,7 @@
42<tbody>42<tbody>
43<tr>43<tr>
44<td class="function_type">44<td class="function_type">
45<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>45<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
46</td>46</td>
47<td class="function_name">47<td class="function_name">
48<span class="c_punctuation">(</span><a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()">*XfcePanelPluginCheck</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>48<span class="c_punctuation">(</span><a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginCheck" title="XfcePanelPluginCheck ()">*XfcePanelPluginCheck</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
@@ -58,7 +58,7 @@
58</tr>58</tr>
59<tr>59<tr>
60<td class="function_type">60<td class="function_type">
61<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>61<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
62</td>62</td>
63<td class="function_name">63<td class="function_name">
64<span class="c_punctuation">(</span><a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()">*XfcePanelPluginPreInit</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>64<span class="c_punctuation">(</span><a class="link" href="libxfce4panel-Panel-Plugin-Register-Macros.html#XfcePanelPluginPreInit" title="XfcePanelPluginPreInit ()">*XfcePanelPluginPreInit</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
@@ -105,10 +105,10 @@
105<a name="libxfce4panel-Panel-Plugin-Register-Macros.functions_details"></a><h2>Functions</h2>105<a name="libxfce4panel-Panel-Plugin-Register-Macros.functions_details"></a><h2>Functions</h2>
106<div class="refsect2">106<div class="refsect2">
107<a name="XfcePanelPluginCheck"></a><h3>XfcePanelPluginCheck ()</h3>107<a name="XfcePanelPluginCheck"></a><h3>XfcePanelPluginCheck ()</h3>
108<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>108<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
109<span class="c_punctuation">(</span>*XfcePanelPluginCheck<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://developer.gnome.org/gdk2/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>109<span class="c_punctuation">(</span>*XfcePanelPluginCheck<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://developer.gnome.org/gdk2/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
110<p>Callback function that is run before creating a plugin. It should return110<p>Callback function that is run before creating a plugin. It should return
111<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason. The function111<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason. The function
112can be given as argument to one of the registration macros.</p>112can be given as argument to one of the registration macros.</p>
113<div class="refsect3">113<div class="refsect3">
114<a name="id-1.3.4.7.2.5"></a><h4>Parameters</h4>114<a name="id-1.3.4.7.2.5"></a><h4>Parameters</h4>
@@ -127,7 +127,7 @@
127</div>127</div>
128<div class="refsect3">128<div class="refsect3">
129<a name="id-1.3.4.7.2.6"></a><h4>Returns</h4>129<a name="id-1.3.4.7.2.6"></a><h4>Returns</h4>
130<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin can be started, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>130<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the plugin can be started, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
131<p></p>131<p></p>
132</div>132</div>
133</div>133</div>
@@ -157,14 +157,14 @@
157<hr>157<hr>
158<div class="refsect2">158<div class="refsect2">
159<a name="XfcePanelPluginPreInit"></a><h3>XfcePanelPluginPreInit ()</h3>159<a name="XfcePanelPluginPreInit"></a><h3>XfcePanelPluginPreInit ()</h3>
160<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>160<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
161<span class="c_punctuation">(</span>*XfcePanelPluginPreInit<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> argc</code></em>,161<span class="c_punctuation">(</span>*XfcePanelPluginPreInit<span class="c_punctuation">)</span> (<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> argc</code></em>,
162 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **argv</code></em>);</pre>162 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **argv</code></em>);</pre>
163<p>Callback function that is run in an external plugin before <a href="http://library.gnome.org/devel/gtk3/gtk2-General.html#gtk-init"><code class="function">gtk_init()</code></a>. It163<p>Callback function that is run in an external plugin before <a href="http://developer.gnome.org/gtk2/gtk3-General.html#gtk-init"><code class="function">gtk_init()</code></a>. It
164should return <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason.164should return <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> if the plugin is not available for whatever reason.
165The function can be given as argument to one of the registration macros.</p>165The function can be given as argument to one of the registration macros.</p>
166<p>The main purpose of this callback is to allow multithreaded plugins to call166<p>The main purpose of this callback is to allow multithreaded plugins to call
167<a href="http://library.gnome.org/devel/glib/unstable/glib-Deprecated-Thread-APIs.html#g-thread-init"><code class="function">g_thread_init()</code></a>.</p>167<a href="https://developer.gnome.org/glib/unstable/glib-Deprecated-Thread-APIs.html#g-thread-init"><code class="function">g_thread_init()</code></a>.</p>
168<div class="refsect3">168<div class="refsect3">
169<a name="id-1.3.4.7.4.6"></a><h4>Parameters</h4>169<a name="id-1.3.4.7.4.6"></a><h4>Parameters</h4>
170<div class="informaltable"><table width="100%" border="0">170<div class="informaltable"><table width="100%" border="0">
@@ -189,7 +189,7 @@
189</div>189</div>
190<div class="refsect3">190<div class="refsect3">
191<a name="id-1.3.4.7.4.7"></a><h4>Returns</h4>191<a name="id-1.3.4.7.4.7"></a><h4>Returns</h4>
192<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>192<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
193<p></p>193<p></p>
194</div>194</div>
195<p class="since">Since 4.6</p>195<p class="since">Since 4.6</p>
@@ -227,7 +227,7 @@
227<p>Register a panel plugin using a construct function. The <em class="parameter"><code>check_func</code></em>227<p>Register a panel plugin using a construct function. The <em class="parameter"><code>check_func</code></em>
228228
229will be called before the plugin is created. If this function returns229will be called before the plugin is created. If this function returns
230<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the plugin won't be added to the panel. For proper feedback,230<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>, the plugin won't be added to the panel. For proper feedback,
231you are responsible for showing a dialog why the plugin is not added231you are responsible for showing a dialog why the plugin is not added
232to the panel.</p>232to the panel.</p>
233<div class="refsect3">233<div class="refsect3">
@@ -302,6 +302,6 @@
302</div>302</div>
303<div class="footer">303<div class="footer">
304<hr>304<hr>
305 Generated by GTK-Doc V1.20</div>305 Generated by GTK-Doc V1.21</div>
306</body>306</body>
307</html>307</html>
308\ No newline at end of file308\ No newline at end of file
309309
=== modified file 'docs/references/html/libxfce4panel-Standard-Enumerations.html'
--- docs/references/html/libxfce4panel-Standard-Enumerations.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Standard-Enumerations.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
9<link rel="prev" href="libxfce4panel-Version-Information.html" title="Version Information">9<link rel="prev" href="libxfce4panel-Version-Information.html" title="Version Information">
10<link rel="next" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">10<link rel="next" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Standard-Enumerations.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Standard-Enumerations.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Standard-Enumerations.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Standard-Enumerations.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -117,7 +117,7 @@
117<div class="refsect2">117<div class="refsect2">
118<a name="xfce-screen-position-get-orientation"></a><h3>xfce_screen_position_get_orientation()</h3>118<a name="xfce-screen-position-get-orientation"></a><h3>xfce_screen_position_get_orientation()</h3>
119<pre class="programlisting">#define xfce_screen_position_get_orientation(position)</pre>119<pre class="programlisting">#define xfce_screen_position_get_orientation(position)</pre>
120<p>Converts the current <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> into a <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>.</p>120<p>Converts the current <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> into a <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a>.</p>
121<div class="refsect3">121<div class="refsect3">
122<a name="id-1.2.3.8.2.5"></a><h4>Parameters</h4>122<a name="id-1.2.3.8.2.5"></a><h4>Parameters</h4>
123<div class="informaltable"><table width="100%" border="0">123<div class="informaltable"><table width="100%" border="0">
@@ -135,7 +135,7 @@
135</div>135</div>
136<div class="refsect3">136<div class="refsect3">
137<a name="id-1.2.3.8.2.6"></a><h4>Returns</h4>137<a name="id-1.2.3.8.2.6"></a><h4>Returns</h4>
138<p> the <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> corresponding to <em class="parameter"><code>position</code></em>138<p> the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> corresponding to <em class="parameter"><code>position</code></em>
139.</p>139.</p>
140<p></p>140<p></p>
141</div>141</div>
@@ -163,7 +163,7 @@
163</div>163</div>
164<div class="refsect3">164<div class="refsect3">
165<a name="id-1.2.3.8.3.6"></a><h4>Returns</h4>165<a name="id-1.2.3.8.3.6"></a><h4>Returns</h4>
166<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the bottom of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>166<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the bottom of the screen, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
167<p></p>167<p></p>
168</div>168</div>
169</div>169</div>
@@ -189,7 +189,7 @@
189</div>189</div>
190<div class="refsect3">190<div class="refsect3">
191<a name="id-1.2.3.8.4.6"></a><h4>Returns</h4>191<a name="id-1.2.3.8.4.6"></a><h4>Returns</h4>
192<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if floating, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>192<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if floating, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
193<p></p>193<p></p>
194</div>194</div>
195</div>195</div>
@@ -215,7 +215,7 @@
215</div>215</div>
216<div class="refsect3">216<div class="refsect3">
217<a name="id-1.2.3.8.5.6"></a><h4>Returns</h4>217<a name="id-1.2.3.8.5.6"></a><h4>Returns</h4>
218<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if horizontal, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>218<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if horizontal, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
219<p></p>219<p></p>
220</div>220</div>
221</div>221</div>
@@ -242,7 +242,7 @@
242</div>242</div>
243<div class="refsect3">243<div class="refsect3">
244<a name="id-1.2.3.8.6.6"></a><h4>Returns</h4>244<a name="id-1.2.3.8.6.6"></a><h4>Returns</h4>
245<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the left of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>245<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the left of the screen, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
246<p></p>246<p></p>
247</div>247</div>
248</div>248</div>
@@ -269,7 +269,7 @@
269</div>269</div>
270<div class="refsect3">270<div class="refsect3">
271<a name="id-1.2.3.8.7.6"></a><h4>Returns</h4>271<a name="id-1.2.3.8.7.6"></a><h4>Returns</h4>
272<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the right of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>272<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the right of the screen, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
273<p></p>273<p></p>
274</div>274</div>
275</div>275</div>
@@ -296,7 +296,7 @@
296</div>296</div>
297<div class="refsect3">297<div class="refsect3">
298<a name="id-1.2.3.8.8.6"></a><h4>Returns</h4>298<a name="id-1.2.3.8.8.6"></a><h4>Returns</h4>
299<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the top of the screen, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>299<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if on the top of the screen, <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</p>
300<p></p>300<p></p>
301</div>301</div>
302</div>302</div>
@@ -432,6 +432,6 @@
432</div>432</div>
433<div class="footer">433<div class="footer">
434<hr>434<hr>
435 Generated by GTK-Doc V1.20</div>435 Generated by GTK-Doc V1.21</div>
436</body>436</body>
437</html>437</html>
438\ No newline at end of file438\ No newline at end of file
439439
=== modified file 'docs/references/html/libxfce4panel-Version-Information.html'
--- docs/references/html/libxfce4panel-Version-Information.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-Version-Information.html 2015-01-04 19:54:48 +0000
@@ -8,14 +8,14 @@
8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">8<link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
9<link rel="prev" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">9<link rel="prev" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
10<link rel="next" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">10<link rel="next" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts">16<td width="100%" align="left" class="shortcuts">
17<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 17<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
18 <a href="#libxfce4panel-Version-Information.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 18 <a href="#libxfce4panel-Version-Information.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
19 <a href="#libxfce4panel-Version-Information.object-hierarchy" class="shortcut">Object Hierarchy</a></span>19 <a href="#libxfce4panel-Version-Information.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20</td>20</td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>21<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
@@ -41,7 +41,7 @@
41</colgroup>41</colgroup>
42<tbody>42<tbody>
43<tr>43<tr>
44<td class="function_type">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *44<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
45</td>45</td>
46<td class="function_name">46<td class="function_name">
47<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-check-version" title="libxfce4panel_check_version ()">libxfce4panel_check_version</a> <span class="c_punctuation">()</span>47<a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-check-version" title="libxfce4panel_check_version ()">libxfce4panel_check_version</a> <span class="c_punctuation">()</span>
@@ -114,10 +114,10 @@
114<a name="libxfce4panel-Version-Information.functions_details"></a><h2>Functions</h2>114<a name="libxfce4panel-Version-Information.functions_details"></a><h2>Functions</h2>
115<div class="refsect2">115<div class="refsect2">
116<a name="libxfce4panel-check-version"></a><h3>libxfce4panel_check_version ()</h3>116<a name="libxfce4panel-check-version"></a><h3>libxfce4panel_check_version ()</h3>
117<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *117<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
118libxfce4panel_check_version (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_major</code></em>,118libxfce4panel_check_version (<em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_major</code></em>,
119 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_minor</code></em>,119 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_minor</code></em>,
120 <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_micro</code></em>);</pre>120 <em class="parameter"><code><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> required_micro</code></em>);</pre>
121<p>Checks that the libxfce4panel library in use is compatible with121<p>Checks that the libxfce4panel library in use is compatible with
122the given version. Generally you would pass in the constants122the given version. Generally you would pass in the constants
123<a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MAJOR-VERSION:CAPS" title="LIBXFCE4PANEL_MAJOR_VERSION"><span class="type">LIBXFCE4PANEL_MAJOR_VERSION</span></a>, <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MINOR-VERSION:CAPS" title="LIBXFCE4PANEL_MINOR_VERSION"><span class="type">LIBXFCE4PANEL_MINOR_VERSION</span></a> and123<a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MAJOR-VERSION:CAPS" title="LIBXFCE4PANEL_MAJOR_VERSION"><span class="type">LIBXFCE4PANEL_MAJOR_VERSION</span></a>, <a class="link" href="libxfce4panel-Version-Information.html#LIBXFCE4PANEL-MINOR-VERSION:CAPS" title="LIBXFCE4PANEL_MINOR_VERSION"><span class="type">LIBXFCE4PANEL_MINOR_VERSION</span></a> and
@@ -165,7 +165,7 @@
165</div>165</div>
166<div class="refsect3">166<div class="refsect3">
167<a name="id-1.2.2.8.2.7"></a><h4>Returns</h4>167<a name="id-1.2.2.8.2.7"></a><h4>Returns</h4>
168<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the library is compatible with the given version,168<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the library is compatible with the given version,
169or a string describing the version mismatch. The returned169or a string describing the version mismatch. The returned
170string is owned by the library and must not be freed or170string is owned by the library and must not be freed or
171modified by the caller.</p>171modified by the caller.</p>
@@ -248,7 +248,7 @@
248</div>248</div>
249<div class="refsect3">249<div class="refsect3">
250<a name="id-1.2.2.8.7.6"></a><h4>Returns</h4>250<a name="id-1.2.2.8.7.6"></a><h4>Returns</h4>
251<p> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the version of the libxfce4panel header files is251<p> <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the version of the libxfce4panel header files is
252the same as or newer than the passed-in version.</p>252the same as or newer than the passed-in version.</p>
253<p></p>253<p></p>
254</div>254</div>
@@ -299,6 +299,6 @@
299</div>299</div>
300<div class="footer">300<div class="footer">
301<hr>301<hr>
302 Generated by GTK-Doc V1.20</div>302 Generated by GTK-Doc V1.21</div>
303</body>303</body>
304</html>304</html>
305\ No newline at end of file305\ No newline at end of file
306306
=== modified file 'docs/references/html/libxfce4panel-fundamentals.html'
--- docs/references/html/libxfce4panel-fundamentals.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-fundamentals.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="index.html" title="Libxfce4panel Reference Manual">9<link rel="prev" href="index.html" title="Libxfce4panel Reference Manual">
10<link rel="next" href="libxfce4panel-Version-Information.html" title="Version Information">10<link rel="next" href="libxfce4panel-Version-Information.html" title="Version Information">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"></td>16<td width="100%" align="left" class="shortcuts"></td>
17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -39,6 +39,6 @@
39</div>39</div>
40<div class="footer">40<div class="footer">
41<hr>41<hr>
42 Generated by GTK-Doc V1.20</div>42 Generated by GTK-Doc V1.21</div>
43</body>43</body>
44</html>44</html>
45\ No newline at end of file45\ No newline at end of file
4646
=== modified file 'docs/references/html/libxfce4panel-miscelleanous.html'
--- docs/references/html/libxfce4panel-miscelleanous.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-miscelleanous.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="XfcePanelImage.html" title="XfcePanelImage">9<link rel="prev" href="XfcePanelImage.html" title="XfcePanelImage">
10<link rel="next" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">10<link rel="next" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"></td>16<td width="100%" align="left" class="shortcuts"></td>
17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -31,6 +31,6 @@
31</div>31</div>
32<div class="footer">32<div class="footer">
33<hr>33<hr>
34 Generated by GTK-Doc V1.20</div>34 Generated by GTK-Doc V1.21</div>
35</body>35</body>
36</html>36</html>
37\ No newline at end of file37\ No newline at end of file
3838
=== modified file 'docs/references/html/libxfce4panel-plugins.html'
--- docs/references/html/libxfce4panel-plugins.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-plugins.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">9<link rel="prev" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">
10<link rel="next" href="XfcePanelPlugin.html" title="XfcePanelPlugin">10<link rel="next" href="XfcePanelPlugin.html" title="XfcePanelPlugin">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"></td>16<td width="100%" align="left" class="shortcuts"></td>
17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -97,6 +97,6 @@
97</div>97</div>
98<div class="footer">98<div class="footer">
99<hr>99<hr>
100 Generated by GTK-Doc V1.20</div>100 Generated by GTK-Doc V1.21</div>
101</body>101</body>
102</html>102</html>
103\ No newline at end of file103\ No newline at end of file
104104
=== modified file 'docs/references/html/libxfce4panel-widgets.html'
--- docs/references/html/libxfce4panel-widgets.html 2014-06-23 08:06:22 +0000
+++ docs/references/html/libxfce4panel-widgets.html 2015-01-04 19:54:48 +0000
@@ -8,11 +8,11 @@
8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">8<link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
9<link rel="prev" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">9<link rel="prev" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">
10<link rel="next" href="XfceArrowButton.html" title="XfceArrowButton">10<link rel="next" href="XfceArrowButton.html" title="XfceArrowButton">
11<meta name="generator" content="GTK-Doc V1.20 (XML mode)">11<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">12<link rel="stylesheet" href="style.css" type="text/css">
13</head>13</head>
14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">14<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">15<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16<td width="100%" align="left" class="shortcuts"></td>16<td width="100%" align="left" class="shortcuts"></td>
17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>17<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>18<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
@@ -40,6 +40,6 @@
40</div>40</div>
41<div class="footer">41<div class="footer">
42<hr>42<hr>
43 Generated by GTK-Doc V1.20</div>43 Generated by GTK-Doc V1.21</div>
44</body>44</body>
45</html>45</html>
46\ No newline at end of file46\ No newline at end of file
4747
=== modified file 'docs/references/html/style.css'
--- docs/references/html/style.css 2014-06-23 08:06:22 +0000
+++ docs/references/html/style.css 2015-01-04 19:54:48 +0000
@@ -30,127 +30,6 @@
30 vertical-align: top;30 vertical-align: top;
31}31}
3232
33@media screen {
34 sup a.footnote
35 {
36 position: relative;
37 top: 0em ! important;
38 }
39 /* this is needed so that the local anchors are displayed below the naviagtion */
40 div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
41 {
42 display: inline-block;
43 position: relative;
44 top:-5em;
45 }
46 /* this seems to be a bug in the xsl style sheets when generating indexes */
47 div.index div.index
48 {
49 top: 0em;
50 }
51 /* make space for the fixed navigation bar and add space at the bottom so that
52 * link targets appear somewhat close to top
53 */
54 body
55 {
56 padding-top: 5em;
57 padding-bottom: 500px;
58 max-width: 60em;
59 }
60 p
61 {
62 max-width: 60em;
63 }
64 /* style and size the navigation bar */
65 table.navigation#top
66 {
67 position: fixed;
68 background: #e2e2e2;
69 border-bottom: solid 1px #babdb6;
70 margin-top: 0;
71 margin-bottom: 0;
72 top: 0;
73 left: 0;
74 height: 3em;
75 z-index: 10;
76 }
77 .navigation a, .navigation a:visited
78 {
79 /* tango:sky blue 3 */
80 color: #204a87;
81 }
82 .navigation a:hover
83 {
84 /* tango:sky blue 2 */
85 color: #3465a4;
86 }
87 td.shortcuts
88 {
89 /* tango:sky blue 2 */
90 color: #3465a4;
91 font-size: 80%;
92 white-space: nowrap;
93 }
94 td.shortcuts .dim
95 {
96 color: #babdb6;
97 }
98}
99@media screen and (min-width: 60em) {
100 /* screen larger than 60em */
101 body { margin: auto; }
102}
103@media screen and (max-width: 60em) {
104 /* screen less than 60em */
105 #nav_hierarchy { display: none; }
106 #nav_interfaces { display: none; }
107 #nav_prerequisites { display: none; }
108 #nav_derived_interfaces { display: none; }
109 #nav_implementations { display: none; }
110 #nav_child_properties { display: none; }
111 #nav_style_properties { display: none; }
112 #nav_index { display: none; }
113 #nav_glossary { display: none; }
114 .gallery_image { display: none; }
115 .property_flags { display: none; }
116 .signal_flags { display: none; }
117 .parameter_annotations { display: none; }
118 .enum_member_annotations { display: none; }
119 .struct_member_annotations { display: none; }
120 .union_member_annotations { display: none; }
121 /* now that a column is hidden, optimize space */
122 col.parameters_name { width: auto; }
123 col.parameters_description { width: auto; }
124 col.struct_members_name { width: auto; }
125 col.struct_members_description { width: auto; }
126 col.enum_members_name { width: auto; }
127 col.enum_members_description { width: auto; }
128 col.union_members_name { width: auto; }
129 col.union_members_description { width: auto; }
130}
131@media print {
132 table.navigation {
133 visibility: collapse;
134 display: none;
135 }
136 div.titlepage table.navigation {
137 visibility: visible;
138 display: table;
139 background: #e2e2e2;
140 border: solid 1px #babdb6;
141 margin-top: 0;
142 margin-bottom: 0;
143 top: 0;
144 left: 0;
145 height: 3em;
146 }
147}
148
149.navigation .title
150{
151 font-size: 120%;
152}
153
154div.gallery-float33div.gallery-float
155{34{
156 float: left;35 float: left;
@@ -181,7 +60,7 @@
181div.informaltable table60div.informaltable table
182{61{
183 border-collapse: separate;62 border-collapse: separate;
184 border-spacing: 20px 3px;63 border-spacing: 1em 0.5em;
185 border: none;64 border: none;
186}65}
18766
@@ -239,6 +118,11 @@
239 color: #729fcf;118 color: #729fcf;
240}119}
241120
121td p
122{
123 margin: 0.25em;
124}
125
242div.table table126div.table table
243{127{
244 border-collapse: collapse;128 border-collapse: collapse;
@@ -404,21 +288,28 @@
404 font-weight: normal;288 font-weight: normal;
405}289}
406290
291acronym,abbr
292{
293 border-bottom: 1px dotted gray;
294}
295
407/* code listings */296/* code listings */
408297
409.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */298.listing_code .programlisting .normal,
410.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */299.listing_code .programlisting .normal a,
411.listing_code .programlisting .function { color: #000000; font-weight: bold; }300.listing_code .programlisting .number,
412.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */301.listing_code .programlisting .cbracket,
413.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */302.listing_code .programlisting .symbol { color: #555753; }
303.listing_code .programlisting .comment,
414.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */304.listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
415.listing_code .programlisting .normal { color: #000000; }305.listing_code .programlisting .function,
416.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */306.listing_code .programlisting .function a,
417.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */307.listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
418.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */308.listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
419.listing_code .programlisting .type { color: #000000; }309.listing_code .programlisting .keyword,
420.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */310.listing_code .programlisting .usertype,
421.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */311.listing_code .programlisting .type,
312.listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
422313
423.listing_frame {314.listing_frame {
424 /* tango:sky blue 1 */315 /* tango:sky blue 1 */
@@ -433,11 +324,6 @@
433 padding: 0.5em;324 padding: 0.5em;
434}325}
435.listing_lines {326.listing_lines {
436 /* this just adds visual clutter and
437 takes precious room from small screens */
438 display: none;
439}
440.listing_lines {
441 /* tango:sky blue 0.5 */327 /* tango:sky blue 0.5 */
442 background: #a6c5e3;328 background: #a6c5e3;
443 background: rgba(114, 159, 207, 0.2);329 background: rgba(114, 159, 207, 0.2);
@@ -459,3 +345,132 @@
459 margin: 0px;345 margin: 0px;
460}346}
461347
348@media screen {
349 sup a.footnote
350 {
351 position: relative;
352 top: 0em ! important;
353 }
354 /* this is needed so that the local anchors are displayed below the naviagtion */
355 div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
356 {
357 display: inline-block;
358 position: relative;
359 top:-5em;
360 }
361 /* this seems to be a bug in the xsl style sheets when generating indexes */
362 div.index div.index
363 {
364 top: 0em;
365 }
366 /* make space for the fixed navigation bar and add space at the bottom so that
367 * link targets appear somewhat close to top
368 */
369 body
370 {
371 padding-top: 2.5em;
372 padding-bottom: 500px;
373 max-width: 60em;
374 }
375 p
376 {
377 max-width: 60em;
378 }
379 /* style and size the navigation bar */
380 table.navigation#top
381 {
382 position: fixed;
383 background: #e2e2e2;
384 border-bottom: solid 1px #babdb6;
385 border-spacing: 5px;
386 margin-top: 0;
387 margin-bottom: 0;
388 top: 0;
389 left: 0;
390 z-index: 10;
391 }
392 table.navigation#top td
393 {
394 padding-left: 6px;
395 padding-right: 6px;
396 }
397 .navigation a, .navigation a:visited
398 {
399 /* tango:sky blue 3 */
400 color: #204a87;
401 }
402 .navigation a:hover
403 {
404 /* tango:sky blue 2 */
405 color: #3465a4;
406 }
407 td.shortcuts
408 {
409 /* tango:sky blue 2 */
410 color: #3465a4;
411 font-size: 80%;
412 white-space: nowrap;
413 }
414 td.shortcuts .dim
415 {
416 color: #babdb6;
417 }
418 .navigation .title
419 {
420 font-size: 80%;
421 max-width: none;
422 margin: 0px;
423 font-weight: normal;
424 }
425}
426@media screen and (min-width: 60em) {
427 /* screen larger than 60em */
428 body { margin: auto; }
429}
430@media screen and (max-width: 60em) {
431 /* screen less than 60em */
432 #nav_hierarchy { display: none; }
433 #nav_interfaces { display: none; }
434 #nav_prerequisites { display: none; }
435 #nav_derived_interfaces { display: none; }
436 #nav_implementations { display: none; }
437 #nav_child_properties { display: none; }
438 #nav_style_properties { display: none; }
439 #nav_index { display: none; }
440 #nav_glossary { display: none; }
441 .gallery_image { display: none; }
442 .property_flags { display: none; }
443 .signal_flags { display: none; }
444 .parameter_annotations { display: none; }
445 .enum_member_annotations { display: none; }
446 .struct_member_annotations { display: none; }
447 .union_member_annotations { display: none; }
448 /* now that a column is hidden, optimize space */
449 col.parameters_name { width: auto; }
450 col.parameters_description { width: auto; }
451 col.struct_members_name { width: auto; }
452 col.struct_members_description { width: auto; }
453 col.enum_members_name { width: auto; }
454 col.enum_members_description { width: auto; }
455 col.union_members_name { width: auto; }
456 col.union_members_description { width: auto; }
457 .listing_lines { display: none; }
458}
459@media print {
460 table.navigation {
461 visibility: collapse;
462 display: none;
463 }
464 div.titlepage table.navigation {
465 visibility: visible;
466 display: table;
467 background: #e2e2e2;
468 border: solid 1px #babdb6;
469 margin-top: 0;
470 margin-bottom: 0;
471 top: 0;
472 left: 0;
473 height: 3em;
474 }
475}
476
462477
=== modified file 'docs/references/version.xml'
--- docs/references/version.xml 2014-06-23 08:06:22 +0000
+++ docs/references/version.xml 2015-01-04 19:54:48 +0000
@@ -1,1 +1,1 @@
14.11.114.11.2
22
=== modified file 'libxfce4panel/libxfce4panel-config.h'
--- libxfce4panel/libxfce4panel-config.h 2014-06-23 08:06:22 +0000
+++ libxfce4panel/libxfce4panel-config.h 2015-01-04 19:54:48 +0000
@@ -34,7 +34,7 @@
34 *34 *
35 * Since: 4.835 * Since: 4.8
36 **/36 **/
37#define LIBXFCE4PANEL_VERSION ("4.11.1")37#define LIBXFCE4PANEL_VERSION ("4.11.2")
3838
39/**39/**
40 * LIBXFCE4PANEL_MAJOR_VERSION:40 * LIBXFCE4PANEL_MAJOR_VERSION:
@@ -70,7 +70,7 @@
70 * 70 *
71 * Since: 4.871 * Since: 4.8
72 **/72 **/
73#define LIBXFCE4PANEL_MICRO_VERSION (1)73#define LIBXFCE4PANEL_MICRO_VERSION (2)
7474
75/**75/**
76 * LIBXFCE4PANEL_CHECK_VERSION:76 * LIBXFCE4PANEL_CHECK_VERSION:
7777
=== modified file 'ltmain.sh'
--- ltmain.sh 2014-06-23 08:06:22 +0000
+++ ltmain.sh 2015-01-04 19:54:48 +0000
@@ -70,7 +70,7 @@
70# compiler: $LTCC70# compiler: $LTCC
71# compiler flags: $LTCFLAGS71# compiler flags: $LTCFLAGS
72# linker: $LD (gnu? $with_gnu_ld)72# linker: $LD (gnu? $with_gnu_ld)
73# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7ubuntu173# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.10ubuntu1
74# automake: $automake_version74# automake: $automake_version
75# autoconf: $autoconf_version75# autoconf: $autoconf_version
76#76#
@@ -80,7 +80,7 @@
8080
81PROGRAM=libtool81PROGRAM=libtool
82PACKAGE=libtool82PACKAGE=libtool
83VERSION="2.4.2 Debian-2.4.2-1.7ubuntu1"83VERSION="2.4.2 Debian-2.4.2-1.10ubuntu1"
84TIMESTAMP=""84TIMESTAMP=""
85package_revision=1.333785package_revision=1.3337
8686
8787
=== modified file 'panel/Makefile.am'
--- panel/Makefile.am 2014-02-12 15:41:39 +0000
+++ panel/Makefile.am 2015-01-04 19:54:48 +0000
@@ -8,6 +8,7 @@
8 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \8 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \
9 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \9 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
10 -DDBUS_API_SUBJECT_TO_CHANGE \10 -DDBUS_API_SUBJECT_TO_CHANGE \
11 -DWNCK_I_KNOW_THIS_IS_UNSTABLE \
11 $(PLATFORM_CPPFLAGS)12 $(PLATFORM_CPPFLAGS)
1213
13bin_PROGRAMS = \14bin_PROGRAMS = \
@@ -65,6 +66,7 @@
65 $(DBUS_CFLAGS) \66 $(DBUS_CFLAGS) \
66 $(XFCONF_CFLAGS) \67 $(XFCONF_CFLAGS) \
67 $(LIBX11_CFLAGS) \68 $(LIBX11_CFLAGS) \
69 $(LIBWNCK_CFLAGS) \
68 $(PLATFORM_CFLAGS)70 $(PLATFORM_CFLAGS)
6971
70xfce4_panel_LDFLAGS = \72xfce4_panel_LDFLAGS = \
@@ -83,6 +85,7 @@
83 $(XFCONF_LIBS) \85 $(XFCONF_LIBS) \
84 $(DBUS_LIBS) \86 $(DBUS_LIBS) \
85 $(LIBX11_LIBS) \87 $(LIBX11_LIBS) \
88 $(LIBWNCK_LIBS) \
86 -lm89 -lm
8790
88xfce4_panel_DEPENDENCIES = \91xfce4_panel_DEPENDENCIES = \
8992
=== modified file 'panel/Makefile.in'
--- panel/Makefile.in 2014-06-23 08:06:22 +0000
+++ panel/Makefile.in 2015-01-04 19:54:48 +0000
@@ -424,6 +424,7 @@
424 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \424 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \
425 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \425 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
426 -DDBUS_API_SUBJECT_TO_CHANGE \426 -DDBUS_API_SUBJECT_TO_CHANGE \
427 -DWNCK_I_KNOW_THIS_IS_UNSTABLE \
427 $(PLATFORM_CPPFLAGS)428 $(PLATFORM_CPPFLAGS)
428429
429xfce4_panel_built_sources = \430xfce4_panel_built_sources = \
@@ -478,6 +479,7 @@
478 $(DBUS_CFLAGS) \479 $(DBUS_CFLAGS) \
479 $(XFCONF_CFLAGS) \480 $(XFCONF_CFLAGS) \
480 $(LIBX11_CFLAGS) \481 $(LIBX11_CFLAGS) \
482 $(LIBWNCK_CFLAGS) \
481 $(PLATFORM_CFLAGS)483 $(PLATFORM_CFLAGS)
482484
483xfce4_panel_LDFLAGS = \485xfce4_panel_LDFLAGS = \
@@ -496,6 +498,7 @@
496 $(XFCONF_LIBS) \498 $(XFCONF_LIBS) \
497 $(DBUS_LIBS) \499 $(DBUS_LIBS) \
498 $(LIBX11_LIBS) \500 $(LIBX11_LIBS) \
501 $(LIBWNCK_LIBS) \
499 -lm502 -lm
500503
501xfce4_panel_DEPENDENCIES = \504xfce4_panel_DEPENDENCIES = \
502505
=== modified file 'panel/main.c'
--- panel/main.c 2014-02-12 15:41:39 +0000
+++ panel/main.c 2015-01-04 19:54:48 +0000
@@ -136,7 +136,7 @@
136 panel_debug (PANEL_DEBUG_MAIN,136 panel_debug (PANEL_DEBUG_MAIN,
137 "received signal %s <%d>, %s panel",137 "received signal %s <%d>, %s panel",
138 g_strsignal (signum), signum,138 g_strsignal (signum), signum,
139 signum == SIGUSR1 ? "restarting" : "quiting");139 signum == SIGUSR1 ? "restarting" : "quitting");
140140
141 panel_dbus_service_exit_panel (signum == SIGUSR1);141 panel_dbus_service_exit_panel (signum == SIGUSR1);
142}142}
143143
=== modified file 'panel/panel-application.c'
--- panel/panel-application.c 2014-02-12 15:41:39 +0000
+++ panel/panel-application.c 2015-01-04 19:54:48 +0000
@@ -289,7 +289,7 @@
289 const PanelProperty properties[] =289 const PanelProperty properties[] =
290 {290 {
291 { "position-locked", G_TYPE_BOOLEAN },291 { "position-locked", G_TYPE_BOOLEAN },
292 { "autohide", G_TYPE_BOOLEAN },292 { "autohide-behavior", G_TYPE_UINT },
293 { "span-monitors", G_TYPE_BOOLEAN },293 { "span-monitors", G_TYPE_BOOLEAN },
294 { "mode", G_TYPE_UINT },294 { "mode", G_TYPE_UINT },
295 { "size", G_TYPE_UINT },295 { "size", G_TYPE_UINT },
@@ -313,6 +313,9 @@
313 /* create the property base */313 /* create the property base */
314 property_base = g_strdup_printf ("/panels/panel-%d", panel_window_get_id (window));314 property_base = g_strdup_printf ("/panels/panel-%d", panel_window_get_id (window));
315315
316 /* migrate old autohide property */
317 panel_window_migrate_autohide_property (window, application->xfconf, property_base);
318
316 /* bind all the properties */319 /* bind all the properties */
317 panel_properties_bind (application->xfconf, G_OBJECT (window),320 panel_properties_bind (application->xfconf, G_OBJECT (window),
318 property_base, properties, save_properties);321 property_base, properties, save_properties);
319322
=== modified file 'panel/panel-preferences-dialog-ui.h'
--- panel/panel-preferences-dialog-ui.h 2014-02-12 15:41:39 +0000
+++ panel/panel-preferences-dialog-ui.h 2015-01-04 19:54:48 +0000
@@ -17,472 +17,486 @@
17 "columns><column type=\"gint\"/><column type=\"gchararray\"/></columns><"17 "columns><column type=\"gint\"/><column type=\"gchararray\"/></columns><"
18 "/object><object class=\"GtkListStore\" id=\"output-store\"><columns><co"18 "/object><object class=\"GtkListStore\" id=\"output-store\"><columns><co"
19 "lumn type=\"gchararray\"/><column type=\"gchararray\"/></columns></obje"19 "lumn type=\"gchararray\"/><column type=\"gchararray\"/></columns></obje"
20 "ct><object class=\"GtkListStore\" id=\"styles-store\"><columns><column "20 "ct><object class=\"GtkListStore\" id=\"autohide-behavior-store\"><colum"
21 "type=\"gchararray\"/></columns><data><row><col id=\"0\" translatable=\""21 "ns><column type=\"gchararray\"/></columns><data><row><col id=\"0\" tran"
22 "yes\">None (use system style)</col></row><row><col id=\"0\" translatabl"22 "slatable=\"yes\">Never</col></row><row><col id=\"0\" translatable=\"yes"
23 "e=\"yes\">Solid color</col></row><row><col id=\"0\" translatable=\"yes\""23 "\">Intelligently</col></row><row><col id=\"0\" translatable=\"yes\">Alw"
24 ">Background image</col></row></data></object><object class=\"GtkAdjustm"24 "ays</col></row></data></object><object class=\"GtkListStore\" id=\"styl"
25 "ent\" id=\"size\"><property name=\"value\">16</property><property name="25 "es-store\"><columns><column type=\"gchararray\"/></columns><data><row><"
26 "\"lower\">16</property><property name=\"upper\">128</property><property"26 "col id=\"0\" translatable=\"yes\">None (use system style)</col></row><r"
27 " name=\"step_increment\">1</property><property name=\"page_increment\">"27 "ow><col id=\"0\" translatable=\"yes\">Solid color</col></row><row><col "
28 "10</property></object><object class=\"GtkAdjustment\" id=\"length\"><pr"28 "id=\"0\" translatable=\"yes\">Background image</col></row></data></obje"
29 "operty name=\"value\">25</property><property name=\"lower\">1</property"29 "ct><object class=\"GtkAdjustment\" id=\"size\"><property name=\"value\""
30 "><property name=\"upper\">100</property><property name=\"step_increment"30 ">16</property><property name=\"lower\">16</property><property name=\"up"
31 "\">1</property><property name=\"page_increment\">10</property></object>"31 "per\">128</property><property name=\"step_increment\">1</property><prop"
32 "<object class=\"GtkAdjustment\" id=\"nrows\"><property name=\"value\">1"32 "erty name=\"page_increment\">10</property></object><object class=\"GtkA"
33 "</property><property name=\"lower\">1</property><property name=\"upper\""33 "djustment\" id=\"length\"><property name=\"value\">25</property><proper"
34 ">6</property><property name=\"step_increment\">1</property><property na"34 "ty name=\"lower\">1</property><property name=\"upper\">100</property><p"
35 "me=\"page_increment\">1</property></object><object class=\"GtkAdjustmen"35 "roperty name=\"step_increment\">1</property><property name=\"page_incre"
36 "t\" id=\"background-alpha\"><property name=\"value\">100</property><pro"36 "ment\">10</property></object><object class=\"GtkAdjustment\" id=\"nrows"
37 "perty name=\"upper\">100</property><property name=\"step_increment\">1<"37 "\"><property name=\"value\">1</property><property name=\"lower\">1</pro"
38 "/property><property name=\"page_increment\">10</property></object><obje"38 "perty><property name=\"upper\">6</property><property name=\"step_increm"
39 "ct class=\"GtkAdjustment\" id=\"enter-opacity\"><property name=\"value\""39 "ent\">1</property><property name=\"page_increment\">1</property></objec"
40 ">100</property><property name=\"upper\">100</property><property name=\""40 "t><object class=\"GtkAdjustment\" id=\"background-alpha\"><property nam"
41 "step_increment\">1</property><property name=\"page_increment\">10</prop"41 "e=\"value\">100</property><property name=\"upper\">100</property><prope"
42 "erty></object><object class=\"GtkAdjustment\" id=\"leave-opacity\"><pro"42 "rty name=\"step_increment\">1</property><property name=\"page_increment"
43 "perty name=\"value\">100</property><property name=\"upper\">100</proper"43 "\">10</property></object><object class=\"GtkAdjustment\" id=\"enter-opa"
44 "ty><property name=\"step_increment\">1</property><property name=\"page_"44 "city\"><property name=\"value\">100</property><property name=\"upper\">"
45 "increment\">10</property></object><object class=\"GtkSizeGroup\" id=\"d"45 "100</property><property name=\"step_increment\">1</property><property n"
46 "isplay-sizegroup\"><widgets><widget name=\"label13\"/><widget name=\"la"46 "ame=\"page_increment\">10</property></object><object class=\"GtkAdjustm"
47 "bel1\"/></widgets></object><object class=\"GtkSizeGroup\" id=\"bg-sizeg"47 "ent\" id=\"leave-opacity\"><property name=\"value\">100</property><prop"
48 "roup\"><widgets><widget name=\"label7\"/><widget name=\"label15\"/><wid"48 "erty name=\"upper\">100</property><property name=\"step_increment\">1</"
49 "get name=\"label16\"/><widget name=\"label19\"/></widgets></object><obj"49 "property><property name=\"page_increment\">10</property></object><objec"
50 "ect class=\"XfceTitledDialog\" id=\"dialog\"><property name=\"title\" t"50 "t class=\"GtkSizeGroup\" id=\"display-sizegroup\"><widgets><widget name"
51 "ranslatable=\"yes\">Panel</property><property name=\"window_position\">"51 "=\"label13\"/><widget name=\"label1\"/></widgets></object><object class"
52 "center-on-parent</property><property name=\"icon_name\">xfce4-panel</pr"52 "=\"GtkSizeGroup\" id=\"bg-sizegroup\"><widgets><widget name=\"label7\"/"
53 "operty><property name=\"type_hint\">normal</property><property name=\"h"53 "><widget name=\"label15\"/><widget name=\"label16\"/><widget name=\"lab"
54 "as_separator\">False</property><child internal-child=\"vbox\"><object c"54 "el19\"/></widgets></object><object class=\"XfceTitledDialog\" id=\"dial"
55 "lass=\"GtkVBox\" id=\"dialog-vbox1\"><property name=\"visible\">True</p"55 "og\"><property name=\"title\" translatable=\"yes\">Panel</property><pro"
56 "roperty><property name=\"orientation\">vertical</property><property nam"56 "perty name=\"window_position\">center-on-parent</property><property nam"
57 "e=\"spacing\">2</property><child><object class=\"GtkVBox\" id=\"plug-ch"57 "e=\"icon_name\">xfce4-panel</property><property name=\"type_hint\">norm"
58 "ild\"><property name=\"visible\">True</property><property name=\"border"58 "al</property><property name=\"has_separator\">False</property><child in"
59 "_width\">6</property><property name=\"orientation\">vertical</property>"59 "ternal-child=\"vbox\"><object class=\"GtkVBox\" id=\"dialog-vbox1\"><pr"
60 "<property name=\"spacing\">12</property><child><object class=\"GtkHBox\""60 "operty name=\"visible\">True</property><property name=\"orientation\">v"
61 " id=\"hbox3\"><property name=\"visible\">True</property><property name="61 "ertical</property><property name=\"spacing\">2</property><child><object"
62 "\"spacing\">6</property><child><object class=\"GtkComboBox\" id=\"panel"62 " class=\"GtkVBox\" id=\"plug-child\"><property name=\"visible\">True</p"
63 "-combobox\"><property name=\"visible\">True</property><property name=\""63 "roperty><property name=\"border_width\">6</property><property name=\"or"
64 "model\">panel-store</property><child><object class=\"GtkCellRendererTex"64 "ientation\">vertical</property><property name=\"spacing\">12</property>"
65 "t\" id=\"cellrenderertext2\"/><attributes><attribute name=\"text\">1</a"65 "<child><object class=\"GtkHBox\" id=\"hbox3\"><property name=\"visible\""
66 "ttribute></attributes></child></object><packing><property name=\"positi"66 ">True</property><property name=\"spacing\">6</property><child><object c"
67 "on\">0</property></packing></child><child><object class=\"GtkButton\" i"67 "lass=\"GtkComboBox\" id=\"panel-combobox\"><property name=\"visible\">T"
68 "d=\"panel-add\"><property name=\"visible\">True</property><property nam"68 "rue</property><property name=\"model\">panel-store</property><child><ob"
69 "e=\"can_focus\">True</property><property name=\"receives_default\">True"69 "ject class=\"GtkCellRendererText\" id=\"cellrenderertext2\"/><attribute"
70 "</property><property name=\"tooltip_text\" translatable=\"yes\">Add a n"70 "s><attribute name=\"text\">1</attribute></attributes></child></object><"
71 "ew panel</property><child><object class=\"GtkImage\" id=\"image1\"><pro"71 "packing><property name=\"position\">0</property></packing></child><chil"
72 "perty name=\"visible\">True</property><property name=\"stock\">gtk-add<"72 "d><object class=\"GtkButton\" id=\"panel-add\"><property name=\"visible"
73 "/property></object></child></object><packing><property name=\"expand\">"73 "\">True</property><property name=\"can_focus\">True</property><property"
74 "False</property><property name=\"position\">1</property></packing></chi"74 " name=\"receives_default\">True</property><property name=\"tooltip_text"
75 "ld><child><object class=\"GtkButton\" id=\"panel-remove\"><property nam"75 "\" translatable=\"yes\">Add a new panel</property><child><object class="
76 "e=\"visible\">True</property><property name=\"sensitive\">False</proper"76 "\"GtkImage\" id=\"image1\"><property name=\"visible\">True</property><p"
77 "ty><property name=\"can_focus\">True</property><property name=\"receive"77 "roperty name=\"stock\">gtk-add</property></object></child></object><pac"
78 "s_default\">True</property><property name=\"tooltip_text\" translatable"78 "king><property name=\"expand\">False</property><property name=\"positio"
79 "=\"yes\">Remove the currently selected panel</property><child><object c"79 "n\">1</property></packing></child><child><object class=\"GtkButton\" id"
80 "lass=\"GtkImage\" id=\"image2\"><property name=\"visible\">True</proper"80 "=\"panel-remove\"><property name=\"visible\">True</property><property n"
81 "ty><property name=\"stock\">gtk-remove</property></object></child></obj"81 "ame=\"sensitive\">False</property><property name=\"can_focus\">True</pr"
82 "ect><packing><property name=\"expand\">False</property><property name=\""82 "operty><property name=\"receives_default\">True</property><property nam"
83 "position\">2</property></packing></child></object><packing><property na"83 "e=\"tooltip_text\" translatable=\"yes\">Remove the currently selected p"
84 "me=\"expand\">False</property><property name=\"position\">0</property><"84 "anel</property><child><object class=\"GtkImage\" id=\"image2\"><propert"
85 "/packing></child><child><object class=\"GtkNotebook\" id=\"notebook\"><"85 "y name=\"visible\">True</property><property name=\"stock\">gtk-remove</"
86 "property name=\"visible\">True</property><property name=\"sensitive\">F"86 "property></object></child></object><packing><property name=\"expand\">F"
87 "alse</property><property name=\"can_focus\">True</property><child><obje"87 "alse</property><property name=\"position\">2</property></packing></chil"
88 "ct class=\"GtkVBox\" id=\"vbox2\"><property name=\"visible\">True</prop"88 "d></object><packing><property name=\"expand\">False</property><property"
89 "erty><property name=\"border_width\">6</property><property name=\"orien"89 " name=\"position\">0</property></packing></child><child><object class=\""
90 "tation\">vertical</property><property name=\"spacing\">6</property><chi"90 "GtkNotebook\" id=\"notebook\"><property name=\"visible\">True</property"
91 "ld><object class=\"GtkFrame\" id=\"frame1\"><property name=\"visible\">"91 "><property name=\"sensitive\">False</property><property name=\"can_focu"
92 "True</property><property name=\"label_xalign\">0</property><property na"92 "s\">True</property><child><object class=\"GtkVBox\" id=\"vbox2\"><prope"
93 "me=\"shadow_type\">none</property><child><object class=\"GtkAlignment\""
94 " id=\"alignment1\"><property name=\"visible\">True</property><property "
95 "name=\"left_padding\">12</property><child><object class=\"GtkVBox\" id="
96 "\"vbox3\"><property name=\"visible\">True</property><property name=\"bo"
97 "rder_width\">6</property><property name=\"orientation\">vertical</prope"
98 "rty><property name=\"spacing\">6</property><child><object class=\"GtkHB"
99 "ox\" id=\"hbox1\"><property name=\"visible\">True</property><property n"
100 "ame=\"spacing\">12</property><child><object class=\"GtkLabel\" id=\"lab"
101 "el1\"><property name=\"visible\">True</property><property name=\"xalign"
102 "\">0</property><property name=\"label\" translatable=\"yes\">M_ode:</pr"
103 "operty><property name=\"use_underline\">True</property><property name=\""
104 "mnemonic_widget\">mode</property></object><packing><property name=\"exp"
105 "and\">False</property><property name=\"position\">0</property></packing"
106 "></child><child><object class=\"GtkComboBox\" id=\"mode\"><property nam"
107 "e=\"visible\">True</property><property name=\"model\">mode-store</prope"
108 "rty><child><object class=\"GtkCellRendererText\" id=\"cellrenderertext1"
109 "\"/><attributes><attribute name=\"text\">0</attribute></attributes></ch"
110 "ild></object><packing><property name=\"expand\">False</property><proper"
111 "ty name=\"position\">1</property></packing></child></object><packing><p"
112 "roperty name=\"position\">0</property></packing></child><child><object "
113 "class=\"GtkHBox\" id=\"output-box\"><property name=\"visible\">True</pr"
114 "operty><property name=\"spacing\">12</property><child><object class=\"G"
115 "tkLabel\" id=\"label13\"><property name=\"visible\">True</property><pro"
116 "perty name=\"xalign\">0</property><property name=\"label\" translatable"
117 "=\"yes\">O_utput:</property><property name=\"use_underline\">True</prop"
118 "erty><property name=\"mnemonic_widget\">output-name</property></object>"
119 "<packing><property name=\"expand\">False</property><property name=\"pos"
120 "ition\">0</property></packing></child><child><object class=\"GtkComboBo"
121 "x\" id=\"output-name\"><property name=\"visible\">True</property><prope"
122 "rty name=\"model\">output-store</property><child><object class=\"GtkCel"
123 "lRendererText\" id=\"cellrenderertext3\"/><attributes><attribute name=\""
124 "text\">1</attribute></attributes></child></object><packing><property na"
125 "me=\"expand\">False</property><property name=\"position\">1</property><"
126 "/packing></child></object><packing><property name=\"position\">1</prope"
127 "rty></packing></child><child><object class=\"GtkCheckButton\" id=\"span"
128 "-monitors\"><property name=\"label\" translatable=\"yes\">Span mo_nitor"
129 "s</property><property name=\"visible\">True</property><property name=\""
130 "can_focus\">True</property><property name=\"receives_default\">False</p"
131 "roperty><property name=\"tooltip_text\" translatable=\"yes\">Select thi"
132 "s option to extend the panel over multiple monitors.</property><propert"
133 "y name=\"use_underline\">True</property><property name=\"draw_indicator"
134 "\">True</property></object><packing><property name=\"position\">2</prop"
135 "erty></packing></child><child><object class=\"GtkCheckButton\" id=\"pos"
136 "ition-locked\"><property name=\"label\" translatable=\"yes\">_Lock pane"
137 "l</property><property name=\"visible\">True</property><property name=\""
138 "can_focus\">True</property><property name=\"receives_default\">False</p"
139 "roperty><property name=\"tooltip_text\" translatable=\"yes\">Select thi"
140 "s option to hide the handles of the panel and lock its position.</prope"
141 "rty><property name=\"use_underline\">True</property><property name=\"dr"
142 "aw_indicator\">True</property></object><packing><property name=\"positi"
143 "on\">3</property></packing></child><child><object class=\"GtkCheckButto"
144 "n\" id=\"autohide\"><property name=\"label\" translatable=\"yes\">Autom"
145 "atically show and _hide the panel</property><property name=\"visible\">"
146 "True</property><property name=\"can_focus\">True</property><property na"
147 "me=\"receives_default\">False</property><property name=\"tooltip_text\""
148 " translatable=\"yes\">Select this option to hide the panel when the poi"
149 "nter is not above it. This only works when the panel is attached to a s"
150 "creen edge.</property><property name=\"use_underline\">True</property><"
151 "property name=\"draw_indicator\">True</property></object><packing><prop"
152 "erty name=\"position\">4</property></packing></child><child><object cla"
153 "ss=\"GtkCheckButton\" id=\"disable-struts\"><property name=\"label\" tr"
154 "anslatable=\"yes\">Don\'t _reserve space on borders</property><property"
155 " name=\"visible\">True</property><property name=\"can_focus\">True</pro"
156 "perty><property name=\"receives_default\">False</property><property nam"
157 "e=\"tooltip_text\" translatable=\"yes\">Select this option if you want "
158 "maximized windows to cover the area behind the panel. This only works w"
159 "hen the panel is attached to a screen edge.</property><property name=\""
160 "use_underline\">True</property><property name=\"draw_indicator\">True</"
161 "property></object><packing><property name=\"position\">5</property></pa"
162 "cking></child></object></child></object></child><child type=\"label\"><"
163 "object class=\"GtkLabel\" id=\"label2\"><property name=\"visible\">True"
164 "</property><property name=\"label\" translatable=\"yes\">General</prope"
165 "rty><attributes><attribute name=\"weight\" value=\"bold\"/></attributes"
166 "></object></child></object><packing><property name=\"expand\">False</pr"
167 "operty><property name=\"position\">0</property></packing></child><child"
168 "><object class=\"GtkFrame\" id=\"frame2\"><property name=\"visible\">Tr"
169 "ue</property><property name=\"label_xalign\">0</property><property name"
170 "=\"shadow_type\">none</property><child><object class=\"GtkAlignment\" i"
171 "d=\"alignment2\"><property name=\"visible\">True</property><property na"
172 "me=\"left_padding\">12</property><child><object class=\"GtkTable\" id=\""
173 "table1\"><property name=\"visible\">True</property><property name=\"bor"
174 "der_width\">6</property><property name=\"n_rows\">4</property><property"
175 " name=\"n_columns\">2</property><property name=\"column_spacing\">12</p"
176 "roperty><property name=\"row_spacing\">6</property><child><object class"
177 "=\"GtkLabel\" id=\"label3\"><property name=\"visible\">True</property><"
178 "property name=\"xalign\">0</property><property name=\"label\" translata"
179 "ble=\"yes\">Row _Size (pixels):</property><property name=\"use_underlin"
180 "e\">True</property><property name=\"mnemonic_widget\">size-scale</prope"
181 "rty></object><packing><property name=\"x_options\">GTK_FILL</property><"
182 "/packing></child><child><object class=\"GtkLabel\" id=\"label4\"><prope"
183 "rty name=\"visible\">True</property><property name=\"xalign\">0</proper"
184 "ty><property name=\"label\" translatable=\"yes\">L_ength (%):</property"
185 "><property name=\"use_underline\">True</property><property name=\"mnemo"
186 "nic_widget\">length-scale</property></object><packing><property name=\""
187 "top_attach\">2</property><property name=\"bottom_attach\">3</property><"
188 "property name=\"x_options\">GTK_FILL</property></packing></child><child"
189 "><object class=\"GtkLabel\" id=\"label18\"><property name=\"visible\">T"
190 "rue</property><property name=\"xalign\">0</property><property name=\"la"
191 "bel\" translatable=\"yes\">Num_ber of rows:</property><property name=\""
192 "use_underline\">True</property><property name=\"mnemonic_widget\">nrows"
193 "-scale</property></object><packing><property name=\"top_attach\">1</pro"
194 "perty><property name=\"bottom_attach\">2</property><property name=\"x_o"
195 "ptions\">GTK_FILL</property></packing></child><child><object class=\"Gt"
196 "kHScale\" id=\"length-scale\"><property name=\"visible\">True</property"
197 "><property name=\"can_focus\">True</property><property name=\"update_po"
198 "licy\">discontinuous</property><property name=\"adjustment\">length</pr"
199 "operty><property name=\"digits\">0</property><property name=\"value_pos"
200 "\">right</property></object><packing><property name=\"left_attach\">1</"
201 "property><property name=\"right_attach\">2</property><property name=\"t"
202 "op_attach\">2</property><property name=\"bottom_attach\">3</property></"
203 "packing></child><child><object class=\"GtkHScale\" id=\"size-scale\"><p"
204 "roperty name=\"visible\">True</property><property name=\"can_focus\">Tr"
205 "ue</property><property name=\"update_policy\">discontinuous</property><"
206 "property name=\"adjustment\">size</property><property name=\"digits\">0"
207 "</property><property name=\"value_pos\">right</property></object><packi"
208 "ng><property name=\"left_attach\">1</property><property name=\"right_at"
209 "tach\">2</property></packing></child><child><object class=\"GtkHScale\""
210 " id=\"nrows-scale\"><property name=\"visible\">True</property><property"
211 " name=\"can_focus\">True</property><property name=\"update_policy\">dis"
212 "continuous</property><property name=\"adjustment\">nrows</property><pro"
213 "perty name=\"digits\">0</property><property name=\"value_pos\">right</p"
214 "roperty></object><packing><property name=\"left_attach\">1</property><p"
215 "roperty name=\"right_attach\">2</property><property name=\"top_attach\""
216 ">1</property><property name=\"bottom_attach\">2</property></packing></c"
217 "hild><child><object class=\"GtkCheckButton\" id=\"length-adjust\"><prop"
218 "erty name=\"label\" translatable=\"yes\">A_utomatically increase the le"
219 "ngth</property><property name=\"visible\">True</property><property name"
220 "=\"can_focus\">True</property><property name=\"receives_default\">False"
221 "</property><property name=\"tooltip_text\" translatable=\"yes\">Select "
222 "this option to automatically increase the length of the panel if the pl"
223 "ugins request more space.</property><property name=\"use_underline\">Tr"
224 "ue</property><property name=\"draw_indicator\">True</property></object>"
225 "<packing><property name=\"right_attach\">2</property><property name=\"t"
226 "op_attach\">3</property><property name=\"bottom_attach\">4</property></"
227 "packing></child></object></child></object></child><child type=\"label\""
228 "><object class=\"GtkLabel\" id=\"label5\"><property name=\"visible\">Tr"
229 "ue</property><property name=\"label\" translatable=\"yes\" comments=\"I"
230 "18N: name of the section (frame) in the panel preferences where the use"
231 "r can define the length and size of the panel\">Measurements</property>"
232 "<attributes><attribute name=\"weight\" value=\"bold\"/></attributes></o"
233 "bject></child></object><packing><property name=\"expand\">False</proper"
234 "ty><property name=\"position\">1</property></packing></child></object><"
235 "/child><child type=\"tab\"><object class=\"GtkLabel\" id=\"label6\"><pr"
236 "operty name=\"visible\">True</property><property name=\"label\" transla"
237 "table=\"yes\">D_isplay</property><property name=\"use_underline\">True<"
238 "/property></object><packing><property name=\"tab_fill\">False</property"
239 "></packing></child><child><object class=\"GtkVBox\" id=\"vbox7\"><prope"
240 "rty name=\"visible\">True</property><property name=\"border_width\">6</"93 "rty name=\"visible\">True</property><property name=\"border_width\">6</"
241 "property><property name=\"orientation\">vertical</property><property na"94 "property><property name=\"orientation\">vertical</property><property na"
242 "me=\"spacing\">6</property><child><object class=\"GtkFrame\" id=\"frame"95 "me=\"spacing\">6</property><child><object class=\"GtkFrame\" id=\"frame"
243 "3\"><property name=\"visible\">True</property><property name=\"label_xa"96 "1\"><property name=\"visible\">True</property><property name=\"label_xa"
244 "lign\">0</property><property name=\"shadow_type\">none</property><child"97 "lign\">0</property><property name=\"shadow_type\">none</property><child"
245 "><object class=\"GtkAlignment\" id=\"alignment3\"><property name=\"visi"98 "><object class=\"GtkAlignment\" id=\"alignment1\"><property name=\"visi"
246 "ble\">True</property><property name=\"left_padding\">12</property><chil"99 "ble\">True</property><property name=\"left_padding\">12</property><chil"
247 "d><object class=\"GtkVBox\" id=\"vbox4\"><property name=\"visible\">Tru"100 "d><object class=\"GtkVBox\" id=\"vbox3\"><property name=\"visible\">Tru"
248 "e</property><property name=\"border_width\">6</property><property name="101 "e</property><property name=\"border_width\">6</property><property name="
249 "\"orientation\">vertical</property><property name=\"spacing\">6</proper"102 "\"orientation\">vertical</property><property name=\"spacing\">6</proper"
250 "ty><child><object class=\"GtkHBox\" id=\"hbox2\"><property name=\"visib"103 "ty><child><object class=\"GtkHBox\" id=\"hbox1\"><property name=\"visib"
251 "le\">True</property><property name=\"spacing\">12</property><child><obj"104 "le\">True</property><property name=\"spacing\">12</property><child><obj"
252 "ect class=\"GtkLabel\" id=\"label7\"><property name=\"visible\">True</p"105 "ect class=\"GtkLabel\" id=\"label1\"><property name=\"visible\">True</p"
253 "roperty><property name=\"xalign\">0</property><property name=\"label\" "106 "roperty><property name=\"xalign\">0</property><property name=\"label\" "
254 "translatable=\"yes\">_Style:</property><property name=\"use_underline\""107 "translatable=\"yes\">M_ode:</property><property name=\"use_underline\">"
255 ">True</property><property name=\"mnemonic_widget\">background-style</pr"108 "True</property><property name=\"mnemonic_widget\">mode</property></obje"
256 "operty></object><packing><property name=\"expand\">False</property><pro"109 "ct><packing><property name=\"expand\">False</property><property name=\""
257 "perty name=\"position\">0</property></packing></child><child><object cl"110 "position\">0</property></packing></child><child><object class=\"GtkComb"
258 "ass=\"GtkComboBox\" id=\"background-style\"><property name=\"visible\">"111 "oBox\" id=\"mode\"><property name=\"visible\">True</property><property "
259 "True</property><property name=\"model\">styles-store</property><child><"112 "name=\"model\">mode-store</property><child><object class=\"GtkCellRende"
260 "object class=\"GtkCellRendererText\" id=\"cellrenderertext4\"/><attribu"113 "rerText\" id=\"cellrenderertext1\"/><attributes><attribute name=\"text\""
261 "tes><attribute name=\"text\">0</attribute></attributes></child></object"114 ">0</attribute></attributes></child></object><packing><property name=\"e"
262 "><packing><property name=\"expand\">False</property><property name=\"po"115 "xpand\">False</property><property name=\"position\">1</property></packi"
263 "sition\">1</property></packing></child></object><packing><property name"116 "ng></child></object><packing><property name=\"position\">0</property></"
264 "=\"position\">0</property></packing></child><child><object class=\"GtkH"117 "packing></child><child><object class=\"GtkHBox\" id=\"output-box\"><pro"
265 "Box\" id=\"bg-alpha-box\"><property name=\"visible\">True</property><pr"118 "perty name=\"visible\">True</property><property name=\"spacing\">12</pr"
266 "operty name=\"spacing\">12</property><child><object class=\"GtkLabel\" "119 "operty><child><object class=\"GtkLabel\" id=\"label13\"><property name="
267 "id=\"label15\"><property name=\"visible\">True</property><property name"120 "\"visible\">True</property><property name=\"xalign\">0</property><prope"
268 "=\"xalign\">0</property><property name=\"label\" translatable=\"yes\">_"121 "rty name=\"label\" translatable=\"yes\">O_utput:</property><property na"
269 "Alpha:</property><property name=\"use_underline\">True</property><prope"122 "me=\"use_underline\">True</property><property name=\"mnemonic_widget\">"
270 "rty name=\"mnemonic_widget\">bg-alpha-scale</property></object><packing"123 "output-name</property></object><packing><property name=\"expand\">False"
271 "><property name=\"expand\">False</property><property name=\"position\">"124 "</property><property name=\"position\">0</property></packing></child><c"
272 "0</property></packing></child><child><object class=\"GtkHScale\" id=\"b"125 "hild><object class=\"GtkComboBox\" id=\"output-name\"><property name=\""
273 "g-alpha-scale\"><property name=\"visible\">True</property><property nam"126 "visible\">True</property><property name=\"model\">output-store</propert"
274 "e=\"can_focus\">True</property><property name=\"tooltip_text\" translat"127 "y><child><object class=\"GtkCellRendererText\" id=\"cellrenderertext3\""
275 "able=\"yes\">Alpha value of the panel background, with 0 being fully tr"128 "/><attributes><attribute name=\"text\">1</attribute></attributes></chil"
276 "ansparent and 100 fully opaque.</property><property name=\"adjustment\""129 "d></object><packing><property name=\"expand\">False</property><property"
277 ">background-alpha</property><property name=\"digits\">0</property><prop"130 " name=\"position\">1</property></packing></child></object><packing><pro"
278 "erty name=\"value_pos\">right</property></object><packing><property nam"131 "perty name=\"position\">1</property></packing></child><child><object cl"
279 "e=\"position\">1</property></packing></child></object><packing><propert"132 "ass=\"GtkCheckButton\" id=\"span-monitors\"><property name=\"label\" tr"
280 "y name=\"position\">1</property></packing></child><child><object class="133 "anslatable=\"yes\">Span mo_nitors</property><property name=\"visible\">"
281 "\"GtkHBox\" id=\"bg-color-box\"><property name=\"visible\">True</proper"134 "True</property><property name=\"can_focus\">True</property><property na"
282 "ty><property name=\"spacing\">12</property><child><object class=\"GtkLa"135 "me=\"receives_default\">False</property><property name=\"tooltip_text\""
283 "bel\" id=\"label16\"><property name=\"visible\">True</property><propert"136 " translatable=\"yes\">Select this option to extend the panel over multi"
284 "y name=\"xalign\">0</property><property name=\"label\" translatable=\"y"137 "ple monitors.</property><property name=\"use_underline\">True</property"
285 "es\">C_olor:</property><property name=\"use_underline\">True</property>"138 "><property name=\"draw_indicator\">True</property></object><packing><pr"
286 "<property name=\"mnemonic_widget\">background-color</property></object>"139 "operty name=\"position\">2</property></packing></child><child><object c"
287 "<packing><property name=\"expand\">False</property><property name=\"pos"140 "lass=\"GtkCheckButton\" id=\"position-locked\"><property name=\"label\""
288 "ition\">0</property></packing></child><child><object class=\"GtkColorBu"141 " translatable=\"yes\">_Lock panel</property><property name=\"visible\">"
289 "tton\" id=\"background-color\"><property name=\"visible\">True</propert"142 "True</property><property name=\"can_focus\">True</property><property na"
290 "y><property name=\"can_focus\">True</property><property name=\"receives"143 "me=\"receives_default\">False</property><property name=\"tooltip_text\""
291 "_default\">True</property><property name=\"title\" translatable=\"yes\""144 " translatable=\"yes\">Select this option to hide the handles of the pan"
292 ">Pick a Panel Color</property><property name=\"color\">#000000000000</p"145 "el and lock its position.</property><property name=\"use_underline\">Tr"
293 "roperty></object><packing><property name=\"expand\">False</property><pr"146 "ue</property><property name=\"draw_indicator\">True</property></object>"
147 "<packing><property name=\"position\">3</property></packing></child><chi"
148 "ld><object class=\"GtkHBox\" id=\"hbox6\"><property name=\"visible\">Tr"
149 "ue</property><property name=\"can_focus\">False</property><property nam"
150 "e=\"spacing\">12</property><child><object class=\"GtkLabel\" id=\"label"
151 "20\"><property name=\"visible\">True</property><property name=\"can_foc"
152 "us\">False</property><property name=\"xalign\">0</property><property na"
153 "me=\"label\" translatable=\"yes\">Automatically hide the panel:</proper"
154 "ty><property name=\"use_underline\">True</property><property name=\"mne"
155 "monic_widget\">mode</property></object><packing><property name=\"expand"
156 "\">False</property><property name=\"fill\">True</property><property nam"
157 "e=\"position\">0</property></packing></child><child><object class=\"Gtk"
158 "ComboBox\" id=\"autohide-behavior\"><property name=\"visible\">True</pr"
159 "operty><property name=\"can_focus\">False</property><property name=\"mo"
160 "del\">autohide-behavior-store</property><child><object class=\"GtkCellR"
161 "endererText\" id=\"cellrenderertext5\"/><attributes><attribute name=\"t"
162 "ext\">0</attribute></attributes></child></object><packing><property nam"
163 "e=\"expand\">False</property><property name=\"fill\">True</property><pr"
294 "operty name=\"position\">1</property></packing></child></object><packin"164 "operty name=\"position\">1</property></packing></child></object><packin"
295 "g><property name=\"position\">2</property></packing></child><child><obj"165 "g><property name=\"expand\">True</property><property name=\"fill\">True"
296 "ect class=\"GtkHBox\" id=\"bg-image-box\"><property name=\"visible\">Tr"166 "</property><property name=\"position\">4</property></packing></child><c"
297 "ue</property><property name=\"spacing\">12</property><child><object cla"167 "hild><object class=\"GtkCheckButton\" id=\"disable-struts\"><property n"
298 "ss=\"GtkLabel\" id=\"label19\"><property name=\"visible\">True</propert"168 "ame=\"label\" translatable=\"yes\">Don\'t _reserve space on borders</pr"
299 "y><property name=\"xalign\">0</property><property name=\"label\" transl"169 "operty><property name=\"visible\">True</property><property name=\"can_f"
300 "atable=\"yes\">_File:</property><property name=\"use_underline\">True</"170 "ocus\">True</property><property name=\"receives_default\">False</proper"
301 "property><property name=\"mnemonic_widget\">background-image</property>"171 "ty><property name=\"tooltip_text\" translatable=\"yes\">Select this opt"
172 "ion if you want maximized windows to cover the area behind the panel. T"
173 "his only works when the panel is attached to a screen edge.</property><"
174 "property name=\"use_underline\">True</property><property name=\"draw_in"
175 "dicator\">True</property></object><packing><property name=\"position\">"
176 "5</property></packing></child></object></child></object></child><child "
177 "type=\"label\"><object class=\"GtkLabel\" id=\"label2\"><property name="
178 "\"visible\">True</property><property name=\"label\" translatable=\"yes\""
179 ">General</property><attributes><attribute name=\"weight\" value=\"bold\""
180 "/></attributes></object></child></object><packing><property name=\"expa"
181 "nd\">False</property><property name=\"position\">0</property></packing>"
182 "</child><child><object class=\"GtkFrame\" id=\"frame2\"><property name="
183 "\"visible\">True</property><property name=\"label_xalign\">0</property>"
184 "<property name=\"shadow_type\">none</property><child><object class=\"Gt"
185 "kAlignment\" id=\"alignment2\"><property name=\"visible\">True</propert"
186 "y><property name=\"left_padding\">12</property><child><object class=\"G"
187 "tkTable\" id=\"table1\"><property name=\"visible\">True</property><prop"
188 "erty name=\"border_width\">6</property><property name=\"n_rows\">4</pro"
189 "perty><property name=\"n_columns\">2</property><property name=\"column_"
190 "spacing\">12</property><property name=\"row_spacing\">6</property><chil"
191 "d><object class=\"GtkLabel\" id=\"label3\"><property name=\"visible\">T"
192 "rue</property><property name=\"xalign\">0</property><property name=\"la"
193 "bel\" translatable=\"yes\">Row _Size (pixels):</property><property name"
194 "=\"use_underline\">True</property><property name=\"mnemonic_widget\">si"
195 "ze-scale</property></object><packing><property name=\"x_options\">GTK_F"
196 "ILL</property></packing></child><child><object class=\"GtkLabel\" id=\""
197 "label4\"><property name=\"visible\">True</property><property name=\"xal"
198 "ign\">0</property><property name=\"label\" translatable=\"yes\">L_ength"
199 " (%):</property><property name=\"use_underline\">True</property><proper"
200 "ty name=\"mnemonic_widget\">length-scale</property></object><packing><p"
201 "roperty name=\"top_attach\">2</property><property name=\"bottom_attach\""
202 ">3</property><property name=\"x_options\">GTK_FILL</property></packing>"
203 "</child><child><object class=\"GtkLabel\" id=\"label18\"><property name"
204 "=\"visible\">True</property><property name=\"xalign\">0</property><prop"
205 "erty name=\"label\" translatable=\"yes\">Num_ber of rows:</property><pr"
206 "operty name=\"use_underline\">True</property><property name=\"mnemonic_"
207 "widget\">nrows-scale</property></object><packing><property name=\"top_a"
208 "ttach\">1</property><property name=\"bottom_attach\">2</property><prope"
209 "rty name=\"x_options\">GTK_FILL</property></packing></child><child><obj"
210 "ect class=\"GtkHScale\" id=\"length-scale\"><property name=\"visible\">"
211 "True</property><property name=\"can_focus\">True</property><property na"
212 "me=\"update_policy\">discontinuous</property><property name=\"adjustmen"
213 "t\">length</property><property name=\"digits\">0</property><property na"
214 "me=\"value_pos\">right</property></object><packing><property name=\"lef"
215 "t_attach\">1</property><property name=\"right_attach\">2</property><pro"
216 "perty name=\"top_attach\">2</property><property name=\"bottom_attach\">"
217 "3</property></packing></child><child><object class=\"GtkHScale\" id=\"s"
218 "ize-scale\"><property name=\"visible\">True</property><property name=\""
219 "can_focus\">True</property><property name=\"update_policy\">discontinuo"
220 "us</property><property name=\"adjustment\">size</property><property nam"
221 "e=\"digits\">0</property><property name=\"value_pos\">right</property><"
222 "/object><packing><property name=\"left_attach\">1</property><property n"
223 "ame=\"right_attach\">2</property></packing></child><child><object class"
224 "=\"GtkHScale\" id=\"nrows-scale\"><property name=\"visible\">True</prop"
225 "erty><property name=\"can_focus\">True</property><property name=\"updat"
226 "e_policy\">discontinuous</property><property name=\"adjustment\">nrows<"
227 "/property><property name=\"digits\">0</property><property name=\"value_"
228 "pos\">right</property></object><packing><property name=\"left_attach\">"
229 "1</property><property name=\"right_attach\">2</property><property name="
230 "\"top_attach\">1</property><property name=\"bottom_attach\">2</property"
231 "></packing></child><child><object class=\"GtkCheckButton\" id=\"length-"
232 "adjust\"><property name=\"label\" translatable=\"yes\">A_utomatically i"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: