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
1=== modified file '.pc/02_support-dmtool.patch/plugins/actions/actions.c'
2--- .pc/02_support-dmtool.patch/plugins/actions/actions.c 2014-10-14 06:15:01 +0000
3+++ .pc/02_support-dmtool.patch/plugins/actions/actions.c 2015-01-04 19:54:48 +0000
4@@ -911,10 +911,12 @@
5 actions_plugin_action_activate (GtkWidget *widget,
6 ActionsPlugin *plugin)
7 {
8- ActionEntry *entry;
9- gboolean unattended = FALSE;
10- GError *error = NULL;
11- gboolean succeed = FALSE;
12+ ActionEntry *entry;
13+ gboolean unattended = FALSE;
14+ GError *error = NULL;
15+ gboolean succeed = FALSE;
16+ XfconfChannel *channel;
17+ gboolean allow_save;
18
19 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);
20 panel_return_if_fail (entry != NULL);
21@@ -925,26 +927,31 @@
22 && !actions_plugin_action_confirmation (plugin, entry, &unattended))
23 return;
24
25+ channel = xfconf_channel_get ("xfce4-session");
26+ allow_save = xfconf_channel_get_bool (channel, "/general/SaveOnExit", FALSE);
27+ /* unattended shutdown, don't save the session to avoid blocking the logout */
28+ allow_save = allow_save && !unattended;
29+
30 switch (entry->type)
31 {
32 case ACTION_TYPE_LOGOUT:
33 succeed = actions_plugin_action_dbus_xfsm ("Logout", FALSE,
34- !unattended, &error);
35+ allow_save, &error);
36 break;
37
38 case ACTION_TYPE_LOGOUT_DIALOG:
39 succeed = actions_plugin_action_dbus_xfsm ("Logout", TRUE,
40- !unattended, &error);
41+ allow_save, &error);
42 break;
43
44 case ACTION_TYPE_RESTART:
45 succeed = actions_plugin_action_dbus_xfsm ("Restart", FALSE,
46- !unattended, &error);
47+ allow_save, &error);
48 break;
49
50 case ACTION_TYPE_SHUTDOWN:
51 succeed = actions_plugin_action_dbus_xfsm ("Shutdown", FALSE,
52- !unattended, &error);
53+ allow_save, &error);
54 break;
55
56 case ACTION_TYPE_HIBERNATE:
57
58=== modified file 'ChangeLog'
59--- ChangeLog 2014-06-23 08:06:22 +0000
60+++ ChangeLog 2015-01-04 19:54:48 +0000
61@@ -1,3 +1,756 @@
62+commit b0e0492df099608db16de15ae4fc80f5a88e60be
63+Author: Efstathios Iosifidis <iefstathios@gmail.com>
64+Date: Sat Dec 27 00:31:00 2014 +0100
65+
66+ I18n: Update translation el (97%).
67+
68+ 386 translated messages, 8 untranslated messages.
69+
70+ Transifex (https://www.transifex.com/projects/p/xfce/).
71+
72+commit 0abd76c45eb546822712ae09337a6fb2ee54e5d4
73+Author: Urien Desterres <urien.desterres@gmail.com>
74+Date: Fri Dec 26 18:30:33 2014 +0100
75+
76+ I18n: Update translation fr (100%).
77+
78+ 394 translated messages.
79+
80+ Transifex (https://www.transifex.com/projects/p/xfce/).
81+
82+commit 166807cb4cfbc0c46cf7abab23bc14a130254c19
83+Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
84+Date: Fri Dec 26 00:31:07 2014 +0100
85+
86+ I18n: Update translation es (100%).
87+
88+ 394 translated messages.
89+
90+ Transifex (https://www.transifex.com/projects/p/xfce/).
91+
92+commit a26f73f408d98746511d4179740eda945336d225
93+Author: Yannick Le Guen <leguen.yannick@gmail.com>
94+Date: Thu Dec 25 18:30:33 2014 +0100
95+
96+ I18n: Update translation fr (100%).
97+
98+ 394 translated messages.
99+
100+ Transifex (https://www.transifex.com/projects/p/xfce/).
101+
102+commit 5163992445334035e0e149742ba10de25fd4f794
103+Author: Benedek Imre <nucleo@indamail.hu>
104+Date: Wed Dec 24 00:30:42 2014 +0100
105+
106+ I18n: Update translation hu (100%).
107+
108+ 394 translated messages.
109+
110+ Transifex (https://www.transifex.com/projects/p/xfce/).
111+
112+commit 53f17e4b64392d7c60f4cffc21bf63ad03839b54
113+Author: Andrzej <ndrwrdck@gmail.com>
114+Date: Sat Dec 20 00:37:35 2014 +0000
115+
116+ Revert "Make panel hide intelligently with shaded windows (bug #11371)"
117+
118+ This reverts commit 75ed12ce2e4d5d13781fca9179268bce958f9596.
119+
120+commit 75ed12ce2e4d5d13781fca9179268bce958f9596
121+Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
122+Date: Mon Dec 15 14:30:14 2014 +0100
123+
124+ Make panel hide intelligently with shaded windows (bug #11371)
125+
126+commit 4a436dd163e1fb11765fc78c74a6b5c88683f48c
127+Author: enolp <enolp@softastur.org>
128+Date: Sun Dec 14 18:30:32 2014 +0100
129+
130+ I18n: Update translation ast (94%).
131+
132+ 372 translated messages, 22 untranslated messages.
133+
134+ Transifex (https://www.transifex.com/projects/p/xfce/).
135+
136+commit 564705f2188e9c020b105b32d7f12873e8110557
137+Author: Ḷḷumex03 <tornes@opmbx.org>
138+Date: Sat Dec 13 06:30:45 2014 +0100
139+
140+ I18n: Update translation ast (94%).
141+
142+ 372 translated messages, 22 untranslated messages.
143+
144+ Transifex (https://www.transifex.com/projects/p/xfce/).
145+
146+commit db59a6247de48efa579db4f3993fd32093e550b6
147+Author: Sergey Alyoshin <alyoshin.s@gmail.com>
148+Date: Fri Dec 12 18:30:31 2014 +0100
149+
150+ I18n: Update translation ru (100%).
151+
152+ 394 translated messages.
153+
154+ Transifex (https://www.transifex.com/projects/p/xfce/).
155+
156+commit d121c00e52d088e128c033e236db71b72de927c9
157+Author: GenghisKhan <genghiskhan@gmx.ca>
158+Date: Sun Dec 7 18:30:49 2014 +0100
159+
160+ I18n: Update translation he (100%).
161+
162+ 394 translated messages.
163+
164+ Transifex (https://www.transifex.com/projects/p/xfce/).
165+
166+commit 3648c1c4a80ff202c76491be11b2538a2428c16c
167+Author: عبدالله رضوان <abbodmar@gmail.com>
168+Date: Sun Dec 7 18:30:48 2014 +0100
169+
170+ I18n: Update translation ar (100%).
171+
172+ 394 translated messages.
173+
174+ Transifex (https://www.transifex.com/projects/p/xfce/).
175+
176+commit 3c995cac169657e24409849d33e7adca2ce28cfe
177+Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
178+Date: Sun Dec 7 00:05:50 2014 +0100
179+
180+ Fix panel hiding (intelligently) with open menus
181+
182+commit 3cf77c89de49d3ebeeef6fc5b45ddae031b4960b
183+Author: Ali Polatel <ali.polatel@ozguryazilim.com.tr>
184+Date: Wed Dec 3 12:30:32 2014 +0100
185+
186+ I18n: Update translation tr (100%).
187+
188+ 394 translated messages.
189+
190+ Transifex (https://www.transifex.com/projects/p/xfce/).
191+
192+commit d92de74e76ba9a2fcf5d18e693cdbf4abc2a9967
193+Author: GenghisKhan <genghiskhan@gmx.ca>
194+Date: Tue Dec 2 12:31:04 2014 +0100
195+
196+ I18n: Update translation he (99%).
197+
198+ 393 translated messages, 1 untranslated message.
199+
200+ Transifex (https://www.transifex.com/projects/p/xfce/).
201+
202+commit dec26ae71ad7b8fece6484566c53d657ba97038c
203+Author: GenghisKhan <genghiskhan@gmx.ca>
204+Date: Mon Dec 1 18:30:32 2014 +0100
205+
206+ I18n: Update translation he (99%).
207+
208+ 392 translated messages, 2 untranslated messages.
209+
210+ Transifex (https://www.transifex.com/projects/p/xfce/).
211+
212+commit d47ae9ec5503636463b4de948a2af639737f2277
213+Author: Slavko <linux@slavino.sk>
214+Date: Fri Nov 28 18:30:38 2014 +0100
215+
216+ I18n: Update translation sk (100%).
217+
218+ 394 translated messages.
219+
220+ Transifex (https://www.transifex.com/projects/p/xfce/).
221+
222+commit 2c86befe0b891a322dfa0742101a03ca15079484
223+Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
224+Date: Thu Nov 27 01:23:04 2014 +0100
225+
226+ Fix panel being initially hidden with intelligent autohiding
227+
228+ After closing the panel preferences, the panel was always hidden when
229+ intelligent autohiding was selected. This patch adds a check whether the
230+ currently active window actually overlaps with the panel and only hides
231+ it in case it does.
232+
233+commit 57502718bfbbc4bc6806bef5f0f675c82d2effa4
234+Author: Andrzej <ndrwrdck@gmail.com>
235+Date: Wed Nov 26 20:18:04 2014 +0000
236+
237+ Fixing problems with intelligent panel hiding, bug #11331
238+
239+ ochosi:
240+ "Just to document the findings I made during a quick debug session
241+ with the panel from git master (4.11.x). Intelligent hiding
242+ generally works, but the mouse-pointer behavior is buggy.
243+ Steps to reproduce the bug:
244+ 1) set panel to intelligent hiding
245+ 2) give a window focus that doesn't overlap with the panel
246+ 3) hover the panel with the mouse
247+ 4) upon leaving the panel hides again, even though there
248+ is no window overlapping
249+
250+ What it should do instead: if intelligent hiding is in use
251+ it should check (possibly in panel_window_leave_notify_event
252+ or _enter_ in panel-window.c) whether there are windows
253+ overlapping with the panel and if not, the panel shouldn't
254+ hide on leave_notify."
255+
256+commit 70f8fb891c3afe0721f71f0fe7755e12de45eb4f
257+Author: Ḷḷumex03 <tornes@opmbx.org>
258+Date: Sat Nov 22 06:30:34 2014 +0100
259+
260+ I18n: Update translation ast (94%).
261+
262+ 372 translated messages, 22 untranslated messages.
263+
264+ Transifex (https://www.transifex.com/projects/p/xfce/).
265+
266+commit 3e5563e28ff7db52e2f5a468a19f9e1059806b8d
267+Author: Andrzej <ndrwrdck@gmail.com>
268+Date: Wed Nov 19 22:19:35 2014 +0000
269+
270+ Don't save the session during unattended shutdown
271+
272+ Previous commit accidentally removed this feature. Bringing it back.
273+
274+commit 3848b0c0df4c2d744e4a9db2653c0507f78fbba3
275+Author: Andrzej <ndrwrdck@gmail.com>
276+Date: Wed Nov 19 09:37:54 2014 +0000
277+
278+ Panel action button Logout always save session (bug #7930)
279+
280+commit e0738dd643d4efae99b3d2ca4bd48e8ab0e36ee3
281+Author: Piotr Strębski <strebski@o2.pl>
282+Date: Mon Nov 3 18:30:36 2014 +0100
283+
284+ I18n: Update translation pl (100%).
285+
286+ 394 translated messages.
287+
288+ Transifex (https://www.transifex.com/projects/p/xfce/).
289+
290+commit 18c692693685a2d0bfb9d5e745e879fa422e68d5
291+Author: Michal Várady <miko.vaji@gmail.com>
292+Date: Wed Oct 29 06:30:33 2014 +0100
293+
294+ I18n: Update translation cs (100%).
295+
296+ 394 translated messages.
297+
298+ Transifex (https://www.transifex.com/projects/p/xfce/).
299+
300+commit 4def8fec7090302e8d4ec3626d25b373df0abacf
301+Author: Zafer Eren <zaferern@gmail.com>
302+Date: Wed Oct 29 00:30:36 2014 +0100
303+
304+ I18n: Update translation tr (99%).
305+
306+ 392 translated messages, 2 untranslated messages.
307+
308+ Transifex (https://www.transifex.com/projects/p/xfce/).
309+
310+commit 9f9b93997ae406999782deea0498fa353ff814c6
311+Author: Michal Várady <miko.vaji@gmail.com>
312+Date: Wed Oct 29 00:30:36 2014 +0100
313+
314+ I18n: Update translation cs (100%).
315+
316+ 394 translated messages.
317+
318+ Transifex (https://www.transifex.com/projects/p/xfce/).
319+
320+commit 2eb625fbe213b970c0142092dc7ea8c0ce9cb2ed
321+Author: Michal Várady <miko.vaji@gmail.com>
322+Date: Sun Oct 26 00:30:49 2014 +0200
323+
324+ I18n: Update translation cs (100%).
325+
326+ 394 translated messages.
327+
328+ Transifex (https://www.transifex.com/projects/p/xfce/).
329+
330+commit 01c80d3ba530aeb347e03f75fa1d7b175cd7b1a7
331+Author: Ḷḷumex03 <tornes@opmbx.org>
332+Date: Sun Oct 26 00:30:49 2014 +0200
333+
334+ I18n: Update translation ast (94%).
335+
336+ 372 translated messages, 22 untranslated messages.
337+
338+ Transifex (https://www.transifex.com/projects/p/xfce/).
339+
340+commit e3f03ee575a49cfd288645f5a9f1c268efeaca77
341+Author: 周潇波 <zhouxiaobo.500@gmail.com>
342+Date: Sat Oct 18 12:30:44 2014 +0200
343+
344+ I18n: Update translation zh_CN (100%).
345+
346+ 394 translated messages.
347+
348+ Transifex (https://www.transifex.com/projects/p/xfce/).
349+
350+commit b977c88efe1b6248e39bbc00eff8bcfa94e9844d
351+Author: AlexanderFilev <ifillrok@gmail.com>
352+Date: Tue Oct 14 18:30:38 2014 +0200
353+
354+ I18n: Update translation ru (100%).
355+
356+ 394 translated messages.
357+
358+ Transifex (https://www.transifex.com/projects/p/xfce/).
359+
360+commit beef627959f01c92751680aa725fa9ed299a9f42
361+Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
362+Date: Mon Oct 6 06:30:32 2014 +0200
363+
364+ I18n: Update translation kk (100%).
365+
366+ 394 translated messages.
367+
368+ Transifex (https://www.transifex.com/projects/p/xfce/).
369+
370+commit 12bcabb69032515ade87440fbb2d8287aac380a3
371+Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
372+Date: Fri Oct 3 00:30:32 2014 +0200
373+
374+ I18n: Update translation fi (100%).
375+
376+ 394 translated messages.
377+
378+ Transifex (https://www.transifex.com/projects/p/xfce/).
379+
380+commit 07f754efe7221d9b746b60f3a43ed7e6ac5dfa33
381+Author: Tapio Väisänen <tapio.vaeisaenen@gmail.com>
382+Date: Thu Oct 2 18:30:33 2014 +0200
383+
384+ I18n: Update translation fi (99%).
385+
386+ 391 translated messages, 3 untranslated messages.
387+
388+ Transifex (https://www.transifex.com/projects/p/xfce/).
389+
390+commit b403a5be93a685c45a28964e92354dfdcfac1128
391+Author: Michael Findlay <keltoiboy@gmail.com>
392+Date: Thu Oct 2 12:30:32 2014 +0200
393+
394+ I18n: Update translation en_AU (100%).
395+
396+ 394 translated messages.
397+
398+ Transifex (https://www.transifex.com/projects/p/xfce/).
399+
400+commit b49f762998826d5be64d73d1300fed2e2d7d086e
401+Author: Nuno Miguel <nunomgue@gmail.com>
402+Date: Wed Oct 1 18:30:32 2014 +0200
403+
404+ I18n: Update translation pt (100%).
405+
406+ 394 translated messages.
407+
408+ Transifex (https://www.transifex.com/projects/p/xfce/).
409+
410+commit bd0f1b2278ff371ea9ba7f20c2bc2625c1402ce3
411+Author: gabrieltandil <gabriel.tandil@gmail.com>
412+Date: Tue Sep 30 18:30:32 2014 +0200
413+
414+ I18n: Update translation es (100%).
415+
416+ 394 translated messages.
417+
418+ Transifex (https://www.transifex.com/projects/p/xfce/).
419+
420+commit 26a8bd630b87ad21cd0b88498a7bc7608252cc86
421+Author: Aputsiaĸ Niels Janussen <aj@isit.gl>
422+Date: Fri Sep 26 12:30:33 2014 +0200
423+
424+ I18n: Update translation da (100%).
425+
426+ 394 translated messages.
427+
428+ Transifex (https://www.transifex.com/projects/p/xfce/).
429+
430+commit 6f672b8074fc97cf1d0211d7a7b73f939d9c1035
431+Author: Sveinn í Felli <sv1@fellsnet.is>
432+Date: Tue Sep 23 00:30:36 2014 +0200
433+
434+ I18n: Update translation is (100%).
435+
436+ 394 translated messages.
437+
438+ Transifex (https://www.transifex.com/projects/p/xfce/).
439+
440+commit 36d11f74e4aa23daf61b699370f8d7785e40e9ef
441+Author: Anonymous <noreply@xfce.org>
442+Date: Mon Sep 22 18:30:34 2014 +0200
443+
444+ I18n: Update translation de (100%).
445+
446+ 394 translated messages.
447+
448+ Transifex (https://www.transifex.com/projects/p/xfce/).
449+
450+commit cf4e88dddc7c364827708fa7093f64ce5b5d0c76
451+Author: Michal Várady <miko.vaji@gmail.com>
452+Date: Sat Sep 20 06:30:32 2014 +0200
453+
454+ I18n: Update translation cs (100%).
455+
456+ 394 translated messages.
457+
458+ Transifex (https://www.transifex.com/projects/p/xfce/).
459+
460+commit 1ba79adac6254718ac690f5b59d07d1313e899c6
461+Author: Anonymous <noreply@xfce.org>
462+Date: Thu Sep 18 06:30:33 2014 +0200
463+
464+ I18n: Update translation de (100%).
465+
466+ 394 translated messages.
467+
468+ Transifex (https://www.transifex.com/projects/p/xfce/).
469+
470+commit b4927d070123a38c77e3b76b9f9f051839b2d346
471+Author: Anonymous <noreply@xfce.org>
472+Date: Thu Sep 18 00:30:39 2014 +0200
473+
474+ I18n: Update translation de (100%).
475+
476+ 394 translated messages.
477+
478+ Transifex (https://www.transifex.com/projects/p/xfce/).
479+
480+commit 17948ba701d82f1bbf5dc128446ab367569b1630
481+Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
482+Date: Sat Sep 13 12:30:33 2014 +0200
483+
484+ I18n: Update translation th (100%).
485+
486+ 394 translated messages.
487+
488+ Transifex (https://www.transifex.com/projects/p/xfce/).
489+
490+commit ade76f1d57b795c58f2885e7da27768481d1c505
491+Author: Cristian Marchi <cri.penta@gmail.com>
492+Date: Sat Sep 13 12:30:33 2014 +0200
493+
494+ I18n: Update translation it (100%).
495+
496+ 394 translated messages.
497+
498+ Transifex (https://www.transifex.com/projects/p/xfce/).
499+
500+commit b71f35ef7414cc70aea5fbf2ad9a3b4d5557c712
501+Author: Seong-ho Cho <darkcircle.0426@gmail.com>
502+Date: Thu Sep 11 00:30:33 2014 +0200
503+
504+ I18n: Update translation ko (100%).
505+
506+ 394 translated messages.
507+
508+ Transifex (https://www.transifex.com/projects/p/xfce/).
509+
510+commit 3a7b5e9a41c734bda3ef03a0a3010921ab2f2ae5
511+Author: Саша Петровић <salepetronije@gmail.com>
512+Date: Mon Sep 8 18:30:40 2014 +0200
513+
514+ I18n: Update translation sr (100%).
515+
516+ 394 translated messages.
517+
518+ Transifex (https://www.transifex.com/projects/p/xfce/).
519+
520+commit de7b6938639961a2f938b36fabe4c33638cddc3d
521+Author: Pablo Roberto Francisco Lezaeta Reyes <prflr88@gmail.com>
522+Date: Mon Sep 8 18:30:40 2014 +0200
523+
524+ I18n: Update translation es (100%).
525+
526+ 394 translated messages.
527+
528+ Transifex (https://www.transifex.com/projects/p/xfce/).
529+
530+commit d0c0fa5403d318918e819e5a70db3dd9726a5acc
531+Author: Yarema aka Knedlyk <yupadmin@gmail.com>
532+Date: Sun Sep 7 18:30:33 2014 +0200
533+
534+ I18n: Update translation uk (100%).
535+
536+ 394 translated messages.
537+
538+ Transifex (https://www.transifex.com/projects/p/xfce/).
539+
540+commit 3937080fffa7073971f86f9d5f56ccaea1fa2659
541+Author: Masato HASHIMOTO <cabezon.hashimoto@gmail.com>
542+Date: Sun Sep 7 18:30:33 2014 +0200
543+
544+ I18n: Update translation ja (100%).
545+
546+ 394 translated messages.
547+
548+ Transifex (https://www.transifex.com/projects/p/xfce/).
549+
550+commit 8de36057b18764e635109a570ef1e6da16df69a3
551+Author: André Miranda <andreldm1989@gmail.com>
552+Date: Sat Sep 6 06:30:32 2014 +0200
553+
554+ I18n: Update translation pt_BR (100%).
555+
556+ 394 translated messages.
557+
558+ Transifex (https://www.transifex.com/projects/p/xfce/).
559+
560+commit 2d462e99246b60f4a9b5100b455742b5e8aa3f5b
561+Author: Yannick Le Guen <leguen.yannick@gmail.com>
562+Date: Sat Sep 6 00:30:33 2014 +0200
563+
564+ I18n: Update translation fr (100%).
565+
566+ 394 translated messages.
567+
568+ Transifex (https://www.transifex.com/projects/p/xfce/).
569+
570+commit 6f6dadc4ab991567756e38ae6ccf0c9161456182
571+Author: Pjotr <pjotrvertaalt@gmail.com>
572+Date: Fri Sep 5 18:30:35 2014 +0200
573+
574+ I18n: Update translation nl (100%).
575+
576+ 394 translated messages.
577+
578+ Transifex (https://www.transifex.com/projects/p/xfce/).
579+
580+commit a927b599ee59c353a69b231f281943b5166a00c4
581+Author: abuyop <abuyop@gmail.com>
582+Date: Fri Sep 5 18:30:35 2014 +0200
583+
584+ I18n: Update translation ms (100%).
585+
586+ 394 translated messages.
587+
588+ Transifex (https://www.transifex.com/projects/p/xfce/).
589+
590+commit 932479fb4219ad940a55880537b61d8357e85236
591+Author: Edin Veskovic <edin.veskovic@openmailbox.org>
592+Date: Fri Sep 5 18:30:35 2014 +0200
593+
594+ I18n: Update translation hr (100%).
595+
596+ 394 translated messages.
597+
598+ Transifex (https://www.transifex.com/projects/p/xfce/).
599+
600+commit 4ab04694c604a5273303ced5a4d33e1c0b7caace
601+Author: gabrieltandil <gabriel.tandil@gmail.com>
602+Date: Fri Sep 5 18:30:35 2014 +0200
603+
604+ I18n: Update translation es (100%).
605+
606+ 394 translated messages.
607+
608+ Transifex (https://www.transifex.com/projects/p/xfce/).
609+
610+commit 153cf7083a220e29940c594dedbbab396a8439d2
611+Author: Anonymous <noreply@xfce.org>
612+Date: Fri Sep 5 18:30:35 2014 +0200
613+
614+ I18n: Update translation de (100%).
615+
616+ 394 translated messages.
617+
618+ Transifex (https://www.transifex.com/projects/p/xfce/).
619+
620+commit 5866e9521f3e525fb548612d505efc56fef7ed06
621+Author: Jannis Pohlmann <jannis@xfce.org>
622+Date: Tue Jul 29 11:57:53 2014 +0200
623+
624+ Make "don't reserve space" sensitive only when autohiding is disabled
625+
626+ This configuration option only makes sense when not hiding a panel
627+ automatically, so whenever one of the two autohide behaviors is enabled,
628+ the option is now greyed out in the UI.
629+
630+commit 3380b83f1349d1f6cb911332c26bafa340dd1330
631+Author: Jannis Pohlmann <jannis@xfce.org>
632+Date: Mon Jul 28 19:06:18 2014 +0200
633+
634+ Update preferences dialog for intelligent autohide
635+
636+ Instead of a single "Show/hide panel automatically" check box, we now
637+ use a "Automatically hide the panel" combo box with the options "Never",
638+ "Intelligently" and "Always".
639+
640+commit c75751bd5de0d2369f8203a5ce582f2cd3f674c1
641+Author: Jannis Pohlmann <jannis@xfce.org>
642+Date: Tue Jul 29 11:33:40 2014 +0200
643+
644+ Automatically migrate old "autohide" properties to "autohide-behavior"
645+
646+ We could write a migration script for it to avoid additional code being
647+ added to the panel itself but the solution presented here is simple and
648+ works: when a panel is created (e.g. during startup), we check whether
649+ there is an old "autohide" property in the Xfconf channel. If the new
650+ "autohide-behavior" property is not yet set, we translate "autohide"
651+ FALSE and TRUE into "autohide-behavior" NEVER and ALWAYS, respectively.
652+ We then reset the "autohide" property and thereby achieve an automatic,
653+ transparent migration from old to new.
654+
655+commit 00c00c1f1994bc9f03bd98097dfb8fa68b16758a
656+Author: Jannis Pohlmann <jannis@xfce.org>
657+Date: Sun Jul 27 18:36:59 2014 +0200
658+
659+ Implement intelligent autohide behavior
660+
661+ This implementation of intelligent autohiding works as follows:
662+
663+ The current WnckScreen is monitored. Whenever the active window changes
664+ or whenever the geometry of an already active window changes, the
665+ algorithm checks whether the active window and the panel overlap. If
666+ this is the case, the panel is hidden. Otherwise, it is made or remains
667+ visible.
668+
669+ Desktop windows are treated special. Even though they overlap
670+ with panels technically, we don't consider this relevant and always make
671+ the panel visible when a desktop window becomes active.
672+
673+ Internally, there are three autohide behaviors now: never (disables
674+ autohiding altogether), intelligent (implements the above method) and
675+ always (the old "hide when not focused/grabbed by mouse or keyboard).
676+
677+commit 38cc02e4361b85f849c6ee29d7bb1e8c31ebb5d3
678+Author: Jannis Pohlmann <jannis@xfce.org>
679+Date: Mon Jul 28 02:07:46 2014 +0200
680+
681+ Make panel application depend on libwnck
682+
683+ This will be needed for intelligent autohiding, which is implemented by
684+ monitoring the current WnckScreen for active window changes and hiding
685+ the panel whenever the active window geometry overlaps with the panel.
686+
687+commit b00a4515274fcf914bf259e2f729c5153c117382
688+Author: Jannis Pohlmann <jannis@xfce.org>
689+Date: Sun Jul 27 19:04:45 2014 +0200
690+
691+ Fix typo in a debug message
692+
693+commit 84643f92f79eb49517012d319d92c0e39bfe350e
694+Author: Alois Nešpor <info@aloisnespor.info>
695+Date: Mon Sep 1 00:30:33 2014 +0200
696+
697+ I18n: Update translation cs (100%).
698+
699+ 394 translated messages.
700+
701+ Transifex (https://www.transifex.com/projects/p/xfce/).
702+
703+commit c55d7d9d335da5ec72e1068bf002d0719866f9af
704+Author: Piotr Sokół <psokol@jabster.pl>
705+Date: Sat Aug 30 00:30:37 2014 +0200
706+
707+ I18n: Update translation pl (100%).
708+
709+ 394 translated messages.
710+
711+ Transifex (https://www.transifex.com/projects/p/xfce/).
712+
713+commit 2faf8ca7a9d0461d645c602b176cab757ffd3106
714+Author: Piotr Sokół <psokol@jabster.pl>
715+Date: Thu Aug 28 00:30:34 2014 +0200
716+
717+ I18n: Update translation pl (100%).
718+
719+ 394 translated messages.
720+
721+ Transifex (https://www.transifex.com/projects/p/xfce/).
722+
723+commit f65ef2b5b729ce5d2ba93b7dcc9e366ba60d65e3
724+Author: Anonymous <noreply@xfce.org>
725+Date: Tue Aug 26 18:30:38 2014 +0200
726+
727+ I18n: Update translation de (100%).
728+
729+ 394 translated messages.
730+
731+ Transifex (https://www.transifex.com/projects/p/xfce/).
732+
733+commit 379d339eb19dbb3a1605bbddca3e57056a6ef7f9
734+Author: Yannick Le Guen <leguen.yannick@gmail.com>
735+Date: Sat Aug 23 12:30:35 2014 +0200
736+
737+ I18n: Update translation fr (100%).
738+
739+ 394 translated messages.
740+
741+ Transifex (https://www.transifex.com/projects/p/xfce/).
742+
743+commit 00175324010e06be782b8ee0892cefaf4b7cb9d1
744+Author: Pasi Lallinaho <pasi@shimmerproject.org>
745+Date: Sat Aug 23 00:30:39 2014 +0200
746+
747+ I18n: Update translation fi (99%).
748+
749+ 393 translated messages, 1 untranslated message.
750+
751+ Transifex (https://www.transifex.com/projects/p/xfce/).
752+
753+commit fbc0dc857c4011a4c7424cf8dcba5584212f0ee6
754+Author: lego37yoon <lego37yoon@outlook.com>
755+Date: Fri Jul 25 18:30:35 2014 +0200
756+
757+ I18n: Update translation ko (100%).
758+
759+ 394 translated messages.
760+
761+ Transifex (https://www.transifex.com/projects/p/xfce/).
762+
763+commit 68ddeaad0d3ecfcd4aa2d80784af01d4016ca5da
764+Author: Yannick Le Guen <leguen.yannick@gmail.com>
765+Date: Fri Jul 18 18:30:38 2014 +0200
766+
767+ I18n: Update translation fr (100%).
768+
769+ 394 translated messages.
770+
771+ Transifex (https://www.transifex.com/projects/p/xfce/).
772+
773+commit c116621cd41cf46f7ab7ae71fa24c7b06ae157cd
774+Author: Urien Desterres <urien.desterres@gmail.com>
775+Date: Sat Jul 5 18:30:33 2014 +0200
776+
777+ I18n: Update translation fr (100%).
778+
779+ 394 translated messages.
780+
781+ Transifex (https://www.transifex.com/projects/p/xfce/).
782+
783+commit 53a7ae13ae3fb23e32317ef539154b4d47a13e54
784+Author: Yannick Le Guen <leguen.yannick@gmail.com>
785+Date: Sat Jul 5 12:30:32 2014 +0200
786+
787+ I18n: Update translation fr (100%).
788+
789+ 394 translated messages.
790+
791+ Transifex (https://www.transifex.com/projects/p/xfce/).
792+
793+commit 5f514d2e70109dae64c082eb6aba137729521c31
794+Author: Tero Mononen <tero@mononen.eu>
795+Date: Thu Jul 3 18:30:35 2014 +0200
796+
797+ I18n: Update translation fi (73%).
798+
799+ 290 translated messages, 104 untranslated messages.
800+
801+ Transifex (https://www.transifex.com/projects/p/xfce/).
802+
803+commit 1e39a8b9c85b6c63fe59ae4607869e8ad5fb2d3e
804+Author: Andrzej <ndrwrdck@gmail.com>
805+Date: Sun Jun 22 22:48:57 2014 +0100
806+
807+ Back to development.
808+
809+commit 8898d93984fda0fe5dd069011cf43e288f48c4a3
810+Author: Andrzej <ndrwrdck@gmail.com>
811+Date: Sun Jun 22 22:48:04 2014 +0100
812+
813+ Updates for the release
814+
815 commit 61cba9a0fc5471dff7545eee8e0f81ffaf5ab106
816 Author: Andrzej <ndrwrdck@gmail.com>
817 Date: Sun Jun 22 10:56:23 2014 +0100
818
819=== modified file 'NEWS'
820--- NEWS 2014-06-23 08:06:22 +0000
821+++ NEWS 2015-01-04 19:54:48 +0000
822@@ -1,3 +1,11 @@
823+4.11.2
824+======
825+- Added intelligent panel hiding (JPohlmann, ochosi)
826+- Action buttons: only save session when requested (bug #7930)
827+- Translation updates: fi, fr, ko, de, pl, cs, es, hr, ms, nl, pt_BR,
828+ ja, uk, sr, it, th, is, da, pt, en_AU, kk, ru, zh, CN, ast, tr, sk,
829+ he, ar, el.
830+
831 4.11.1
832 ======
833 - Action Buttons: Fix panel autohide (bug #8960) (Petr Gajdůšek).
834
835=== modified file 'aclocal.m4'
836--- aclocal.m4 2014-06-23 08:06:22 +0000
837+++ aclocal.m4 2015-01-04 19:54:48 +0000
838@@ -9363,7 +9363,7 @@
839 m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
840
841 # nls.m4 serial 5 (gettext-0.18)
842-dnl Copyright (C) 1995-2003, 2005-2006, 2008-2013 Free Software Foundation,
843+dnl Copyright (C) 1995-2003, 2005-2006, 2008-2014 Free Software Foundation,
844 dnl Inc.
845 dnl This file is free software; the Free Software Foundation
846 dnl gives unlimited permission to copy and/or distribute it,
847@@ -9555,6 +9555,61 @@
848 fi[]dnl
849 ])# PKG_CHECK_MODULES
850
851+
852+# PKG_INSTALLDIR(DIRECTORY)
853+# -------------------------
854+# Substitutes the variable pkgconfigdir as the location where a module
855+# should install pkg-config .pc files. By default the directory is
856+# $libdir/pkgconfig, but the default can be changed by passing
857+# DIRECTORY. The user can override through the --with-pkgconfigdir
858+# parameter.
859+AC_DEFUN([PKG_INSTALLDIR],
860+[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
861+m4_pushdef([pkg_description],
862+ [pkg-config installation directory @<:@]pkg_default[@:>@])
863+AC_ARG_WITH([pkgconfigdir],
864+ [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
865+ [with_pkgconfigdir=]pkg_default)
866+AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
867+m4_popdef([pkg_default])
868+m4_popdef([pkg_description])
869+]) dnl PKG_INSTALLDIR
870+
871+
872+# PKG_NOARCH_INSTALLDIR(DIRECTORY)
873+# -------------------------
874+# Substitutes the variable noarch_pkgconfigdir as the location where a
875+# module should install arch-independent pkg-config .pc files. By
876+# default the directory is $datadir/pkgconfig, but the default can be
877+# changed by passing DIRECTORY. The user can override through the
878+# --with-noarch-pkgconfigdir parameter.
879+AC_DEFUN([PKG_NOARCH_INSTALLDIR],
880+[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
881+m4_pushdef([pkg_description],
882+ [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
883+AC_ARG_WITH([noarch-pkgconfigdir],
884+ [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
885+ [with_noarch_pkgconfigdir=]pkg_default)
886+AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
887+m4_popdef([pkg_default])
888+m4_popdef([pkg_description])
889+]) dnl PKG_NOARCH_INSTALLDIR
890+
891+
892+# PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
893+# [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
894+# -------------------------------------------
895+# Retrieves the value of the pkg-config variable for the given module.
896+AC_DEFUN([PKG_CHECK_VAR],
897+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
898+AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
899+
900+_PKG_CONFIG([$1], [variable="][$3]["], [$2])
901+AS_VAR_COPY([$1], [pkg_cv_][$1])
902+
903+AS_VAR_IF([$1], [""], [$5], [$4])dnl
904+])# PKG_CHECK_VAR
905+
906 # Copyright (C) 2002-2013 Free Software Foundation, Inc.
907 #
908 # This file is free software; the Free Software Foundation
909@@ -10108,7 +10163,8 @@
910 END
911 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
912 fi
913-fi])
914+fi
915+])
916
917 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
918 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
919
920=== modified file 'config.guess'
921--- config.guess 2014-06-23 08:06:22 +0000
922+++ config.guess 2015-01-04 19:54:48 +0000
923@@ -1,8 +1,8 @@
924 #! /bin/sh
925 # Attempt to guess a canonical system name.
926-# Copyright 1992-2013 Free Software Foundation, Inc.
927+# Copyright 1992-2014 Free Software Foundation, Inc.
928
929-timestamp='2013-06-10'
930+timestamp='2014-03-23'
931
932 # This file is free software; you can redistribute it and/or modify it
933 # under the terms of the GNU General Public License as published by
934@@ -50,7 +50,7 @@
935 GNU config.guess ($timestamp)
936
937 Originally written by Per Bothner.
938-Copyright 1992-2013 Free Software Foundation, Inc.
939+Copyright 1992-2014 Free Software Foundation, Inc.
940
941 This is free software; see the source for copying conditions. There is NO
942 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
943@@ -149,7 +149,7 @@
944 LIBC=gnu
945 #endif
946 EOF
947- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
948+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
949 ;;
950 esac
951
952@@ -826,7 +826,7 @@
953 *:MINGW*:*)
954 echo ${UNAME_MACHINE}-pc-mingw32
955 exit ;;
956- i*:MSYS*:*)
957+ *:MSYS*:*)
958 echo ${UNAME_MACHINE}-pc-msys
959 exit ;;
960 i*:windows32*:*)
961@@ -969,10 +969,10 @@
962 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
963 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
964 ;;
965- or1k:Linux:*:*)
966- echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
967+ openrisc*:Linux:*:*)
968+ echo or1k-unknown-linux-${LIBC}
969 exit ;;
970- or32:Linux:*:*)
971+ or32:Linux:*:* | or1k*:Linux:*:*)
972 echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
973 exit ;;
974 padre:Linux:*:*)
975@@ -1260,16 +1260,26 @@
976 if test "$UNAME_PROCESSOR" = unknown ; then
977 UNAME_PROCESSOR=powerpc
978 fi
979- if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
980- if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
981- (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
982- grep IS_64BIT_ARCH >/dev/null
983- then
984- case $UNAME_PROCESSOR in
985- i386) UNAME_PROCESSOR=x86_64 ;;
986- powerpc) UNAME_PROCESSOR=powerpc64 ;;
987- esac
988+ if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
989+ if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
990+ if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
991+ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
992+ grep IS_64BIT_ARCH >/dev/null
993+ then
994+ case $UNAME_PROCESSOR in
995+ i386) UNAME_PROCESSOR=x86_64 ;;
996+ powerpc) UNAME_PROCESSOR=powerpc64 ;;
997+ esac
998+ fi
999 fi
1000+ elif test "$UNAME_PROCESSOR" = i386 ; then
1001+ # Avoid executing cc on OS X 10.9, as it ships with a stub
1002+ # that puts up a graphical alert prompting to install
1003+ # developer tools. Any system running Mac OS X 10.7 or
1004+ # later (Darwin 11 and later) is required to have a 64-bit
1005+ # processor. This is not true of the ARM version of Darwin
1006+ # that Apple uses in portable devices.
1007+ UNAME_PROCESSOR=x86_64
1008 fi
1009 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
1010 exit ;;
1011@@ -1361,154 +1371,6 @@
1012 exit ;;
1013 esac
1014
1015-eval $set_cc_for_build
1016-cat >$dummy.c <<EOF
1017-#ifdef _SEQUENT_
1018-# include <sys/types.h>
1019-# include <sys/utsname.h>
1020-#endif
1021-main ()
1022-{
1023-#if defined (sony)
1024-#if defined (MIPSEB)
1025- /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
1026- I don't know.... */
1027- printf ("mips-sony-bsd\n"); exit (0);
1028-#else
1029-#include <sys/param.h>
1030- printf ("m68k-sony-newsos%s\n",
1031-#ifdef NEWSOS4
1032- "4"
1033-#else
1034- ""
1035-#endif
1036- ); exit (0);
1037-#endif
1038-#endif
1039-
1040-#if defined (__arm) && defined (__acorn) && defined (__unix)
1041- printf ("arm-acorn-riscix\n"); exit (0);
1042-#endif
1043-
1044-#if defined (hp300) && !defined (hpux)
1045- printf ("m68k-hp-bsd\n"); exit (0);
1046-#endif
1047-
1048-#if defined (NeXT)
1049-#if !defined (__ARCHITECTURE__)
1050-#define __ARCHITECTURE__ "m68k"
1051-#endif
1052- int version;
1053- version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
1054- if (version < 4)
1055- printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
1056- else
1057- printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
1058- exit (0);
1059-#endif
1060-
1061-#if defined (MULTIMAX) || defined (n16)
1062-#if defined (UMAXV)
1063- printf ("ns32k-encore-sysv\n"); exit (0);
1064-#else
1065-#if defined (CMU)
1066- printf ("ns32k-encore-mach\n"); exit (0);
1067-#else
1068- printf ("ns32k-encore-bsd\n"); exit (0);
1069-#endif
1070-#endif
1071-#endif
1072-
1073-#if defined (__386BSD__)
1074- printf ("i386-pc-bsd\n"); exit (0);
1075-#endif
1076-
1077-#if defined (sequent)
1078-#if defined (i386)
1079- printf ("i386-sequent-dynix\n"); exit (0);
1080-#endif
1081-#if defined (ns32000)
1082- printf ("ns32k-sequent-dynix\n"); exit (0);
1083-#endif
1084-#endif
1085-
1086-#if defined (_SEQUENT_)
1087- struct utsname un;
1088-
1089- uname(&un);
1090-
1091- if (strncmp(un.version, "V2", 2) == 0) {
1092- printf ("i386-sequent-ptx2\n"); exit (0);
1093- }
1094- if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
1095- printf ("i386-sequent-ptx1\n"); exit (0);
1096- }
1097- printf ("i386-sequent-ptx\n"); exit (0);
1098-
1099-#endif
1100-
1101-#if defined (vax)
1102-# if !defined (ultrix)
1103-# include <sys/param.h>
1104-# if defined (BSD)
1105-# if BSD == 43
1106- printf ("vax-dec-bsd4.3\n"); exit (0);
1107-# else
1108-# if BSD == 199006
1109- printf ("vax-dec-bsd4.3reno\n"); exit (0);
1110-# else
1111- printf ("vax-dec-bsd\n"); exit (0);
1112-# endif
1113-# endif
1114-# else
1115- printf ("vax-dec-bsd\n"); exit (0);
1116-# endif
1117-# else
1118- printf ("vax-dec-ultrix\n"); exit (0);
1119-# endif
1120-#endif
1121-
1122-#if defined (alliant) && defined (i860)
1123- printf ("i860-alliant-bsd\n"); exit (0);
1124-#endif
1125-
1126- exit (1);
1127-}
1128-EOF
1129-
1130-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
1131- { echo "$SYSTEM_NAME"; exit; }
1132-
1133-# Apollos put the system type in the environment.
1134-
1135-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
1136-
1137-# Convex versions that predate uname can use getsysinfo(1)
1138-
1139-if [ -x /usr/convex/getsysinfo ]
1140-then
1141- case `getsysinfo -f cpu_type` in
1142- c1*)
1143- echo c1-convex-bsd
1144- exit ;;
1145- c2*)
1146- if getsysinfo -f scalar_acc
1147- then echo c32-convex-bsd
1148- else echo c2-convex-bsd
1149- fi
1150- exit ;;
1151- c34*)
1152- echo c34-convex-bsd
1153- exit ;;
1154- c38*)
1155- echo c38-convex-bsd
1156- exit ;;
1157- c4*)
1158- echo c4-convex-bsd
1159- exit ;;
1160- esac
1161-fi
1162-
1163 cat >&2 <<EOF
1164 $0: unable to guess system type
1165
1166
1167=== modified file 'config.sub'
1168--- config.sub 2014-06-23 08:06:22 +0000
1169+++ config.sub 2015-01-04 19:54:48 +0000
1170@@ -1,8 +1,8 @@
1171 #! /bin/sh
1172 # Configuration validation subroutine script.
1173-# Copyright 1992-2013 Free Software Foundation, Inc.
1174+# Copyright 1992-2014 Free Software Foundation, Inc.
1175
1176-timestamp='2013-08-10'
1177+timestamp='2014-09-11'
1178
1179 # This file is free software; you can redistribute it and/or modify it
1180 # under the terms of the GNU General Public License as published by
1181@@ -68,7 +68,7 @@
1182 version="\
1183 GNU config.sub ($timestamp)
1184
1185-Copyright 1992-2013 Free Software Foundation, Inc.
1186+Copyright 1992-2014 Free Software Foundation, Inc.
1187
1188 This is free software; see the source for copying conditions. There is NO
1189 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
1190@@ -265,6 +265,7 @@
1191 | hexagon \
1192 | i370 | i860 | i960 | ia64 \
1193 | ip2k | iq2000 \
1194+ | k1om \
1195 | le32 | le64 \
1196 | lm32 \
1197 | m32c | m32r | m32rle | m68000 | m68k | m88k \
1198@@ -282,8 +283,10 @@
1199 | mips64vr5900 | mips64vr5900el \
1200 | mipsisa32 | mipsisa32el \
1201 | mipsisa32r2 | mipsisa32r2el \
1202+ | mipsisa32r6 | mipsisa32r6el \
1203 | mipsisa64 | mipsisa64el \
1204 | mipsisa64r2 | mipsisa64r2el \
1205+ | mipsisa64r6 | mipsisa64r6el \
1206 | mipsisa64sb1 | mipsisa64sb1el \
1207 | mipsisa64sr71k | mipsisa64sr71kel \
1208 | mipsr5900 | mipsr5900el \
1209@@ -295,11 +298,11 @@
1210 | nds32 | nds32le | nds32be \
1211 | nios | nios2 | nios2eb | nios2el \
1212 | ns16k | ns32k \
1213- | open8 \
1214- | or1k | or32 \
1215+ | open8 | or1k | or1knd | or32 \
1216 | pdp10 | pdp11 | pj | pjl \
1217 | powerpc | powerpc64 | powerpc64le | powerpcle \
1218 | pyramid \
1219+ | riscv32 | riscv64 \
1220 | rl78 | rx \
1221 | score \
1222 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
1223@@ -324,7 +327,7 @@
1224 c6x)
1225 basic_machine=tic6x-unknown
1226 ;;
1227- m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
1228+ m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip)
1229 basic_machine=$basic_machine-unknown
1230 os=-none
1231 ;;
1232@@ -381,6 +384,7 @@
1233 | hexagon-* \
1234 | i*86-* | i860-* | i960-* | ia64-* \
1235 | ip2k-* | iq2000-* \
1236+ | k1om-* \
1237 | le32-* | le64-* \
1238 | lm32-* \
1239 | m32c-* | m32r-* | m32rle-* \
1240@@ -400,8 +404,10 @@
1241 | mips64vr5900-* | mips64vr5900el-* \
1242 | mipsisa32-* | mipsisa32el-* \
1243 | mipsisa32r2-* | mipsisa32r2el-* \
1244+ | mipsisa32r6-* | mipsisa32r6el-* \
1245 | mipsisa64-* | mipsisa64el-* \
1246 | mipsisa64r2-* | mipsisa64r2el-* \
1247+ | mipsisa64r6-* | mipsisa64r6el-* \
1248 | mipsisa64sb1-* | mipsisa64sb1el-* \
1249 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
1250 | mipsr5900-* | mipsr5900el-* \
1251@@ -413,6 +419,7 @@
1252 | nios-* | nios2-* | nios2eb-* | nios2el-* \
1253 | none-* | np1-* | ns16k-* | ns32k-* \
1254 | open8-* \
1255+ | or1k*-* \
1256 | orion-* \
1257 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
1258 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
1259@@ -822,6 +829,10 @@
1260 basic_machine=powerpc-unknown
1261 os=-morphos
1262 ;;
1263+ moxiebox)
1264+ basic_machine=moxie-unknown
1265+ os=-moxiebox
1266+ ;;
1267 msdos)
1268 basic_machine=i386-pc
1269 os=-msdos
1270@@ -1367,14 +1378,14 @@
1271 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1272 | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \
1273 | -linux-newlib* | -linux-musl* | -linux-uclibc* \
1274- | -uxpv* | -beos* | -mpeix* | -udk* \
1275+ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \
1276 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
1277 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
1278 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
1279 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
1280 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
1281 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1282- | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*)
1283+ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*)
1284 # Remember, each alternative MUST END IN *, to match a version number.
1285 ;;
1286 -qnx*)
1287@@ -1592,9 +1603,6 @@
1288 mips*-*)
1289 os=-elf
1290 ;;
1291- or1k-*)
1292- os=-elf
1293- ;;
1294 or32-*)
1295 os=-coff
1296 ;;
1297
1298=== modified file 'configure'
1299--- configure 2014-06-23 08:06:22 +0000
1300+++ configure 2015-01-04 19:54:48 +0000
1301@@ -1,7 +1,7 @@
1302 #! /bin/sh
1303-# From configure.ac 61cba9a.
1304+# From configure.ac b0e0492.
1305 # Guess values for system-dependent variables and create Makefiles.
1306-# Generated by GNU Autoconf 2.69 for xfce4-panel 4.11.1.
1307+# Generated by GNU Autoconf 2.69 for xfce4-panel 4.11.2.
1308 #
1309 # Report bugs to <http://bugzilla.xfce.org/>.
1310 #
1311@@ -597,8 +597,8 @@
1312 # Identity of this package.
1313 PACKAGE_NAME='xfce4-panel'
1314 PACKAGE_TARNAME='xfce4-panel'
1315-PACKAGE_VERSION='4.11.1'
1316-PACKAGE_STRING='xfce4-panel 4.11.1'
1317+PACKAGE_VERSION='4.11.2'
1318+PACKAGE_STRING='xfce4-panel 4.11.2'
1319 PACKAGE_BUGREPORT='http://bugzilla.xfce.org/'
1320 PACKAGE_URL=''
1321
1322@@ -1499,7 +1499,7 @@
1323 # Omit some internal or obsolete options to make the list less imposing.
1324 # This message is too long to be a string in the A/UX 3.1 sh.
1325 cat <<_ACEOF
1326-\`configure' configures xfce4-panel 4.11.1 to adapt to many kinds of systems.
1327+\`configure' configures xfce4-panel 4.11.2 to adapt to many kinds of systems.
1328
1329 Usage: $0 [OPTION]... [VAR=VALUE]...
1330
1331@@ -1573,7 +1573,7 @@
1332
1333 if test -n "$ac_init_help"; then
1334 case $ac_init_help in
1335- short | recursive ) echo "Configuration of xfce4-panel 4.11.1:";;
1336+ short | recursive ) echo "Configuration of xfce4-panel 4.11.2:";;
1337 esac
1338 cat <<\_ACEOF
1339
1340@@ -1715,7 +1715,7 @@
1341 test -n "$ac_init_help" && exit $ac_status
1342 if $ac_init_version; then
1343 cat <<\_ACEOF
1344-xfce4-panel configure 4.11.1
1345+xfce4-panel configure 4.11.2
1346 generated by GNU Autoconf 2.69
1347
1348 Copyright (C) 2012 Free Software Foundation, Inc.
1349@@ -2090,7 +2090,7 @@
1350 This file contains any messages produced by compilers while
1351 running configure, to aid debugging if configure makes a mistake.
1352
1353-It was created by xfce4-panel $as_me 4.11.1, which was
1354+It was created by xfce4-panel $as_me 4.11.2, which was
1355 generated by GNU Autoconf 2.69. Invocation command line was
1356
1357 $ $0 $@
1358@@ -2958,7 +2958,7 @@
1359
1360 # Define the identity of the package.
1361 PACKAGE='xfce4-panel'
1362- VERSION='4.11.1'
1363+ VERSION='4.11.2'
1364
1365
1366 cat >>confdefs.h <<_ACEOF
1367@@ -3167,6 +3167,7 @@
1368 fi
1369 fi
1370
1371+
1372 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
1373 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
1374 # Check whether --enable-maintainer-mode was given.
1375@@ -13413,11 +13414,11 @@
1376 LIBXFCE4PANEL_VERINFO=4:0:0
1377
1378
1379-LIBXFCE4PANEL_VERSION=4.11.1
1380+LIBXFCE4PANEL_VERSION=4.11.2
1381 LIBXFCE4PANEL_VERSION_API=1.0
1382 LIBXFCE4PANEL_VERSION_MAJOR=4
1383 LIBXFCE4PANEL_VERSION_MINOR=11
1384-LIBXFCE4PANEL_VERSION_MICRO=1
1385+LIBXFCE4PANEL_VERSION_MICRO=2
1386
1387 $as_echo "#define LIBXFCE4PANEL_VERSION_API \"1.0\"" >>confdefs.h
1388
1389@@ -19288,7 +19289,7 @@
1390 # report actual input values of CONFIG_FILES etc. instead of their
1391 # values after options handling.
1392 ac_log="
1393-This file was extended by xfce4-panel $as_me 4.11.1, which was
1394+This file was extended by xfce4-panel $as_me 4.11.2, which was
1395 generated by GNU Autoconf 2.69. Invocation command line was
1396
1397 CONFIG_FILES = $CONFIG_FILES
1398@@ -19354,7 +19355,7 @@
1399 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1400 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1401 ac_cs_version="\\
1402-xfce4-panel config.status 4.11.1
1403+xfce4-panel config.status 4.11.2
1404 configured by $0, generated by GNU Autoconf 2.69,
1405 with options \\"\$ac_cs_config\\"
1406
1407
1408=== modified file 'configure.ac'
1409--- configure.ac 2014-06-23 08:06:22 +0000
1410+++ configure.ac 2015-01-04 19:54:48 +0000
1411@@ -18,9 +18,9 @@
1412 m4_define([xfce4_panel_config_version], [2])
1413 m4_define([xfce4_panel_version_major], [4])
1414 m4_define([xfce4_panel_version_minor], [11])
1415-m4_define([xfce4_panel_version_micro], [1])
1416+m4_define([xfce4_panel_version_micro], [2])
1417 m4_define([xfce4_panel_version_nano], []) dnl leave this empty to have no nano version
1418-m4_define([xfce4_panel_version_build], [61cba9a])
1419+m4_define([xfce4_panel_version_build], [b0e0492])
1420 m4_define([xfce4_panel_version_tag], [])
1421 m4_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()])])
1422
1423
1424=== modified file 'debian/changelog'
1425--- debian/changelog 2014-10-14 06:15:01 +0000
1426+++ debian/changelog 2015-01-04 19:54:48 +0000
1427@@ -1,3 +1,9 @@
1428+xfce4-panel (4.11.2-0ubuntu1) vivid; urgency=medium
1429+
1430+ * New upstream release.
1431+
1432+ -- Jackson Doak <noskcaj@ubuntu.com> Mon, 05 Jan 2015 06:15:06 +1100
1433+
1434 xfce4-panel (4.11.1-0ubuntu2) utopic; urgency=medium
1435
1436 * debian/patches/02_support-dmtool.patch
1437
1438=== modified file 'debian/patches/02_support-dmtool.patch'
1439--- debian/patches/02_support-dmtool.patch 2014-10-14 06:15:01 +0000
1440+++ debian/patches/02_support-dmtool.patch 2015-01-04 19:54:48 +0000
1441@@ -6,9 +6,13 @@
1442 Last-Update: 2014-10-11
1443 ---
1444 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
1445+---
1446+ plugins/actions/actions.c | 18 ++++++++++++++++--
1447+ 1 file changed, 16 insertions(+), 2 deletions(-)
1448+
1449 --- a/plugins/actions/actions.c
1450 +++ b/plugins/actions/actions.c
1451-@@ -860,9 +860,17 @@
1452+@@ -860,9 +860,17 @@ actions_plugin_actions_allowed (void)
1453 GError *error = NULL;
1454
1455 /* check for commands we use */
1456@@ -27,15 +31,15 @@
1457 g_free (path);
1458
1459 path = g_find_program_in_path ("xflock4");
1460-@@ -915,6 +923,7 @@
1461- gboolean unattended = FALSE;
1462- GError *error = NULL;
1463- gboolean succeed = FALSE;
1464+@@ -917,6 +925,7 @@ actions_plugin_action_activate (GtkWidge
1465+ gboolean succeed = FALSE;
1466+ XfconfChannel *channel;
1467+ gboolean allow_save;
1468 + gchar *path;
1469
1470 entry = g_object_get_qdata (G_OBJECT (widget), action_quark);
1471 panel_return_if_fail (entry != NULL);
1472-@@ -958,7 +967,12 @@
1473+@@ -965,7 +974,12 @@ actions_plugin_action_activate (GtkWidge
1474 break;
1475
1476 case ACTION_TYPE_SWITCH_USER:
1477
1478=== modified file 'docs/references/html/XfceArrowButton.html'
1479--- docs/references/html/XfceArrowButton.html 2014-06-23 08:06:22 +0000
1480+++ docs/references/html/XfceArrowButton.html 2015-01-04 19:54:48 +0000
1481@@ -8,17 +8,17 @@
1482 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
1483 <link rel="prev" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
1484 <link rel="next" href="XfceHVBox.html" title="XfceHVBox">
1485-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
1486+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1487 <link rel="stylesheet" href="style.css" type="text/css">
1488 </head>
1489 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
1490-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
1491+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
1492 <td width="100%" align="left" class="shortcuts">
1493-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
1494- <a href="#XfceArrowButton.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
1495- <a href="#XfceArrowButton.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 
1496- <a href="#XfceArrowButton.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 
1497- <a href="#XfceArrowButton.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span> 
1498+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
1499+ <a href="#XfceArrowButton.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
1500+ <a href="#XfceArrowButton.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
1501+ <a href="#XfceArrowButton.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
1502+ <a href="#XfceArrowButton.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
1503 <a href="#XfceArrowButton.signals" class="shortcut">Signals</a></span>
1504 </td>
1505 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
1506@@ -45,7 +45,7 @@
1507 <tbody>
1508 <tr>
1509 <td class="function_type">
1510-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1511+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1512 </td>
1513 <td class="function_name">
1514 <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>
1515@@ -53,7 +53,7 @@
1516 </tr>
1517 <tr>
1518 <td class="function_type">
1519-<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
1520+<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
1521 </td>
1522 <td class="function_name">
1523 <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>
1524@@ -69,7 +69,7 @@
1525 </tr>
1526 <tr>
1527 <td class="function_type">
1528-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1529+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1530 </td>
1531 <td class="function_name">
1532 <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>
1533@@ -95,7 +95,7 @@
1534 <col width="200px" class="properties_flags">
1535 </colgroup>
1536 <tbody><tr>
1537-<td class="property_type"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></td>
1538+<td class="property_type"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></td>
1539 <td class="property_name"><a class="link" href="XfceArrowButton.html#XfceArrowButton--arrow-type" title="The “arrow-type” property">arrow-type</a></td>
1540 <td class="property_flags">Read / Write</td>
1541 </tr></tbody>
1542@@ -131,14 +131,14 @@
1543 </div>
1544 <div class="refsect1">
1545 <a name="XfceArrowButton.object-hierarchy"></a><h2>Object Hierarchy</h2>
1546-<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1547- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1548- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
1549- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>
1550- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>
1551- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBin.html">GtkBin</a>
1552- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkButton.html">GtkButton</a>
1553- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkToggleButton.html">GtkToggleButton</a>
1554+<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1555+ <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1556+ <span class="lineart">╰──</span> GtkObject
1557+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
1558+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
1559+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
1560+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkButton.html">GtkButton</a>
1561+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html">GtkToggleButton</a>
1562 <span class="lineart">╰──</span> XfceArrowButton
1563 </pre>
1564 </div>
1565@@ -146,7 +146,7 @@
1566 <a name="XfceArrowButton.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
1567 <p>
1568 XfceArrowButton implements
1569- 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>
1570+ <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>
1571 </div>
1572 <div class="refsect1">
1573 <a name="XfceArrowButton.includes"></a><h2>Includes</h2>
1574@@ -158,14 +158,14 @@
1575 <p>Toggle button with (optional) arrow. The arrow direction will be
1576 inverted when the button is toggled.
1577 Since 4.8 it is also possible to make the button blink and pack additional
1578-widgets 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>
1579+widgets 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>
1580 </div>
1581 <div class="refsect1">
1582 <a name="XfceArrowButton.functions_details"></a><h2>Functions</h2>
1583 <div class="refsect2">
1584 <a name="xfce-arrow-button-new"></a><h3>xfce_arrow_button_new ()</h3>
1585-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1586-xfce_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>
1587+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1588+xfce_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>
1589 <p>Creates a new <a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> widget.</p>
1590 <div class="refsect3">
1591 <a name="id-1.4.3.11.2.5"></a><h4>Parameters</h4>
1592@@ -177,7 +177,7 @@
1593 </colgroup>
1594 <tbody><tr>
1595 <td class="parameter_name"><p>arrow_type</p></td>
1596-<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>
1597+<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>
1598 <td class="parameter_annotations"> </td>
1599 </tr></tbody>
1600 </table></div>
1601@@ -191,7 +191,7 @@
1602 <hr>
1603 <div class="refsect2">
1604 <a name="xfce-arrow-button-get-arrow-type"></a><h3>xfce_arrow_button_get_arrow_type ()</h3>
1605-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
1606+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
1607 xfce_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>
1608 <p>Returns the value of the ::arrow-type property.</p>
1609 <div class="refsect3">
1610@@ -211,7 +211,7 @@
1611 </div>
1612 <div class="refsect3">
1613 <a name="id-1.4.3.11.3.6"></a><h4>Returns</h4>
1614-<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>
1615+<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>
1616 .</p>
1617 <p></p>
1618 </div>
1619@@ -221,7 +221,7 @@
1620 <a name="xfce-arrow-button-set-arrow-type"></a><h3>xfce_arrow_button_set_arrow_type ()</h3>
1621 <pre class="programlisting"><span class="returnvalue">void</span>
1622 xfce_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>,
1623- <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>
1624+ <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>
1625 <p>Sets the arrow type for <em class="parameter"><code>button</code></em>
1626 .</p>
1627 <div class="refsect3">
1628@@ -240,7 +240,7 @@
1629 </tr>
1630 <tr>
1631 <td class="parameter_name"><p>arrow_type</p></td>
1632-<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>
1633+<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>
1634 <td class="parameter_annotations"> </td>
1635 </tr>
1636 </tbody>
1637@@ -250,10 +250,10 @@
1638 <hr>
1639 <div class="refsect2">
1640 <a name="xfce-arrow-button-get-blinking"></a><h3>xfce_arrow_button_get_blinking ()</h3>
1641-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1642+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
1643 xfce_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>
1644 <p>Whether the button is blinking. If the blink timeout is finished
1645-and 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>
1646+and 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>
1647 <div class="refsect3">
1648 <a name="id-1.4.3.11.5.5"></a><h4>Parameters</h4>
1649 <div class="informaltable"><table width="100%" border="0">
1650@@ -271,7 +271,7 @@
1651 </div>
1652 <div class="refsect3">
1653 <a name="id-1.4.3.11.5.6"></a><h4>Returns</h4>
1654-<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>
1655+<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>
1656 is blinking.</p>
1657 <p></p>
1658 </div>
1659@@ -282,7 +282,7 @@
1660 <a name="xfce-arrow-button-set-blinking"></a><h3>xfce_arrow_button_set_blinking ()</h3>
1661 <pre class="programlisting"><span class="returnvalue">void</span>
1662 xfce_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>,
1663- <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>
1664+ <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>
1665 <p>Make the button blink.</p>
1666 <div class="refsect3">
1667 <a name="id-1.4.3.11.6.5"></a><h4>Parameters</h4>
1668@@ -300,7 +300,7 @@
1669 </tr>
1670 <tr>
1671 <td class="parameter_name"><p>blinking</p></td>
1672-<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> to
1673+<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
1674 stop the blinking.</p></td>
1675 <td class="parameter_annotations"> </td>
1676 </tr>
1677@@ -323,7 +323,7 @@
1678 <a name="XfceArrowButton.property-details"></a><h2>Property Details</h2>
1679 <div class="refsect2">
1680 <a name="XfceArrowButton--arrow-type"></a><h3>The <code class="literal">“arrow-type”</code> property</h3>
1681-<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>
1682+<pre class="programlisting"> “arrow-type” <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a></pre>
1683 <p>The arrow type of the button. This value also determines the direction
1684 of the popup menu.</p>
1685 <p>Flags: Read / Write</p>
1686@@ -336,8 +336,8 @@
1687 <a name="XfceArrowButton-arrow-type-changed"></a><h3>The <code class="literal">“arrow-type-changed”</code> signal</h3>
1688 <pre class="programlisting"><span class="returnvalue">void</span>
1689 user_function (<a class="link" href="XfceArrowButton.html" title="XfceArrowButton"><span class="type">XfceArrowButton</span></a> *button,
1690- <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> type,
1691- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1692+ <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> type,
1693+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
1694 <p>Emitted when the arrow direction of the menu button changes.
1695 This value also determines the direction of the popup menu.</p>
1696 <div class="refsect3">
1697@@ -356,7 +356,7 @@
1698 </tr>
1699 <tr>
1700 <td class="parameter_name"><p>type</p></td>
1701-<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>
1702+<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>
1703 <td class="parameter_annotations"> </td>
1704 </tr>
1705 <tr>
1706@@ -373,6 +373,6 @@
1707 </div>
1708 <div class="footer">
1709 <hr>
1710- Generated by GTK-Doc V1.20</div>
1711+ Generated by GTK-Doc V1.21</div>
1712 </body>
1713 </html>
1714\ No newline at end of file
1715
1716=== modified file 'docs/references/html/XfceHVBox.html'
1717--- docs/references/html/XfceHVBox.html 2014-06-23 08:06:22 +0000
1718+++ docs/references/html/XfceHVBox.html 2015-01-04 19:54:48 +0000
1719@@ -8,15 +8,15 @@
1720 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
1721 <link rel="prev" href="XfceArrowButton.html" title="XfceArrowButton">
1722 <link rel="next" href="XfcePanelImage.html" title="XfcePanelImage">
1723-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
1724+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1725 <link rel="stylesheet" href="style.css" type="text/css">
1726 </head>
1727 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
1728-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
1729+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
1730 <td width="100%" align="left" class="shortcuts">
1731-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
1732- <a href="#XfceHVBox.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
1733- <a href="#XfceHVBox.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 
1734+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
1735+ <a href="#XfceHVBox.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
1736+ <a href="#XfceHVBox.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
1737 <a href="#XfceHVBox.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span>
1738 </td>
1739 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
1740@@ -43,7 +43,7 @@
1741 <tbody>
1742 <tr>
1743 <td class="function_type">
1744-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1745+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1746 </td>
1747 <td class="function_name">
1748 <a class="link" href="XfceHVBox.html#xfce-hvbox-new" title="xfce_hvbox_new ()">xfce_hvbox_new</a> <span class="c_punctuation">()</span>
1749@@ -59,7 +59,7 @@
1750 </tr>
1751 <tr>
1752 <td class="function_type">
1753-<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
1754+<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
1755 </td>
1756 <td class="function_name">
1757 <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>
1758@@ -83,12 +83,12 @@
1759 </div>
1760 <div class="refsect1">
1761 <a name="XfceHVBox.object-hierarchy"></a><h2>Object Hierarchy</h2>
1762-<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1763- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1764- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
1765- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>
1766- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>
1767- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBox.html">GtkBox</a>
1768+<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1769+ <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1770+ <span class="lineart">╰──</span> GtkObject
1771+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
1772+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
1773+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBox.html">GtkBox</a>
1774 <span class="lineart">╰──</span> XfceHVBox
1775 </pre>
1776 </div>
1777@@ -96,7 +96,7 @@
1778 <a name="XfceHVBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
1779 <p>
1780 XfceHVBox implements
1781- 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>
1782+ <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>
1783 </div>
1784 <div class="refsect1">
1785 <a name="XfceHVBox.includes"></a><h2>Includes</h2>
1786@@ -105,21 +105,21 @@
1787 </div>
1788 <div class="refsect1">
1789 <a name="XfceHVBox.description"></a><h2>Description</h2>
1790-<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 change
1791-its 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>
1792+<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
1793+its 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>
1794 <p>If your code depends on Gtk+ 2.16 or later, if it better to use
1795-the normal <a href="http://library.gnome.org/devel/gtk3/GtkBox.html"><span class="type">GtkBox</span></a> widgets in combination with
1796-<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>
1797-<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>
1798+the normal <a href="http://developer.gnome.org/gtk2/GtkBox.html"><span class="type">GtkBox</span></a> widgets in combination with
1799+<a href="http://developer.gnome.org/gtk2/gtk3-Orientable.html#gtk-orientable-set-orientation"><code class="function">gtk_orientable_set_orientation()</code></a>.</p>
1800+<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>
1801 </div>
1802 <div class="refsect1">
1803 <a name="XfceHVBox.functions_details"></a><h2>Functions</h2>
1804 <div class="refsect2">
1805 <a name="xfce-hvbox-new"></a><h3>xfce_hvbox_new ()</h3>
1806-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1807-xfce_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>,
1808- <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>,
1809- <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>
1810+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1811+xfce_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>,
1812+ <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>,
1813+ <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>
1814 <p>Creates a new <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>
1815 <div class="refsect3">
1816 <a name="id-1.4.4.9.2.5"></a><h4>Parameters</h4>
1817@@ -159,7 +159,7 @@
1818 <a name="xfce-hvbox-set-orientation"></a><h3>xfce_hvbox_set_orientation ()</h3>
1819 <pre class="programlisting"><span class="returnvalue">void</span>
1820 xfce_hvbox_set_orientation (<em class="parameter"><code><a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> *hvbox</code></em>,
1821- <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>
1822+ <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>
1823 <p>Set the new orientation of the <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a> container widget.</p>
1824 <div class="refsect3">
1825 <a name="id-1.4.4.9.3.5"></a><h4>Parameters</h4>
1826@@ -187,7 +187,7 @@
1827 <hr>
1828 <div class="refsect2">
1829 <a name="xfce-hvbox-get-orientation"></a><h3>xfce_hvbox_get_orientation ()</h3>
1830-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
1831+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
1832 xfce_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>
1833 <p>Get the current orientation of the <em class="parameter"><code>hvbox</code></em>
1834 .</p>
1835@@ -225,6 +225,6 @@
1836 </div>
1837 <div class="footer">
1838 <hr>
1839- Generated by GTK-Doc V1.20</div>
1840+ Generated by GTK-Doc V1.21</div>
1841 </body>
1842 </html>
1843\ No newline at end of file
1844
1845=== modified file 'docs/references/html/XfcePanelImage.html'
1846--- docs/references/html/XfcePanelImage.html 2014-06-23 08:06:22 +0000
1847+++ docs/references/html/XfcePanelImage.html 2015-01-04 19:54:48 +0000
1848@@ -8,17 +8,17 @@
1849 <link rel="up" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
1850 <link rel="prev" href="XfceHVBox.html" title="XfceHVBox">
1851 <link rel="next" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
1852-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
1853+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
1854 <link rel="stylesheet" href="style.css" type="text/css">
1855 </head>
1856 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
1857-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
1858+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
1859 <td width="100%" align="left" class="shortcuts">
1860-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
1861- <a href="#XfcePanelImage.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
1862- <a href="#XfcePanelImage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 
1863- <a href="#XfcePanelImage.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 
1864- <a href="#XfcePanelImage.properties" class="shortcut">Properties</a></span><span id="nav_style_properties"> <span class="dim">|</span> 
1865+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
1866+ <a href="#XfcePanelImage.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
1867+ <a href="#XfcePanelImage.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
1868+ <a href="#XfcePanelImage.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
1869+ <a href="#XfcePanelImage.properties" class="shortcut">Properties</a></span><span id="nav_style_properties">  <span class="dim">|</span> 
1870 <a href="#XfcePanelImage.style-properties" class="shortcut">Style Properties</a></span>
1871 </td>
1872 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
1873@@ -45,7 +45,7 @@
1874 <tbody>
1875 <tr>
1876 <td class="function_type">
1877-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1878+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1879 </td>
1880 <td class="function_name">
1881 <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>
1882@@ -53,7 +53,7 @@
1883 </tr>
1884 <tr>
1885 <td class="function_type">
1886-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1887+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1888 </td>
1889 <td class="function_name">
1890 <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>
1891@@ -61,7 +61,7 @@
1892 </tr>
1893 <tr>
1894 <td class="function_type">
1895-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1896+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1897 </td>
1898 <td class="function_name">
1899 <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>
1900@@ -93,7 +93,7 @@
1901 </tr>
1902 <tr>
1903 <td class="function_type">
1904-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
1905+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
1906 </td>
1907 <td class="function_name">
1908 <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>
1909@@ -121,18 +121,18 @@
1910 <tbody>
1911 <tr>
1912 <td class="property_type">
1913-<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *</td>
1914+<span class="type">GdkPixbuf</span> *</td>
1915 <td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--pixbuf" title="The “pixbuf” property">pixbuf</a></td>
1916 <td class="property_flags">Read / Write</td>
1917 </tr>
1918 <tr>
1919-<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>
1920+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
1921 <td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--size" title="The “size” property">size</a></td>
1922 <td class="property_flags">Read / Write</td>
1923 </tr>
1924 <tr>
1925 <td class="property_type">
1926-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
1927+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
1928 <td class="property_name"><a class="link" href="XfcePanelImage.html#XfcePanelImage--source" title="The “source” property">source</a></td>
1929 <td class="property_flags">Read / Write</td>
1930 </tr>
1931@@ -148,7 +148,7 @@
1932 <col width="200px" class="style_properties_flags">
1933 </colgroup>
1934 <tbody><tr>
1935-<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>
1936+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
1937 <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>
1938 <td class="property_flags">Read / Write</td>
1939 </tr></tbody>
1940@@ -169,10 +169,10 @@
1941 </div>
1942 <div class="refsect1">
1943 <a name="XfcePanelImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
1944-<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1945- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1946- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
1947- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>
1948+<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
1949+ <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
1950+ <span class="lineart">╰──</span> GtkObject
1951+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
1952 <span class="lineart">╰──</span> XfcePanelImage
1953 </pre>
1954 </div>
1955@@ -180,7 +180,7 @@
1956 <a name="XfcePanelImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
1957 <p>
1958 XfcePanelImage implements
1959- AtkImplementorIface and <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a>.</p>
1960+ <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>
1961 </div>
1962 <div class="refsect1">
1963 <a name="XfcePanelImage.includes"></a><h2>Includes</h2>
1964@@ -204,7 +204,7 @@
1965 <a name="XfcePanelImage.functions_details"></a><h2>Functions</h2>
1966 <div class="refsect2">
1967 <a name="xfce-panel-image-new"></a><h3>xfce_panel_image_new ()</h3>
1968-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1969+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1970 xfce_panel_image_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
1971 <p>Creates a new empty <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a> widget.</p>
1972 <div class="refsect3">
1973@@ -217,8 +217,8 @@
1974 <hr>
1975 <div class="refsect2">
1976 <a name="xfce-panel-image-new-from-pixbuf"></a><h3>xfce_panel_image_new_from_pixbuf ()</h3>
1977-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1978-xfce_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>
1979+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1980+xfce_panel_image_new_from_pixbuf (<em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
1981 <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>
1982 . <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
1983 will add its own reference rather than adopting yours. You don't
1984@@ -235,7 +235,7 @@
1985 </colgroup>
1986 <tbody><tr>
1987 <td class="parameter_name"><p>pixbuf</p></td>
1988-<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>
1989+<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>
1990 <td class="parameter_annotations"> </td>
1991 </tr></tbody>
1992 </table></div>
1993@@ -250,8 +250,8 @@
1994 <hr>
1995 <div class="refsect2">
1996 <a name="xfce-panel-image-new-from-source"></a><h3>xfce_panel_image_new_from_source ()</h3>
1997-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
1998-xfce_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>
1999+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
2000+xfce_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>
2001 <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>
2002 . <a class="link" href="XfcePanelImage.html" title="XfcePanelImage"><span class="type">XfcePanelImage</span></a>
2003 will detect if <em class="parameter"><code>source</code></em>
2004@@ -270,7 +270,7 @@
2005 <tbody><tr>
2006 <td class="parameter_name"><p>source</p></td>
2007 <td class="parameter_description"><p>source of the image. This can be an absolute path or
2008-an 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>
2009+an 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>
2010 <td class="parameter_annotations"> </td>
2011 </tr></tbody>
2012 </table></div>
2013@@ -287,7 +287,7 @@
2014 <a name="xfce-panel-image-set-from-pixbuf"></a><h3>xfce_panel_image_set_from_pixbuf ()</h3>
2015 <pre class="programlisting"><span class="returnvalue">void</span>
2016 xfce_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>,
2017- <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>
2018+ <em class="parameter"><code><span class="type">GdkPixbuf</span> *pixbuf</code></em>);</pre>
2019 <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>
2020 <div class="refsect3">
2021 <a name="id-1.4.5.11.5.5"></a><h4>Parameters</h4>
2022@@ -305,7 +305,7 @@
2023 </tr>
2024 <tr>
2025 <td class="parameter_name"><p>pixbuf</p></td>
2026-<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>
2027+<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>
2028 <td class="parameter_annotations"> </td>
2029 </tr>
2030 </tbody>
2031@@ -318,7 +318,7 @@
2032 <a name="xfce-panel-image-set-from-source"></a><h3>xfce_panel_image_set_from_source ()</h3>
2033 <pre class="programlisting"><span class="returnvalue">void</span>
2034 xfce_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>,
2035- <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>
2036+ <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>
2037 <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>
2038 <div class="refsect3">
2039 <a name="id-1.4.5.11.6.5"></a><h4>Parameters</h4>
2040@@ -337,7 +337,7 @@
2041 <tr>
2042 <td class="parameter_name"><p>source</p></td>
2043 <td class="parameter_description"><p>source of the image. This can be an absolute path or
2044-an 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>
2045+an 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>
2046 <td class="parameter_annotations"> </td>
2047 </tr>
2048 </tbody>
2049@@ -350,7 +350,7 @@
2050 <a name="xfce-panel-image-set-size"></a><h3>xfce_panel_image_set_size ()</h3>
2051 <pre class="programlisting"><span class="returnvalue">void</span>
2052 xfce_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>,
2053- <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>
2054+ <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>
2055 <p>This will force an image size, instead of looking at the allocation
2056 size, see introduction for more details. You can set a <em class="parameter"><code>size</code></em>
2057 of
2058@@ -382,7 +382,7 @@
2059 <hr>
2060 <div class="refsect2">
2061 <a name="xfce-panel-image-get-size"></a><h3>xfce_panel_image_get_size ()</h3>
2062-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2063+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2064 xfce_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>
2065 <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
2066 if no size is forced and the image is scaled to the allocation size.</p>
2067@@ -445,14 +445,14 @@
2068 <a name="XfcePanelImage.property-details"></a><h2>Property Details</h2>
2069 <div class="refsect2">
2070 <a name="XfcePanelImage--pixbuf"></a><h3>The <code class="literal">“pixbuf”</code> property</h3>
2071-<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>
2072+<pre class="programlisting"> “pixbuf” <span class="type">GdkPixbuf</span> *</pre>
2073 <p>Pixbuf image.</p>
2074 <p>Flags: Read / Write</p>
2075 </div>
2076 <hr>
2077 <div class="refsect2">
2078 <a name="XfcePanelImage--size"></a><h3>The <code class="literal">“size”</code> property</h3>
2079-<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>
2080+<pre class="programlisting"> “size” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
2081 <p>Pixel size of the image.</p>
2082 <p>Flags: Read / Write</p>
2083 <p>Allowed values: [-1,128]</p>
2084@@ -461,7 +461,7 @@
2085 <hr>
2086 <div class="refsect2">
2087 <a name="XfcePanelImage--source"></a><h3>The <code class="literal">“source”</code> property</h3>
2088-<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>
2089+<pre class="programlisting"> “source” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
2090 <p>Icon or filename.</p>
2091 <p>Flags: Read / Write</p>
2092 <p>Default value: NULL</p>
2093@@ -471,7 +471,7 @@
2094 <a name="XfcePanelImage.style-property-details"></a><h2>Style Property Details</h2>
2095 <div class="refsect2">
2096 <a name="XfcePanelImage--s-force-gtk-icon-sizes"></a><h3>The <code class="literal">“force-gtk-icon-sizes”</code> style property</h3>
2097-<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>
2098+<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>
2099 <p>Force the image to fix to GtkIconSizes.</p>
2100 <p>Flags: Read / Write</p>
2101 <p>Default value: FALSE</p>
2102@@ -480,6 +480,6 @@
2103 </div>
2104 <div class="footer">
2105 <hr>
2106- Generated by GTK-Doc V1.20</div>
2107+ Generated by GTK-Doc V1.21</div>
2108 </body>
2109 </html>
2110\ No newline at end of file
2111
2112=== modified file 'docs/references/html/XfcePanelPlugin.html'
2113--- docs/references/html/XfcePanelPlugin.html 2014-06-23 08:06:22 +0000
2114+++ docs/references/html/XfcePanelPlugin.html 2015-01-04 19:54:48 +0000
2115@@ -8,17 +8,17 @@
2116 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
2117 <link rel="prev" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
2118 <link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
2119-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
2120+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
2121 <link rel="stylesheet" href="style.css" type="text/css">
2122 </head>
2123 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
2124-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
2125+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
2126 <td width="100%" align="left" class="shortcuts">
2127-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
2128- <a href="#XfcePanelPlugin.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
2129- <a href="#XfcePanelPlugin.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span> 
2130- <a href="#XfcePanelPlugin.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span> 
2131- <a href="#XfcePanelPlugin.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span> 
2132+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
2133+ <a href="#XfcePanelPlugin.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
2134+ <a href="#XfcePanelPlugin.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces">  <span class="dim">|</span> 
2135+ <a href="#XfcePanelPlugin.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties">  <span class="dim">|</span> 
2136+ <a href="#XfcePanelPlugin.properties" class="shortcut">Properties</a></span><span id="nav_signals">  <span class="dim">|</span> 
2137 <a href="#XfcePanelPlugin.signals" class="shortcut">Signals</a></span>
2138 </td>
2139 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
2140@@ -44,21 +44,21 @@
2141 </colgroup>
2142 <tbody>
2143 <tr>
2144-<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> *
2145+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2146 </td>
2147 <td class="function_name">
2148 <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>
2149 </td>
2150 </tr>
2151 <tr>
2152-<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> *
2153+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2154 </td>
2155 <td class="function_name">
2156 <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>
2157 </td>
2158 </tr>
2159 <tr>
2160-<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> *
2161+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2162 </td>
2163 <td class="function_name">
2164 <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>
2165@@ -66,21 +66,21 @@
2166 </tr>
2167 <tr>
2168 <td class="function_type">
2169-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2170+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2171 </td>
2172 <td class="function_name">
2173 <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>
2174 </td>
2175 </tr>
2176 <tr>
2177-<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> *
2178+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2179 </td>
2180 <td class="function_name">
2181 <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>
2182 </td>
2183 </tr>
2184 <tr>
2185-<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 *
2186+<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 *
2187 </td>
2188 <td class="function_name">
2189 <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>
2190@@ -88,7 +88,7 @@
2191 </tr>
2192 <tr>
2193 <td class="function_type">
2194-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2195+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2196 </td>
2197 <td class="function_name">
2198 <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>
2199@@ -96,7 +96,7 @@
2200 </tr>
2201 <tr>
2202 <td class="function_type">
2203-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2204+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2205 </td>
2206 <td class="function_name">
2207 <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>
2208@@ -112,7 +112,7 @@
2209 </tr>
2210 <tr>
2211 <td class="function_type">
2212-<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
2213+<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
2214 </td>
2215 <td class="function_name">
2216 <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>
2217@@ -128,7 +128,7 @@
2218 </tr>
2219 <tr>
2220 <td class="function_type">
2221-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2222+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2223 </td>
2224 <td class="function_name">
2225 <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>
2226@@ -208,7 +208,7 @@
2227 </tr>
2228 <tr>
2229 <td class="function_type">
2230-<a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
2231+<a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
2232 </td>
2233 <td class="function_name">
2234 <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>
2235@@ -248,7 +248,7 @@
2236 </tr>
2237 <tr>
2238 <td class="function_type">
2239-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2240+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2241 </td>
2242 <td class="function_name">
2243 <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>
2244@@ -256,7 +256,7 @@
2245 </tr>
2246 <tr>
2247 <td class="function_type">
2248-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2249+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2250 </td>
2251 <td class="function_name">
2252 <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>
2253@@ -287,24 +287,24 @@
2254 </colgroup>
2255 <tbody>
2256 <tr>
2257-<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>
2258+<td class="property_type"><a href="https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></td>
2259 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--arguments" title="The “arguments” property">arguments</a></td>
2260 <td class="property_flags">Read / Write / Construct Only</td>
2261 </tr>
2262 <tr>
2263 <td class="property_type">
2264-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2265+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2266 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--comment" title="The “comment” property">comment</a></td>
2267 <td class="property_flags">Read / Write / Construct Only</td>
2268 </tr>
2269 <tr>
2270 <td class="property_type">
2271-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2272+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2273 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--display-name" title="The “display-name” property">display-name</a></td>
2274 <td class="property_flags">Read / Write / Construct Only</td>
2275 </tr>
2276 <tr>
2277-<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>
2278+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
2279 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--expand" title="The “expand” property">expand</a></td>
2280 <td class="property_flags">Read / Write</td>
2281 </tr>
2282@@ -315,17 +315,17 @@
2283 </tr>
2284 <tr>
2285 <td class="property_type">
2286-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2287+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
2288 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--name" title="The “name” property">name</a></td>
2289 <td class="property_flags">Read / Write / Construct Only</td>
2290 </tr>
2291 <tr>
2292-<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>
2293+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
2294 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--nrows" title="The “nrows” property">nrows</a></td>
2295 <td class="property_flags">Read</td>
2296 </tr>
2297 <tr>
2298-<td class="property_type"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></td>
2299+<td class="property_type"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></td>
2300 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--orientation" title="The “orientation” property">orientation</a></td>
2301 <td class="property_flags">Read</td>
2302 </tr>
2303@@ -335,22 +335,22 @@
2304 <td class="property_flags">Read</td>
2305 </tr>
2306 <tr>
2307-<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>
2308+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
2309 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--shrink" title="The “shrink” property">shrink</a></td>
2310 <td class="property_flags">Read / Write</td>
2311 </tr>
2312 <tr>
2313-<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>
2314+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
2315 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--size" title="The “size” property">size</a></td>
2316 <td class="property_flags">Read</td>
2317 </tr>
2318 <tr>
2319-<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>
2320+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
2321 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--small" title="The “small” property">small</a></td>
2322 <td class="property_flags">Read / Write</td>
2323 </tr>
2324 <tr>
2325-<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>
2326+<td class="property_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
2327 <td class="property_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin--unique-id" title="The “unique-id” property">unique-id</a></td>
2328 <td class="property_flags">Read / Write / Construct Only</td>
2329 </tr>
2330@@ -397,7 +397,7 @@
2331 <td class="signal_flags">Run Last</td>
2332 </tr>
2333 <tr>
2334-<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>
2335+<td class="signal_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
2336 <td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-remote-event" title="The “remote-event” signal">remote-event</a></td>
2337 <td class="signal_flags">Run Last</td>
2338 </tr>
2339@@ -417,7 +417,7 @@
2340 <td class="signal_flags">Run Last</td>
2341 </tr>
2342 <tr>
2343-<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>
2344+<td class="signal_type"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
2345 <td class="signal_name"><a class="link" href="XfcePanelPlugin.html#XfcePanelPlugin-size-changed" title="The “size-changed” signal">size-changed</a></td>
2346 <td class="signal_flags">Run Last</td>
2347 </tr>
2348@@ -445,13 +445,13 @@
2349 </div>
2350 <div class="refsect1">
2351 <a name="XfcePanelPlugin.object-hierarchy"></a><h2>Object Hierarchy</h2>
2352-<pre class="screen"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
2353- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
2354- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkObject.html">GtkObject</a>
2355- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkWidget.html">GtkWidget</a>
2356- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkContainer.html">GtkContainer</a>
2357- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkBin.html">GtkBin</a>
2358- <span class="lineart">╰──</span> <a href="http://library.gnome.org/devel/gtk3/GtkEventBox.html">GtkEventBox</a>
2359+<pre class="screen"> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
2360+ <span class="lineart">╰──</span> <a href="https://developer.gnome.org/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
2361+ <span class="lineart">╰──</span> GtkObject
2362+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkWidget.html">GtkWidget</a>
2363+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkContainer.html">GtkContainer</a>
2364+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkBin.html">GtkBin</a>
2365+ <span class="lineart">╰──</span> <a href="http://developer.gnome.org/gtk2/GtkEventBox.html">GtkEventBox</a>
2366 <span class="lineart">╰──</span> XfcePanelPlugin
2367 </pre>
2368 </div>
2369@@ -459,7 +459,7 @@
2370 <a name="XfcePanelPlugin.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
2371 <p>
2372 XfcePanelPlugin implements
2373- AtkImplementorIface, <a href="http://library.gnome.org/devel/gtk3/GtkBuildable.html">GtkBuildable</a> and XfcePanelPluginProvider.</p>
2374+ <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>
2375 </div>
2376 <div class="refsect1">
2377 <a name="XfcePanelPlugin.includes"></a><h2>Includes</h2>
2378@@ -475,7 +475,7 @@
2379 <a name="XfcePanelPlugin.functions_details"></a><h2>Functions</h2>
2380 <div class="refsect2">
2381 <a name="xfce-panel-plugin-get-name"></a><h3>xfce_panel_plugin_get_name ()</h3>
2382-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2383+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2384 xfce_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>
2385 <p>The internal name of the panel plugin.</p>
2386 <div class="refsect3">
2387@@ -502,7 +502,7 @@
2388 <hr>
2389 <div class="refsect2">
2390 <a name="xfce-panel-plugin-get-display-name"></a><h3>xfce_panel_plugin_get_display_name ()</h3>
2391-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2392+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2393 xfce_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>
2394 <p>This returns the translated name of the plugin set in the .desktop
2395 file of the plugin.</p>
2396@@ -530,7 +530,7 @@
2397 <hr>
2398 <div class="refsect2">
2399 <a name="xfce-panel-plugin-get-comment"></a><h3>xfce_panel_plugin_get_comment ()</h3>
2400-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2401+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2402 xfce_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>
2403 <p>This returns the translated comment of the plugin set in
2404 the .desktop file of the plugin.</p>
2405@@ -559,7 +559,7 @@
2406 <hr>
2407 <div class="refsect2">
2408 <a name="xfce-panel-plugin-get-unique-id"></a><h3>xfce_panel_plugin_get_unique_id ()</h3>
2409-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2410+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2411 xfce_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>
2412 <p>The internal unique id of the plugin. Each plugin in the panel has
2413 a unique number that is for example used for the config file name
2414@@ -589,7 +589,7 @@
2415 <hr>
2416 <div class="refsect2">
2417 <a name="xfce-panel-plugin-get-property-base"></a><h3>xfce_panel_plugin_get_property_base ()</h3>
2418-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2419+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2420 xfce_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>
2421 <p>The property base for this plugin in the xfce4-panel XfconfChannel,
2422 this name is something like /plugins/plugin-1.</p>
2423@@ -620,10 +620,10 @@
2424 <hr>
2425 <div class="refsect2">
2426 <a name="xfce-panel-plugin-get-arguments"></a><h3>xfce_panel_plugin_get_arguments ()</h3>
2427-<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 *
2428+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * const *
2429 xfce_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>
2430 <p>Argument vector passed to the plugin when it was added. Most of the
2431-time 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 contain
2432+time 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
2433 a list of filenames when the user added the plugin with</p>
2434 <p>xfce4-panel --add=launcher *.desktop</p>
2435 <p>see the code of the launcher plugin how to use this.</p>
2436@@ -653,7 +653,7 @@
2437 <hr>
2438 <div class="refsect2">
2439 <a name="xfce-panel-plugin-get-size"></a><h3>xfce_panel_plugin_get_size ()</h3>
2440-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2441+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
2442 xfce_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>
2443 <p>The size of the panel in which the plugin is embedded.</p>
2444 <div class="refsect3">
2445@@ -680,7 +680,7 @@
2446 <hr>
2447 <div class="refsect2">
2448 <a name="xfce-panel-plugin-get-expand"></a><h3>xfce_panel_plugin_get_expand ()</h3>
2449-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2450+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2451 xfce_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>
2452 <p>Whether the plugin is expanded or not. This set by the plugin using
2453 <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>
2454@@ -701,8 +701,8 @@
2455 </div>
2456 <div class="refsect3">
2457 <a name="id-1.3.3.11.9.6"></a><h4>Returns</h4>
2458-<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,
2459-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
2460+<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,
2461+<a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</p>
2462 <p></p>
2463 </div>
2464 </div>
2465@@ -711,7 +711,7 @@
2466 <a name="xfce-panel-plugin-set-expand"></a><h3>xfce_panel_plugin_set_expand ()</h3>
2467 <pre class="programlisting"><span class="returnvalue">void</span>
2468 xfce_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>,
2469- <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>
2470+ <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>
2471 <p>Wether the plugin should expand of not</p>
2472 <div class="refsect3">
2473 <a name="id-1.3.3.11.10.5"></a><h4>Parameters</h4>
2474@@ -739,7 +739,7 @@
2475 <hr>
2476 <div class="refsect2">
2477 <a name="xfce-panel-plugin-get-orientation"></a><h3>xfce_panel_plugin_get_orientation ()</h3>
2478-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
2479+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="returnvalue">GtkOrientation</span></a>
2480 xfce_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>
2481 <p>The orientation of the panel in which the plugin is embedded.</p>
2482 <div class="refsect3">
2483@@ -759,7 +759,7 @@
2484 </div>
2485 <div class="refsect3">
2486 <a name="id-1.3.3.11.11.6"></a><h4>Returns</h4>
2487-<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>
2488+<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>
2489 <p></p>
2490 </div>
2491 </div>
2492@@ -793,7 +793,7 @@
2493 <hr>
2494 <div class="refsect2">
2495 <a name="xfce-panel-plugin-get-locked"></a><h3>xfce_panel_plugin_get_locked ()</h3>
2496-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2497+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2498 xfce_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>
2499 <p>Whether the plugin is locked (not allowing customization). This
2500 is emitted through the panel based on the Xfconf locking of the
2501@@ -820,8 +820,8 @@
2502 </div>
2503 <div class="refsect3">
2504 <a name="id-1.3.3.11.13.7"></a><h4>Returns</h4>
2505-<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,
2506-<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>
2507+<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,
2508+<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>
2509 <p></p>
2510 </div>
2511 <p class="since">Since 4.8</p>
2512@@ -831,7 +831,7 @@
2513 <a name="xfce-panel-plugin-take-window"></a><h3>xfce_panel_plugin_take_window ()</h3>
2514 <pre class="programlisting"><span class="returnvalue">void</span>
2515 xfce_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>,
2516- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);</pre>
2517+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a> *window</code></em>);</pre>
2518 <p>Connect a dialog to a plugin. When the <em class="parameter"><code>plugin</code></em>
2519 is closed, it will
2520 destroy the <em class="parameter"><code>window</code></em>
2521@@ -852,7 +852,7 @@
2522 </tr>
2523 <tr>
2524 <td class="parameter_name"><p>window</p></td>
2525-<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkWindow.html"><span class="type">GtkWindow</span></a>.</p></td>
2526+<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkWindow.html"><span class="type">GtkWindow</span></a>.</p></td>
2527 <td class="parameter_annotations"> </td>
2528 </tr>
2529 </tbody>
2530@@ -865,7 +865,7 @@
2531 <a name="xfce-panel-plugin-add-action-widget"></a><h3>xfce_panel_plugin_add_action_widget ()</h3>
2532 <pre class="programlisting"><span class="returnvalue">void</span>
2533 xfce_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>,
2534- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
2535+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
2536 <p>Attach the plugin menu to this widget. Plugin writers should call this
2537 for every widget that can receive mouse events. If you forget to call this
2538 the plugin will not have a right-click menu and the user won't be able to
2539@@ -886,7 +886,7 @@
2540 </tr>
2541 <tr>
2542 <td class="parameter_name"><p>widget</p></td>
2543-<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>
2544+<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>
2545 <td class="parameter_annotations"> </td>
2546 </tr>
2547 </tbody>
2548@@ -898,7 +898,7 @@
2549 <a name="xfce-panel-plugin-menu-insert-item"></a><h3>xfce_panel_plugin_menu_insert_item ()</h3>
2550 <pre class="programlisting"><span class="returnvalue">void</span>
2551 xfce_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>,
2552- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);</pre>
2553+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a> *item</code></em>);</pre>
2554 <p>Insert a custom menu item to the plugin's right click menu. This item
2555 is packed below the "Move" menu item.</p>
2556 <div class="refsect3">
2557@@ -917,7 +917,7 @@
2558 </tr>
2559 <tr>
2560 <td class="parameter_name"><p>item</p></td>
2561-<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a>.</p></td>
2562+<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkMenuItem.html"><span class="type">GtkMenuItem</span></a>.</p></td>
2563 <td class="parameter_annotations"> </td>
2564 </tr>
2565 </tbody>
2566@@ -1048,13 +1048,13 @@
2567 <a name="xfce-panel-plugin-register-menu"></a><h3>xfce_panel_plugin_register_menu ()</h3>
2568 <pre class="programlisting"><span class="returnvalue">void</span>
2569 xfce_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>,
2570- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
2571+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a> *menu</code></em>);</pre>
2572 <p>Register a menu that is about to popup. This will make sure the panel
2573 will properly handle its autohide behaviour. You have to call this
2574 function every time the menu is opened (e.g. using <code class="function">gtk_popup_menu()</code>).</p>
2575 <p>If you want to open the menu aligned to the side of the panel (and the
2576 plugin), 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
2577-<a href="http://library.gnome.org/devel/gtk3/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>. This callback function will take care of calling
2578+<a href="http://developer.gnome.org/gtk2/GtkMenu.html#GtkMenuPositionFunc"><span class="type">GtkMenuPositionFunc</span></a>. This callback function will take care of calling
2579 <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>
2580 <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>
2581 <div class="refsect3">
2582@@ -1073,7 +1073,7 @@
2583 </tr>
2584 <tr>
2585 <td class="parameter_name"><p>menu</p></td>
2586-<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>
2587+<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>
2588 <td class="parameter_annotations"> </td>
2589 </tr>
2590 </tbody>
2591@@ -1083,9 +1083,9 @@
2592 <hr>
2593 <div class="refsect2">
2594 <a name="xfce-panel-plugin-arrow-type"></a><h3>xfce_panel_plugin_arrow_type ()</h3>
2595-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
2596+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="returnvalue">GtkArrowType</span></a>
2597 xfce_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>
2598-<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 uses
2599+<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
2600 <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>
2601 <div class="refsect3">
2602 <a name="id-1.3.3.11.23.5"></a><h4>Parameters</h4>
2603@@ -1104,7 +1104,7 @@
2604 </div>
2605 <div class="refsect3">
2606 <a name="id-1.3.3.11.23.6"></a><h4>Returns</h4>
2607-<p> the <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> to use.</p>
2608+<p> the <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkArrowType"><span class="type">GtkArrowType</span></a> to use.</p>
2609 <p></p>
2610 </div>
2611 </div>
2612@@ -1113,10 +1113,10 @@
2613 <a name="xfce-panel-plugin-position-widget"></a><h3>xfce_panel_plugin_position_widget ()</h3>
2614 <pre class="programlisting"><span class="returnvalue">void</span>
2615 xfce_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>,
2616- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,
2617- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
2618- <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>,
2619- <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>
2620+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *menu_widget</code></em>,
2621+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *attach_widget</code></em>,
2622+ <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>,
2623+ <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>
2624 <p>The menu widget is positioned relative to <em class="parameter"><code>attach_widget</code></em>
2625 .
2626 If <em class="parameter"><code>attach_widget</code></em>
2627@@ -1124,8 +1124,8 @@
2628 relative to <em class="parameter"><code>panel_plugin</code></em>
2629 .</p>
2630 <p>This function is intended for custom menu widgets.
2631-For 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>
2632-instead (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>
2633+For 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>
2634+instead (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>
2635 <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>
2636 <div class="refsect3">
2637 <a name="id-1.3.3.11.24.7"></a><h4>Parameters</h4>
2638@@ -1143,12 +1143,12 @@
2639 </tr>
2640 <tr>
2641 <td class="parameter_name"><p>menu_widget</p></td>
2642-<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>
2643+<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>
2644 <td class="parameter_annotations"> </td>
2645 </tr>
2646 <tr>
2647 <td class="parameter_name"><p>attach_widget</p></td>
2648-<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>
2649+<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>
2650 <td class="parameter_annotations"> </td>
2651 </tr>
2652 <tr>
2653@@ -1169,17 +1169,17 @@
2654 <div class="refsect2">
2655 <a name="xfce-panel-plugin-position-menu"></a><h3>xfce_panel_plugin_position_menu ()</h3>
2656 <pre class="programlisting"><span class="returnvalue">void</span>
2657-xfce_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>,
2658- <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>,
2659- <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>,
2660- <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>,
2661- <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>
2662-<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>.
2663+xfce_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>,
2664+ <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>,
2665+ <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>,
2666+ <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>,
2667+ <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>
2668+<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>.
2669 As data argument it needs an <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>.</p>
2670 <p>The menu is normally positioned relative to <em class="parameter"><code>panel_plugin</code></em>
2671 . If you want the
2672 menu to be positioned relative to another widget, you can use
2673-<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>
2674+<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>
2675 <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
2676 <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>
2677 <div class="example">
2678@@ -1198,7 +1198,7 @@
2679 </div>
2680 <br class="example-break"><p>For a custom widget that will be used as a popup menu, use
2681 <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>
2682-<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>
2683+<p>See also: <a href="http://developer.gnome.org/gtk2/GtkMenu.html#gtk-menu-popup"><code class="function">gtk_menu_popup()</code></a>.</p>
2684 <div class="refsect3">
2685 <a name="id-1.3.3.11.25.10"></a><h4>Parameters</h4>
2686 <div class="informaltable"><table width="100%" border="0">
2687@@ -1210,7 +1210,7 @@
2688 <tbody>
2689 <tr>
2690 <td class="parameter_name"><p>menu</p></td>
2691-<td class="parameter_description"><p>a <a href="http://library.gnome.org/devel/gtk3/GtkMenu.html"><span class="type">GtkMenu</span></a>.</p></td>
2692+<td class="parameter_description"><p>a <a href="http://developer.gnome.org/gtk2/GtkMenu.html"><span class="type">GtkMenu</span></a>.</p></td>
2693 <td class="parameter_annotations"> </td>
2694 </tr>
2695 <tr>
2696@@ -1225,7 +1225,7 @@
2697 </tr>
2698 <tr>
2699 <td class="parameter_name"><p>push_in</p></td>
2700-<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>
2701+<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>
2702 <td class="parameter_annotations"> </td>
2703 </tr>
2704 <tr>
2705@@ -1242,7 +1242,7 @@
2706 <a name="xfce-panel-plugin-focus-widget"></a><h3>xfce_panel_plugin_focus_widget ()</h3>
2707 <pre class="programlisting"><span class="returnvalue">void</span>
2708 xfce_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>,
2709- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
2710+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
2711 <p>Grab the focus on <em class="parameter"><code>widget</code></em>
2712 . Asks the panel to allow focus on its items
2713 and set the focus to the requested widget.</p>
2714@@ -1262,7 +1262,7 @@
2715 </tr>
2716 <tr>
2717 <td class="parameter_name"><p>widget</p></td>
2718-<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>
2719+<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>
2720 <td class="parameter_annotations"> </td>
2721 </tr>
2722 </tbody>
2723@@ -1274,7 +1274,7 @@
2724 <a name="xfce-panel-plugin-block-autohide"></a><h3>xfce_panel_plugin_block_autohide ()</h3>
2725 <pre class="programlisting"><span class="returnvalue">void</span>
2726 xfce_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>,
2727- <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>
2728+ <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>
2729 <p>Wether this plugin blocks the autohide functality of the panel. Use
2730 this when you 'popup' something that is visually attached to the
2731 plugin at it will look weird for a user if the panel will hide while
2732@@ -1307,7 +1307,7 @@
2733 <hr>
2734 <div class="refsect2">
2735 <a name="xfce-panel-plugin-lookup-rc-file"></a><h3>xfce_panel_plugin_lookup_rc_file ()</h3>
2736-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2737+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2738 xfce_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>
2739 <p>Looks for the plugin resource file. This should be used to get the
2740 plugin read location of the config file. You should only use the
2741@@ -1331,17 +1331,17 @@
2742 </div>
2743 <div class="refsect3">
2744 <a name="id-1.3.3.11.28.7"></a><h4>Returns</h4>
2745-<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.
2746-The 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>
2747+<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.
2748+The 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>
2749 <p></p>
2750 </div>
2751 </div>
2752 <hr>
2753 <div class="refsect2">
2754 <a name="xfce-panel-plugin-save-location"></a><h3>xfce_panel_plugin_save_location ()</h3>
2755-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2756+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
2757 xfce_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>,
2758- <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>
2759+ <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>
2760 <p>Returns the path that can be used to store configuration information.
2761 Don't use this function if you want to read from the config file, but
2762 use <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>
2763@@ -1370,8 +1370,8 @@
2764 </div>
2765 <div class="refsect3">
2766 <a name="id-1.3.3.11.29.7"></a><h4>Returns</h4>
2767-<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.
2768-The 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>
2769+<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.
2770+The 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>
2771 <p></p>
2772 </div>
2773 </div>
2774@@ -1559,9 +1559,9 @@
2775 <a name="XfcePanelPlugin.property-details"></a><h2>Property Details</h2>
2776 <div class="refsect2">
2777 <a name="XfcePanelPlugin--arguments"></a><h3>The <code class="literal">“arguments”</code> property</h3>
2778-<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>
2779+<pre class="programlisting"> “arguments” <a href="https://developer.gnome.org/gobject/unstable/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a></pre>
2780 <p>The arguments the plugin was started with. If the plugin was not
2781-started 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 can
2782+started 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
2783 use it to read the arguments array, but
2784 <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>
2785 <p>Flags: Read / Write / Construct Only</p>
2786@@ -1569,7 +1569,7 @@
2787 <hr>
2788 <div class="refsect2">
2789 <a name="XfcePanelPlugin--comment"></a><h3>The <code class="literal">“comment”</code> property</h3>
2790-<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>
2791+<pre class="programlisting"> “comment” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
2792 <p>The translated description of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. This property is set
2793 during plugin construction and can't be set twice. Plugin writer can use
2794 it 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>
2795@@ -1581,7 +1581,7 @@
2796 <hr>
2797 <div class="refsect2">
2798 <a name="XfcePanelPlugin--display-name"></a><h3>The <code class="literal">“display-name”</code> property</h3>
2799-<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>
2800+<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>
2801 <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
2802 during plugin construction and can't be set twice. Plugin writer can use
2803 it 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>
2804@@ -1592,7 +1592,7 @@
2805 <hr>
2806 <div class="refsect2">
2807 <a name="XfcePanelPlugin--expand"></a><h3>The <code class="literal">“expand”</code> property</h3>
2808-<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>
2809+<pre class="programlisting"> “expand” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2810 <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
2811 to 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>
2812 is recommended.</p>
2813@@ -1611,7 +1611,7 @@
2814 <hr>
2815 <div class="refsect2">
2816 <a name="XfcePanelPlugin--name"></a><h3>The <code class="literal">“name”</code> property</h3>
2817-<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>
2818+<pre class="programlisting"> “name” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
2819 <p>The internal, unstranslated, name of the <a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a>. Plugin
2820 writer can use it to read the plugin name, but
2821 <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
2822@@ -1622,7 +1622,7 @@
2823 <hr>
2824 <div class="refsect2">
2825 <a name="XfcePanelPlugin--nrows"></a><h3>The <code class="literal">“nrows”</code> property</h3>
2826-<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>
2827+<pre class="programlisting"> “nrows” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
2828 <p>Number of rows the plugin is embedded on.</p>
2829 <p>Flags: Read</p>
2830 <p>Allowed values: [1,6]</p>
2831@@ -1632,8 +1632,8 @@
2832 <hr>
2833 <div class="refsect2">
2834 <a name="XfcePanelPlugin--orientation"></a><h3>The <code class="literal">“orientation”</code> property</h3>
2835-<pre class="programlisting"> “orientation” <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></pre>
2836-<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 the
2837+<pre class="programlisting"> “orientation” <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a></pre>
2838+<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
2839 plugin 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>
2840 <p>Flags: Read</p>
2841 <p>Default value: GTK_ORIENTATION_HORIZONTAL</p>
2842@@ -1651,7 +1651,7 @@
2843 <hr>
2844 <div class="refsect2">
2845 <a name="XfcePanelPlugin--shrink"></a><h3>The <code class="literal">“shrink”</code> property</h3>
2846-<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>
2847+<pre class="programlisting"> “shrink” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2848 <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.
2849 Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_shrink()</code>
2850 is recommended.</p>
2851@@ -1662,7 +1662,7 @@
2852 <hr>
2853 <div class="refsect2">
2854 <a name="XfcePanelPlugin--size"></a><h3>The <code class="literal">“size”</code> property</h3>
2855-<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>
2856+<pre class="programlisting"> “size” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
2857 <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
2858 plugin 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>
2859 <p>Flags: Read</p>
2860@@ -1672,7 +1672,7 @@
2861 <hr>
2862 <div class="refsect2">
2863 <a name="XfcePanelPlugin--small"></a><h3>The <code class="literal">“small”</code> property</h3>
2864-<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>
2865+<pre class="programlisting"> “small” <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
2866 <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.
2867 Plugin writes can use it to read or set this property, but <code class="function">xfce_panel_plugin_set_small()</code>
2868 is recommended.</p>
2869@@ -1683,7 +1683,7 @@
2870 <hr>
2871 <div class="refsect2">
2872 <a name="XfcePanelPlugin--unique-id"></a><h3>The <code class="literal">“unique-id”</code> property</h3>
2873-<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>
2874+<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>
2875 <p>Unique plugin ID.</p>
2876 <p>Flags: Read / Write / Construct Only</p>
2877 <p>Allowed values: &gt;= -1</p>
2878@@ -1696,7 +1696,7 @@
2879 <a name="XfcePanelPlugin-about"></a><h3>The <code class="literal">“about”</code> signal</h3>
2880 <pre class="programlisting"><span class="returnvalue">void</span>
2881 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2882- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2883+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2884 <p>This signal is emmitted when the About entry in the right-click
2885 menu is clicked. Plugin writes can use it to show information
2886 about the plugin and display credits of the developers, translators
2887@@ -1731,7 +1731,7 @@
2888 <a name="XfcePanelPlugin-configure-plugin"></a><h3>The <code class="literal">“configure-plugin”</code> signal</h3>
2889 <pre class="programlisting"><span class="returnvalue">void</span>
2890 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2891- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2892+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2893 <p>This signal is emmitted when the Properties entry in the right-click
2894 menu is clicked. Plugin writes can use this signal to open a
2895 plugin settings dialog.</p>
2896@@ -1766,7 +1766,7 @@
2897 <a name="XfcePanelPlugin-free-data"></a><h3>The <code class="literal">“free-data”</code> signal</h3>
2898 <pre class="programlisting"><span class="returnvalue">void</span>
2899 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2900- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2901+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2902 <p>This signal is emmitted when the plugin is closing. Plugin
2903 writers should use this signal to free any allocated resources.</p>
2904 <p>See also <a class="link" href="XfceHVBox.html" title="XfceHVBox"><span class="type">XfceHVBox</span></a>.</p>
2905@@ -1800,7 +1800,7 @@
2906 <pre class="programlisting"><span class="returnvalue">void</span>
2907 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2908 <span class="type">XfcePanelPluginMode</span> mode,
2909- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2910+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2911 <p>This signal is emmitted whenever the mode of the panel
2912 the <em class="parameter"><code>plugin</code></em>
2913 is on changes.</p>
2914@@ -1839,8 +1839,8 @@
2915 <a name="XfcePanelPlugin-nrows-changed"></a><h3>The <code class="literal">“nrows-changed”</code> signal</h3>
2916 <pre class="programlisting"><span class="returnvalue">void</span>
2917 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2918- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> rows,
2919- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2920+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> rows,
2921+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2922 <p>This signal is emmitted whenever the nrows of the panel
2923 the <em class="parameter"><code>plugin</code></em>
2924 is on changes.</p>
2925@@ -1879,8 +1879,8 @@
2926 <a name="XfcePanelPlugin-orientation-changed"></a><h3>The <code class="literal">“orientation-changed”</code> signal</h3>
2927 <pre class="programlisting"><span class="returnvalue">void</span>
2928 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2929- <a href="http://library.gnome.org/devel/gtk3/gtk2-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,
2930- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2931+ <a href="http://developer.gnome.org/gtk2/gtk3-Standard-Enumerations.html#GtkOrientation"><span class="type">GtkOrientation</span></a> orientation,
2932+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2933 <p>This signal is emmitted whenever the orientation of the panel
2934 the <em class="parameter"><code>plugin</code></em>
2935 is on changes. Plugins writers can for example use
2936@@ -1902,7 +1902,7 @@
2937 </tr>
2938 <tr>
2939 <td class="parameter_name"><p>orientation</p></td>
2940-<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>
2941+<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>
2942 <td class="parameter_annotations"> </td>
2943 </tr>
2944 <tr>
2945@@ -1918,11 +1918,11 @@
2946 <hr>
2947 <div class="refsect2">
2948 <a name="XfcePanelPlugin-remote-event"></a><h3>The <code class="literal">“remote-event”</code> signal</h3>
2949-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2950+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
2951 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2952- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name,
2953- <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value,
2954- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2955+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name,
2956+ <a href="https://developer.gnome.org/gobject/unstable/gobject-Generic-values.html#GValue"><span class="type">GValue</span></a> *value,
2957+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2958 <p>This signal is emmitted by the user by running
2959 xfce4-panel --plugin-event=plugin-name:name:type:value. It can be
2960 used for remote communication, like for example to popup a menu.</p>
2961@@ -1960,7 +1960,7 @@
2962 </div>
2963 <div class="refsect3">
2964 <a name="id-1.3.3.14.8.6"></a><h4>Returns</h4>
2965-<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>
2966+<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>
2967 to send the signal also to other plugins with the same
2968 name.</p>
2969 <p></p>
2970@@ -1972,7 +1972,7 @@
2971 <a name="XfcePanelPlugin-removed"></a><h3>The <code class="literal">“removed”</code> signal</h3>
2972 <pre class="programlisting"><span class="returnvalue">void</span>
2973 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2974- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2975+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2976 <p>This signal is emmitted when the plugin is permanently removed from
2977 the panel configuration by the user. Developers can use this signal
2978 to cleanup custom setting locations that for example store passwords.</p>
2979@@ -2011,7 +2011,7 @@
2980 <a name="XfcePanelPlugin-save"></a><h3>The <code class="literal">“save”</code> signal</h3>
2981 <pre class="programlisting"><span class="returnvalue">void</span>
2982 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2983- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2984+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2985 <p>This signal is emitted when the plugin should save it's
2986 configuration. The signal is always emmitted before the plugin
2987 closes (before the "free-data" signal) and also once in 10
2988@@ -2047,7 +2047,7 @@
2989 <pre class="programlisting"><span class="returnvalue">void</span>
2990 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
2991 <a class="link" href="libxfce4panel-Standard-Enumerations.html#XfceScreenPosition" title="enum XfceScreenPosition"><span class="type">XfceScreenPosition</span></a> position,
2992- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2993+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
2994 <p>This signal is emmitted whenever the screen position of the panel
2995 the <em class="parameter"><code>plugin</code></em>
2996 is on changes. Plugins writers can for example use
2997@@ -2084,15 +2084,15 @@
2998 <hr>
2999 <div class="refsect2">
3000 <a name="XfcePanelPlugin-size-changed"></a><h3>The <code class="literal">“size-changed”</code> signal</h3>
3001-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3002+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3003 user_function (<a class="link" href="XfcePanelPlugin.html" title="XfcePanelPlugin"><span class="type">XfcePanelPlugin</span></a> *plugin,
3004- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size,
3005- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3006+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size,
3007+ <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
3008 <p>This signal is emmitted whenever the size of the panel
3009 the <em class="parameter"><code>plugin</code></em>
3010 is on changes. Plugins writers can for example use
3011 this signal to update their icon size.</p>
3012-<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 force
3013+<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
3014 a square size to the plugin. If you want non-square plugins and you
3015 don't need this signal you can use something like this:</p>
3016 <p>g_signal_connect (plugin, "size-changed", G_CALLBACK (gtk_true), NULL);</p>
3017@@ -2129,6 +2129,6 @@
3018 </div>
3019 <div class="footer">
3020 <hr>
3021- Generated by GTK-Doc V1.20</div>
3022+ Generated by GTK-Doc V1.21</div>
3023 </body>
3024 </html>
3025\ No newline at end of file
3026
3027=== modified file 'docs/references/html/api-index-4-6.html'
3028--- docs/references/html/api-index-4-6.html 2014-06-23 08:06:22 +0000
3029+++ docs/references/html/api-index-4-6.html 2015-01-04 19:54:48 +0000
3030@@ -7,11 +7,11 @@
3031 <link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
3032 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3033 <link rel="prev" href="api-index-4-8.html" title="Index of new symbols in 4.8">
3034-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3035+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3036 <link rel="stylesheet" href="style.css" type="text/css">
3037 </head>
3038 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3039-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3040+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3041 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxP">P</a></span></td>
3042 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3043 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
3044@@ -33,6 +33,6 @@
3045 </div>
3046 <div class="footer">
3047 <hr>
3048- Generated by GTK-Doc V1.20</div>
3049+ Generated by GTK-Doc V1.21</div>
3050 </body>
3051 </html>
3052\ No newline at end of file
3053
3054=== modified file 'docs/references/html/api-index-4-8.html'
3055--- docs/references/html/api-index-4-8.html 2014-06-23 08:06:22 +0000
3056+++ docs/references/html/api-index-4-8.html 2015-01-04 19:54:48 +0000
3057@@ -8,11 +8,11 @@
3058 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3059 <link rel="prev" href="api-index-deprecated.html" title="Index of deprecated symbols">
3060 <link rel="next" href="api-index-4-6.html" title="Index of new symbols in 4.6">
3061-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3062+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3063 <link rel="stylesheet" href="style.css" type="text/css">
3064 </head>
3065 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3066-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3067+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3068 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
3069  <span class="dim">|</span> 
3070 <a class="shortcut" href="#idxL">L</a>
3071@@ -184,6 +184,6 @@
3072 </div>
3073 <div class="footer">
3074 <hr>
3075- Generated by GTK-Doc V1.20</div>
3076+ Generated by GTK-Doc V1.21</div>
3077 </body>
3078 </html>
3079\ No newline at end of file
3080
3081=== modified file 'docs/references/html/api-index-deprecated.html'
3082--- docs/references/html/api-index-deprecated.html 2014-06-23 08:06:22 +0000
3083+++ docs/references/html/api-index-deprecated.html 2015-01-04 19:54:48 +0000
3084@@ -8,11 +8,11 @@
3085 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3086 <link rel="prev" href="api-index-full.html" title="Index of all symbols">
3087 <link rel="next" href="api-index-4-8.html" title="Index of new symbols in 4.8">
3088-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3089+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3090 <link rel="stylesheet" href="style.css" type="text/css">
3091 </head>
3092 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3093-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3094+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3095 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
3096  <span class="dim">|</span> 
3097 <a class="shortcut" href="#idxC">C</a>
3098@@ -104,6 +104,6 @@
3099 </div>
3100 <div class="footer">
3101 <hr>
3102- Generated by GTK-Doc V1.20</div>
3103+ Generated by GTK-Doc V1.21</div>
3104 </body>
3105 </html>
3106\ No newline at end of file
3107
3108=== modified file 'docs/references/html/api-index-full.html'
3109--- docs/references/html/api-index-full.html 2014-06-23 08:06:22 +0000
3110+++ docs/references/html/api-index-full.html 2015-01-04 19:54:48 +0000
3111@@ -8,11 +8,11 @@
3112 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3113 <link rel="prev" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">
3114 <link rel="next" href="api-index-deprecated.html" title="Index of deprecated symbols">
3115-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3116+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3117 <link rel="stylesheet" href="style.css" type="text/css">
3118 </head>
3119 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3120-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3121+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3122 <td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxA">A</a>
3123  <span class="dim">|</span> 
3124 <a class="shortcut" href="#idxC">C</a>
3125@@ -569,6 +569,6 @@
3126 </div>
3127 <div class="footer">
3128 <hr>
3129- Generated by GTK-Doc V1.20</div>
3130+ Generated by GTK-Doc V1.21</div>
3131 </body>
3132 </html>
3133\ No newline at end of file
3134
3135=== modified file 'docs/references/html/index.html'
3136--- docs/references/html/index.html 2014-06-23 08:06:22 +0000
3137+++ docs/references/html/index.html 2015-01-04 19:54:48 +0000
3138@@ -6,7 +6,7 @@
3139 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
3140 <link rel="home" href="index.html" title="Libxfce4panel Reference Manual">
3141 <link rel="next" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
3142-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3143+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3144 <link rel="stylesheet" href="style.css" type="text/css">
3145 </head>
3146 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3147@@ -20,7 +20,7 @@
3148 </h3>
3149 <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>
3150 </div></div></div>
3151-<div><p class="releaseinfo">Version 4.11.1
3152+<div><p class="releaseinfo">Version 4.11.2
3153 </p></div>
3154 <div><p class="copyright">Copyright © 2006, 2007 Jasper Huijsmans</p></div>
3155 <div><p class="copyright">Copyright © 2008, 2010 Nick Schermer</p></div>
3156@@ -89,6 +89,6 @@
3157 </div>
3158 <div class="footer">
3159 <hr>
3160- Generated by GTK-Doc V1.20</div>
3161+ Generated by GTK-Doc V1.21</div>
3162 </body>
3163 </html>
3164\ No newline at end of file
3165
3166=== modified file 'docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html'
3167--- docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html 2014-06-23 08:06:22 +0000
3168+++ docs/references/html/libxfce4panel-Commonly-used-plugin-macros.html 2015-01-04 19:54:48 +0000
3169@@ -8,14 +8,14 @@
3170 <link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
3171 <link rel="prev" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">
3172 <link rel="next" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
3173-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3174+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3175 <link rel="stylesheet" href="style.css" type="text/css">
3176 </head>
3177 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3178-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3179+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3180 <td width="100%" align="left" class="shortcuts">
3181-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3182- <a href="#libxfce4panel-Commonly-used-plugin-macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3183+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3184+ <a href="#libxfce4panel-Commonly-used-plugin-macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3185 <a href="#libxfce4panel-Commonly-used-plugin-macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3186 </td>
3187 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3188@@ -128,9 +128,9 @@
3189 <div class="warning">
3190 <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>
3191 <p>Deprecated because panel depends on recent enough
3192- 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>
3193+ 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>
3194 </div>
3195-<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>
3196+<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>
3197 <div class="refsect3">
3198 <a name="id-1.2.4.7.3.6"></a><h4>Parameters</h4>
3199 <div class="informaltable"><table width="100%" border="0">
3200@@ -160,9 +160,9 @@
3201 <div class="warning">
3202 <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>
3203 <p>Deprecated because panel depends on recent enough
3204- 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>
3205+ 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>
3206 </div>
3207-<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>
3208+<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>
3209 <div class="refsect3">
3210 <a name="id-1.2.4.7.4.6"></a><h4>Parameters</h4>
3211 <div class="informaltable"><table width="100%" border="0">
3212@@ -192,9 +192,9 @@
3213 <div class="warning">
3214 <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>
3215 <p>Deprecated because panel depends on recent enough
3216- 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>
3217+ 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>
3218 </div>
3219-<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>
3220+<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>
3221 <div class="refsect3">
3222 <a name="id-1.2.4.7.5.6"></a><h4>Parameters</h4>
3223 <div class="informaltable"><table width="100%" border="0">
3224@@ -226,9 +226,9 @@
3225 <div class="warning">
3226 <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>
3227 <p>Deprecated because panel depends on recent enough
3228- 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>
3229+ 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>
3230 </div>
3231-<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>
3232+<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>
3233 <div class="refsect3">
3234 <a name="id-1.2.4.7.6.6"></a><h4>Parameters</h4>
3235 <div class="informaltable"><table width="100%" border="0">
3236@@ -260,9 +260,9 @@
3237 <div class="warning">
3238 <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>
3239 <p>Deprecated because panel depends on recent enough
3240- 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>
3241+ 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>
3242 </div>
3243-<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>
3244+<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>
3245 <div class="refsect3">
3246 <a name="id-1.2.4.7.7.6"></a><h4>Parameters</h4>
3247 <div class="informaltable"><table width="100%" border="0">
3248@@ -292,9 +292,9 @@
3249 <div class="warning">
3250 <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>
3251 <p>Deprecated because panel depends on recent enough
3252- 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>
3253+ 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>
3254 </div>
3255-<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>
3256+<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>
3257 <div class="refsect3">
3258 <a name="id-1.2.4.7.8.6"></a><h4>Parameters</h4>
3259 <div class="informaltable"><table width="100%" border="0">
3260@@ -325,7 +325,7 @@
3261 <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>
3262 <p>Deprecated because panel depends on recent enough
3263 version of glib. Use <span class="type">G_PARAM_READABLE</span>
3264- | <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>
3265+ | <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>
3266 </div>
3267 <p>Macro for <span class="type">G_PARAM_READABLE</span> with static strings.</p>
3268 </div>
3269@@ -337,10 +337,10 @@
3270 <div class="warning">
3271 <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>
3272 <p>Deprecated because panel depends on recent enough
3273- 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>
3274- | <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>
3275+ version of glib. Use <span class="type">G_PARAM_READWRITE</span>
3276+ | <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>
3277 </div>
3278-<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>
3279+<p>Macro for <span class="type">G_PARAM_READWRITE</span> with static strings.</p>
3280 </div>
3281 <hr>
3282 <div class="refsect2">
3283@@ -351,7 +351,7 @@
3284 <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>
3285 <p>Deprecated because panel depends on recent enough
3286 version of glib. Use <span class="type">G_PARAM_WRITABLE</span>
3287- | <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>
3288+ | <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>
3289 </div>
3290 <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>
3291 </div>
3292@@ -362,6 +362,6 @@
3293 </div>
3294 <div class="footer">
3295 <hr>
3296- Generated by GTK-Doc V1.20</div>
3297+ Generated by GTK-Doc V1.21</div>
3298 </body>
3299 </html>
3300\ No newline at end of file
3301
3302=== modified file 'docs/references/html/libxfce4panel-Convenience-Functions.html'
3303--- docs/references/html/libxfce4panel-Convenience-Functions.html 2014-06-23 08:06:22 +0000
3304+++ docs/references/html/libxfce4panel-Convenience-Functions.html 2015-01-04 19:54:48 +0000
3305@@ -8,14 +8,14 @@
3306 <link rel="up" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
3307 <link rel="prev" href="libxfce4panel-miscelleanous.html" title="Part IV. Miscelleanous">
3308 <link rel="next" href="api-index-full.html" title="Index of all symbols">
3309-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3310+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3311 <link rel="stylesheet" href="style.css" type="text/css">
3312 </head>
3313 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3314-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3315+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3316 <td width="100%" align="left" class="shortcuts">
3317-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3318- <a href="#libxfce4panel-Convenience-Functions.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3319+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3320+ <a href="#libxfce4panel-Convenience-Functions.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3321 <a href="#libxfce4panel-Convenience-Functions.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3322 </td>
3323 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3324@@ -42,7 +42,7 @@
3325 <tbody>
3326 <tr>
3327 <td class="function_type">
3328-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3329+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3330 </td>
3331 <td class="function_name">
3332 <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>
3333@@ -50,14 +50,14 @@
3334 </tr>
3335 <tr>
3336 <td class="function_type">
3337-<a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3338+<a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3339 </td>
3340 <td class="function_name">
3341 <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>
3342 </td>
3343 </tr>
3344 <tr>
3345-<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> *
3346+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3347 </td>
3348 <td class="function_name">
3349 <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>
3350@@ -65,7 +65,7 @@
3351 </tr>
3352 <tr>
3353 <td class="function_type">
3354-<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
3355+<span class="returnvalue">GdkPixbuf</span> *
3356 </td>
3357 <td class="function_name">
3358 <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>
3359@@ -73,7 +73,7 @@
3360 </tr>
3361 <tr>
3362 <td class="function_type">
3363-<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *
3364+<span class="returnvalue">GdkPixbuf</span> *
3365 </td>
3366 <td class="function_name">
3367 <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>
3368@@ -124,33 +124,33 @@
3369 <a name="libxfce4panel-Convenience-Functions.functions_details"></a><h2>Functions</h2>
3370 <div class="refsect2">
3371 <a name="xfce-panel-create-button"></a><h3>xfce_panel_create_button ()</h3>
3372-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3373+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3374 xfce_panel_create_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
3375-<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 the
3376+<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
3377 Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>
3378 <div class="refsect3">
3379 <a name="id-1.5.2.8.2.5"></a><h4>Returns</h4>
3380-<p> newly created <a href="http://library.gnome.org/devel/gtk3/GtkButton.html"><span class="type">GtkButton</span></a>.</p>
3381+<p> newly created <a href="http://developer.gnome.org/gtk2/GtkButton.html"><span class="type">GtkButton</span></a>.</p>
3382 <p></p>
3383 </div>
3384 </div>
3385 <hr>
3386 <div class="refsect2">
3387 <a name="xfce-panel-create-toggle-button"></a><h3>xfce_panel_create_toggle_button ()</h3>
3388-<pre class="programlisting"><a href="http://library.gnome.org/devel/gtk3/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3389+<pre class="programlisting"><a href="http://developer.gnome.org/gtk2/GtkWidget.html"><span class="returnvalue">GtkWidget</span></a> *
3390 xfce_panel_create_toggle_button (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
3391-<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 in
3392+<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
3393 Xfce panel: Flat (<code class="literal">GTK_RELIEF_NONE</code>), no focus on click and minimal padding.</p>
3394 <div class="refsect3">
3395 <a name="id-1.5.2.8.3.5"></a><h4>Returns</h4>
3396-<p> newly created <a href="http://library.gnome.org/devel/gtk3/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a>.</p>
3397+<p> newly created <a href="http://developer.gnome.org/gtk2/GtkToggleButton.html"><span class="type">GtkToggleButton</span></a>.</p>
3398 <p></p>
3399 </div>
3400 </div>
3401 <hr>
3402 <div class="refsect2">
3403 <a name="xfce-panel-get-channel-name"></a><h3>xfce_panel_get_channel_name ()</h3>
3404-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3405+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3406 xfce_panel_get_channel_name (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
3407 <p>Function for the name of the Xfconf channel used by the panel. By default
3408 this returns "xfce4-panel", but you can override this value with the
3409@@ -168,10 +168,10 @@
3410 <hr>
3411 <div class="refsect2">
3412 <a name="xfce-panel-pixbuf-from-source"></a><h3>xfce_panel_pixbuf_from_source ()</h3>
3413-<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> *
3414-xfce_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>,
3415- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
3416- <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>
3417+<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *
3418+xfce_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>,
3419+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
3420+ <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>
3421 <p>See xfce_panel_pixbuf_from_source_at_size</p>
3422 <div class="refsect3">
3423 <a name="id-1.5.2.8.5.5"></a><h4>Parameters</h4>
3424@@ -189,7 +189,7 @@
3425 </tr>
3426 <tr>
3427 <td class="parameter_name"><p>icon_theme</p></td>
3428-<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>
3429+<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>
3430 <td class="parameter_annotations"> </td>
3431 </tr>
3432 <tr>
3433@@ -202,7 +202,7 @@
3434 </div>
3435 <div class="refsect3">
3436 <a name="id-1.5.2.8.5.6"></a><h4>Returns</h4>
3437-<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 should
3438+<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
3439 be released with g_object_unref when no longer used.</p>
3440 <p>See also: XfcePanelImage</p>
3441 <p></p>
3442@@ -212,11 +212,11 @@
3443 <hr>
3444 <div class="refsect2">
3445 <a name="xfce-panel-pixbuf-from-source-at-size"></a><h3>xfce_panel_pixbuf_from_source_at_size ()</h3>
3446-<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> *
3447-xfce_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>,
3448- <em class="parameter"><code><a href="http://library.gnome.org/devel/gtk3/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
3449- <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>,
3450- <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>
3451+<pre class="programlisting"><span class="returnvalue">GdkPixbuf</span> *
3452+xfce_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>,
3453+ <em class="parameter"><code><a href="http://developer.gnome.org/gtk2/GtkIconTheme.html"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
3454+ <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>,
3455+ <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>
3456 <p>Try to load a pixbuf from a source string. The source could be
3457 an abolute path, an icon name or a filename that points to a
3458 file in the pixmaps directory.</p>
3459@@ -243,7 +243,7 @@
3460 </tr>
3461 <tr>
3462 <td class="parameter_name"><p>icon_theme</p></td>
3463-<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>
3464+<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>
3465 <td class="parameter_annotations"> </td>
3466 </tr>
3467 <tr>
3468@@ -261,7 +261,7 @@
3469 </div>
3470 <div class="refsect3">
3471 <a name="id-1.5.2.8.6.8"></a><h4>Returns</h4>
3472-<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 should
3473+<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
3474 be released with g_object_unref when no longer used.</p>
3475 <p>See also: XfcePanelImage</p>
3476 <p></p>
3477@@ -277,7 +277,7 @@
3478 <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>
3479 <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>
3480 </div>
3481-<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 basis
3482+<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
3483 level in the future, so this function is useless.</p>
3484 </div>
3485 </div>
3486@@ -308,6 +308,6 @@
3487 </div>
3488 <div class="footer">
3489 <hr>
3490- Generated by GTK-Doc V1.20</div>
3491+ Generated by GTK-Doc V1.21</div>
3492 </body>
3493 </html>
3494\ No newline at end of file
3495
3496=== modified file 'docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html'
3497--- docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html 2014-06-23 08:06:22 +0000
3498+++ docs/references/html/libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html 2015-01-04 19:54:48 +0000
3499@@ -8,14 +8,14 @@
3500 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
3501 <link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
3502 <link rel="next" href="libxfce4panel-widgets.html" title="Part III. Additional Widgets">
3503-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3504+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3505 <link rel="stylesheet" href="style.css" type="text/css">
3506 </head>
3507 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3508-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3509+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3510 <td width="100%" align="left" class="shortcuts">
3511-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3512- <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3513+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3514+ <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3515 <a href="#libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3516 </td>
3517 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3518@@ -161,9 +161,9 @@
3519 <div class="refsect2">
3520 <a name="XFCE-PANEL-DEFINE-TYPE:CAPS"></a><h3>XFCE_PANEL_DEFINE_TYPE()</h3>
3521 <pre class="programlisting">#define XFCE_PANEL_DEFINE_TYPE(TypeName, type_name, TYPE_PARENT)</pre>
3522-<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. Only
3523-difference 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 to
3524-<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 you
3525+<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
3526+difference 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
3527+<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
3528 use use shorted structure names in the code, while the real name of the
3529 object is a full "Xfce" name.</p>
3530 <p>The _register_type function should be added to the args in
3531@@ -202,12 +202,12 @@
3532 <a name="XFCE-PANEL-DEFINE-PREINIT-FUNC:CAPS"></a><h3>XFCE_PANEL_DEFINE_PREINIT_FUNC()</h3>
3533 <pre class="programlisting">#define XFCE_PANEL_DEFINE_PREINIT_FUNC(preinit_func)</pre>
3534 <p>Registers a pre-init function in the plugin module. This function
3535-is 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 initialize
3536+is 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
3537 special libaries.
3538 Downside of this that the plugin cannot run internal. Even if you
3539 set X-XFCE-Interal=TRUE in the desktop file, the panel will force
3540 the plugin to run inside a wrapper (this because the panel called
3541-<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>
3542+<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>
3543 <p>Note that you can only use this once and it only works in
3544 combination with the plugins register/define functions added
3545 in 4.8.</p>
3546@@ -243,6 +243,6 @@
3547 </div>
3548 <div class="footer">
3549 <hr>
3550- Generated by GTK-Doc V1.20</div>
3551+ Generated by GTK-Doc V1.21</div>
3552 </body>
3553 </html>
3554\ No newline at end of file
3555
3556=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html'
3557--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html 2014-06-23 08:06:22 +0000
3558+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html 2015-01-04 19:54:48 +0000
3559@@ -8,14 +8,14 @@
3560 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
3561 <link rel="prev" href="libxfce4panel-Panel-Plugin-Register-Macros.html" title="Panel Plugin Register Macros">
3562 <link rel="next" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">
3563-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3564+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3565 <link rel="stylesheet" href="style.css" type="text/css">
3566 </head>
3567 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3568-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3569+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3570 <td width="100%" align="left" class="shortcuts">
3571-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3572- <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3573+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3574+ <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3575 <a href="#libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3576 </td>
3577 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3578@@ -130,7 +130,7 @@
3579 for more information.</p>
3580 </div>
3581 <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
3582-preinit 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 plugins
3583+preinit 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
3584 to initialize libraries or threads.</p>
3585 <div class="refsect3">
3586 <a name="id-1.3.5.7.3.7"></a><h4>Parameters</h4>
3587@@ -150,13 +150,13 @@
3588 <tr>
3589 <td class="parameter_name"><p>preinit_func</p></td>
3590 <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>
3591-or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
3592+or <a href="https://developer.gnome.org/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
3593 <td class="parameter_annotations"> </td>
3594 </tr>
3595 <tr>
3596 <td class="parameter_name"><p>check_func</p></td>
3597 <td class="parameter_description"><p>name of a function that can be cast to an
3598-<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>
3599+<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>
3600 <td class="parameter_annotations"> </td>
3601 </tr>
3602 </tbody>
3603@@ -198,7 +198,7 @@
3604 <tr>
3605 <td class="parameter_name"><p>check_func</p></td>
3606 <td class="parameter_description"><p>name of a function that can be cast to an
3607-<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>
3608+<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>
3609 <td class="parameter_annotations"> </td>
3610 </tr>
3611 </tbody>
3612@@ -258,7 +258,7 @@
3613 <tr>
3614 <td class="parameter_name"><p>check_func</p></td>
3615 <td class="parameter_description"><p>name of a function that can be cast to an
3616-<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>
3617+<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>
3618 <td class="parameter_annotations"> </td>
3619 </tr>
3620 </tbody>
3621@@ -272,6 +272,6 @@
3622 </div>
3623 <div class="footer">
3624 <hr>
3625- Generated by GTK-Doc V1.20</div>
3626+ Generated by GTK-Doc V1.21</div>
3627 </body>
3628 </html>
3629\ No newline at end of file
3630
3631=== modified file 'docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html'
3632--- docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html 2014-06-23 08:06:22 +0000
3633+++ docs/references/html/libxfce4panel-Panel-Plugin-Register-Macros.html 2015-01-04 19:54:48 +0000
3634@@ -8,14 +8,14 @@
3635 <link rel="up" href="libxfce4panel-plugins.html" title="Part II. Panel Plugins">
3636 <link rel="prev" href="XfcePanelPlugin.html" title="XfcePanelPlugin">
3637 <link rel="next" href="libxfce4panel-Panel-Plugin-Register-Macros-(4.6-Style).html" title="Panel Plugin Register Macros (4.6 Style)">
3638-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3639+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3640 <link rel="stylesheet" href="style.css" type="text/css">
3641 </head>
3642 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3643-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3644+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3645 <td width="100%" align="left" class="shortcuts">
3646-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3647- <a href="#libxfce4panel-Panel-Plugin-Register-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3648+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3649+ <a href="#libxfce4panel-Panel-Plugin-Register-Macros.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3650 <a href="#libxfce4panel-Panel-Plugin-Register-Macros.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3651 </td>
3652 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3653@@ -42,7 +42,7 @@
3654 <tbody>
3655 <tr>
3656 <td class="function_type">
3657-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3658+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3659 </td>
3660 <td class="function_name">
3661 <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>
3662@@ -58,7 +58,7 @@
3663 </tr>
3664 <tr>
3665 <td class="function_type">
3666-<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3667+<a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3668 </td>
3669 <td class="function_name">
3670 <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>
3671@@ -105,10 +105,10 @@
3672 <a name="libxfce4panel-Panel-Plugin-Register-Macros.functions_details"></a><h2>Functions</h2>
3673 <div class="refsect2">
3674 <a name="XfcePanelPluginCheck"></a><h3>XfcePanelPluginCheck ()</h3>
3675-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3676+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3677 <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>
3678 <p>Callback function that is run before creating a plugin. It should return
3679-<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 function
3680+<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
3681 can be given as argument to one of the registration macros.</p>
3682 <div class="refsect3">
3683 <a name="id-1.3.4.7.2.5"></a><h4>Parameters</h4>
3684@@ -127,7 +127,7 @@
3685 </div>
3686 <div class="refsect3">
3687 <a name="id-1.3.4.7.2.6"></a><h4>Returns</h4>
3688-<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>
3689+<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>
3690 <p></p>
3691 </div>
3692 </div>
3693@@ -157,14 +157,14 @@
3694 <hr>
3695 <div class="refsect2">
3696 <a name="XfcePanelPluginPreInit"></a><h3>XfcePanelPluginPreInit ()</h3>
3697-<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3698-<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>,
3699- <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>
3700-<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>. It
3701-should 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.
3702+<pre class="programlisting"><a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
3703+<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>,
3704+ <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>
3705+<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
3706+should 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.
3707 The function can be given as argument to one of the registration macros.</p>
3708 <p>The main purpose of this callback is to allow multithreaded plugins to call
3709-<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>
3710+<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>
3711 <div class="refsect3">
3712 <a name="id-1.3.4.7.4.6"></a><h4>Parameters</h4>
3713 <div class="informaltable"><table width="100%" border="0">
3714@@ -189,7 +189,7 @@
3715 </div>
3716 <div class="refsect3">
3717 <a name="id-1.3.4.7.4.7"></a><h4>Returns</h4>
3718-<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>
3719+<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>
3720 <p></p>
3721 </div>
3722 <p class="since">Since 4.6</p>
3723@@ -227,7 +227,7 @@
3724 <p>Register a panel plugin using a construct function. The <em class="parameter"><code>check_func</code></em>
3725
3726 will be called before the plugin is created. If this function returns
3727-<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,
3728+<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,
3729 you are responsible for showing a dialog why the plugin is not added
3730 to the panel.</p>
3731 <div class="refsect3">
3732@@ -302,6 +302,6 @@
3733 </div>
3734 <div class="footer">
3735 <hr>
3736- Generated by GTK-Doc V1.20</div>
3737+ Generated by GTK-Doc V1.21</div>
3738 </body>
3739 </html>
3740\ No newline at end of file
3741
3742=== modified file 'docs/references/html/libxfce4panel-Standard-Enumerations.html'
3743--- docs/references/html/libxfce4panel-Standard-Enumerations.html 2014-06-23 08:06:22 +0000
3744+++ docs/references/html/libxfce4panel-Standard-Enumerations.html 2015-01-04 19:54:48 +0000
3745@@ -8,14 +8,14 @@
3746 <link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
3747 <link rel="prev" href="libxfce4panel-Version-Information.html" title="Version Information">
3748 <link rel="next" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">
3749-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3750+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3751 <link rel="stylesheet" href="style.css" type="text/css">
3752 </head>
3753 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3754-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3755+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3756 <td width="100%" align="left" class="shortcuts">
3757-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3758- <a href="#libxfce4panel-Standard-Enumerations.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3759+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3760+ <a href="#libxfce4panel-Standard-Enumerations.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3761 <a href="#libxfce4panel-Standard-Enumerations.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3762 </td>
3763 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3764@@ -117,7 +117,7 @@
3765 <div class="refsect2">
3766 <a name="xfce-screen-position-get-orientation"></a><h3>xfce_screen_position_get_orientation()</h3>
3767 <pre class="programlisting">#define xfce_screen_position_get_orientation(position)</pre>
3768-<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>
3769+<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>
3770 <div class="refsect3">
3771 <a name="id-1.2.3.8.2.5"></a><h4>Parameters</h4>
3772 <div class="informaltable"><table width="100%" border="0">
3773@@ -135,7 +135,7 @@
3774 </div>
3775 <div class="refsect3">
3776 <a name="id-1.2.3.8.2.6"></a><h4>Returns</h4>
3777-<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>
3778+<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>
3779 .</p>
3780 <p></p>
3781 </div>
3782@@ -163,7 +163,7 @@
3783 </div>
3784 <div class="refsect3">
3785 <a name="id-1.2.3.8.3.6"></a><h4>Returns</h4>
3786-<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>
3787+<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>
3788 <p></p>
3789 </div>
3790 </div>
3791@@ -189,7 +189,7 @@
3792 </div>
3793 <div class="refsect3">
3794 <a name="id-1.2.3.8.4.6"></a><h4>Returns</h4>
3795-<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>
3796+<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>
3797 <p></p>
3798 </div>
3799 </div>
3800@@ -215,7 +215,7 @@
3801 </div>
3802 <div class="refsect3">
3803 <a name="id-1.2.3.8.5.6"></a><h4>Returns</h4>
3804-<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>
3805+<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>
3806 <p></p>
3807 </div>
3808 </div>
3809@@ -242,7 +242,7 @@
3810 </div>
3811 <div class="refsect3">
3812 <a name="id-1.2.3.8.6.6"></a><h4>Returns</h4>
3813-<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>
3814+<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>
3815 <p></p>
3816 </div>
3817 </div>
3818@@ -269,7 +269,7 @@
3819 </div>
3820 <div class="refsect3">
3821 <a name="id-1.2.3.8.7.6"></a><h4>Returns</h4>
3822-<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>
3823+<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>
3824 <p></p>
3825 </div>
3826 </div>
3827@@ -296,7 +296,7 @@
3828 </div>
3829 <div class="refsect3">
3830 <a name="id-1.2.3.8.8.6"></a><h4>Returns</h4>
3831-<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>
3832+<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>
3833 <p></p>
3834 </div>
3835 </div>
3836@@ -432,6 +432,6 @@
3837 </div>
3838 <div class="footer">
3839 <hr>
3840- Generated by GTK-Doc V1.20</div>
3841+ Generated by GTK-Doc V1.21</div>
3842 </body>
3843 </html>
3844\ No newline at end of file
3845
3846=== modified file 'docs/references/html/libxfce4panel-Version-Information.html'
3847--- docs/references/html/libxfce4panel-Version-Information.html 2014-06-23 08:06:22 +0000
3848+++ docs/references/html/libxfce4panel-Version-Information.html 2015-01-04 19:54:48 +0000
3849@@ -8,14 +8,14 @@
3850 <link rel="up" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
3851 <link rel="prev" href="libxfce4panel-fundamentals.html" title="Part I. Fundamentals">
3852 <link rel="next" href="libxfce4panel-Standard-Enumerations.html" title="Standard Enumerations">
3853-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3854+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3855 <link rel="stylesheet" href="style.css" type="text/css">
3856 </head>
3857 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3858-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3859+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3860 <td width="100%" align="left" class="shortcuts">
3861-<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
3862- <a href="#libxfce4panel-Version-Information.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
3863+<a href="#" class="shortcut">Top</a><span id="nav_description">  <span class="dim">|</span> 
3864+ <a href="#libxfce4panel-Version-Information.description" class="shortcut">Description</a></span><span id="nav_hierarchy">  <span class="dim">|</span> 
3865 <a href="#libxfce4panel-Version-Information.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
3866 </td>
3867 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3868@@ -41,7 +41,7 @@
3869 </colgroup>
3870 <tbody>
3871 <tr>
3872-<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> *
3873+<td class="function_type">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3874 </td>
3875 <td class="function_name">
3876 <a class="link" href="libxfce4panel-Version-Information.html#libxfce4panel-check-version" title="libxfce4panel_check_version ()">libxfce4panel_check_version</a> <span class="c_punctuation">()</span>
3877@@ -114,10 +114,10 @@
3878 <a name="libxfce4panel-Version-Information.functions_details"></a><h2>Functions</h2>
3879 <div class="refsect2">
3880 <a name="libxfce4panel-check-version"></a><h3>libxfce4panel_check_version ()</h3>
3881-<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3882-libxfce4panel_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>,
3883- <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>,
3884- <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>
3885+<pre class="programlisting">const <a href="https://developer.gnome.org/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
3886+libxfce4panel_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>,
3887+ <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>,
3888+ <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>
3889 <p>Checks that the libxfce4panel library in use is compatible with
3890 the given version. Generally you would pass in the constants
3891 <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
3892@@ -165,7 +165,7 @@
3893 </div>
3894 <div class="refsect3">
3895 <a name="id-1.2.2.8.2.7"></a><h4>Returns</h4>
3896-<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,
3897+<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,
3898 or a string describing the version mismatch. The returned
3899 string is owned by the library and must not be freed or
3900 modified by the caller.</p>
3901@@ -248,7 +248,7 @@
3902 </div>
3903 <div class="refsect3">
3904 <a name="id-1.2.2.8.7.6"></a><h4>Returns</h4>
3905-<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 is
3906+<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
3907 the same as or newer than the passed-in version.</p>
3908 <p></p>
3909 </div>
3910@@ -299,6 +299,6 @@
3911 </div>
3912 <div class="footer">
3913 <hr>
3914- Generated by GTK-Doc V1.20</div>
3915+ Generated by GTK-Doc V1.21</div>
3916 </body>
3917 </html>
3918\ No newline at end of file
3919
3920=== modified file 'docs/references/html/libxfce4panel-fundamentals.html'
3921--- docs/references/html/libxfce4panel-fundamentals.html 2014-06-23 08:06:22 +0000
3922+++ docs/references/html/libxfce4panel-fundamentals.html 2015-01-04 19:54:48 +0000
3923@@ -8,11 +8,11 @@
3924 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3925 <link rel="prev" href="index.html" title="Libxfce4panel Reference Manual">
3926 <link rel="next" href="libxfce4panel-Version-Information.html" title="Version Information">
3927-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3928+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3929 <link rel="stylesheet" href="style.css" type="text/css">
3930 </head>
3931 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3932-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3933+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3934 <td width="100%" align="left" class="shortcuts"></td>
3935 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3936 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
3937@@ -39,6 +39,6 @@
3938 </div>
3939 <div class="footer">
3940 <hr>
3941- Generated by GTK-Doc V1.20</div>
3942+ Generated by GTK-Doc V1.21</div>
3943 </body>
3944 </html>
3945\ No newline at end of file
3946
3947=== modified file 'docs/references/html/libxfce4panel-miscelleanous.html'
3948--- docs/references/html/libxfce4panel-miscelleanous.html 2014-06-23 08:06:22 +0000
3949+++ docs/references/html/libxfce4panel-miscelleanous.html 2015-01-04 19:54:48 +0000
3950@@ -8,11 +8,11 @@
3951 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3952 <link rel="prev" href="XfcePanelImage.html" title="XfcePanelImage">
3953 <link rel="next" href="libxfce4panel-Convenience-Functions.html" title="Convenience Functions">
3954-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3955+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3956 <link rel="stylesheet" href="style.css" type="text/css">
3957 </head>
3958 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3959-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3960+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3961 <td width="100%" align="left" class="shortcuts"></td>
3962 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3963 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
3964@@ -31,6 +31,6 @@
3965 </div>
3966 <div class="footer">
3967 <hr>
3968- Generated by GTK-Doc V1.20</div>
3969+ Generated by GTK-Doc V1.21</div>
3970 </body>
3971 </html>
3972\ No newline at end of file
3973
3974=== modified file 'docs/references/html/libxfce4panel-plugins.html'
3975--- docs/references/html/libxfce4panel-plugins.html 2014-06-23 08:06:22 +0000
3976+++ docs/references/html/libxfce4panel-plugins.html 2015-01-04 19:54:48 +0000
3977@@ -8,11 +8,11 @@
3978 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
3979 <link rel="prev" href="libxfce4panel-Commonly-used-plugin-macros.html" title="Commonly used plugin macros">
3980 <link rel="next" href="XfcePanelPlugin.html" title="XfcePanelPlugin">
3981-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
3982+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
3983 <link rel="stylesheet" href="style.css" type="text/css">
3984 </head>
3985 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3986-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
3987+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
3988 <td width="100%" align="left" class="shortcuts"></td>
3989 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
3990 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
3991@@ -97,6 +97,6 @@
3992 </div>
3993 <div class="footer">
3994 <hr>
3995- Generated by GTK-Doc V1.20</div>
3996+ Generated by GTK-Doc V1.21</div>
3997 </body>
3998 </html>
3999\ No newline at end of file
4000
4001=== modified file 'docs/references/html/libxfce4panel-widgets.html'
4002--- docs/references/html/libxfce4panel-widgets.html 2014-06-23 08:06:22 +0000
4003+++ docs/references/html/libxfce4panel-widgets.html 2015-01-04 19:54:48 +0000
4004@@ -8,11 +8,11 @@
4005 <link rel="up" href="index.html" title="Libxfce4panel Reference Manual">
4006 <link rel="prev" href="libxfce4panel-GObject-Oriented-Panel-Plugin-Registers-Macros.html" title="GObject Oriented Panel Plugin Registers Macros">
4007 <link rel="next" href="XfceArrowButton.html" title="XfceArrowButton">
4008-<meta name="generator" content="GTK-Doc V1.20 (XML mode)">
4009+<meta name="generator" content="GTK-Doc V1.21 (XML mode)">
4010 <link rel="stylesheet" href="style.css" type="text/css">
4011 </head>
4012 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
4013-<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
4014+<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
4015 <td width="100%" align="left" class="shortcuts"></td>
4016 <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
4017 <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
4018@@ -40,6 +40,6 @@
4019 </div>
4020 <div class="footer">
4021 <hr>
4022- Generated by GTK-Doc V1.20</div>
4023+ Generated by GTK-Doc V1.21</div>
4024 </body>
4025 </html>
4026\ No newline at end of file
4027
4028=== modified file 'docs/references/html/style.css'
4029--- docs/references/html/style.css 2014-06-23 08:06:22 +0000
4030+++ docs/references/html/style.css 2015-01-04 19:54:48 +0000
4031@@ -30,127 +30,6 @@
4032 vertical-align: top;
4033 }
4034
4035-@media screen {
4036- sup a.footnote
4037- {
4038- position: relative;
4039- top: 0em ! important;
4040- }
4041- /* this is needed so that the local anchors are displayed below the naviagtion */
4042- 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]
4043- {
4044- display: inline-block;
4045- position: relative;
4046- top:-5em;
4047- }
4048- /* this seems to be a bug in the xsl style sheets when generating indexes */
4049- div.index div.index
4050- {
4051- top: 0em;
4052- }
4053- /* make space for the fixed navigation bar and add space at the bottom so that
4054- * link targets appear somewhat close to top
4055- */
4056- body
4057- {
4058- padding-top: 5em;
4059- padding-bottom: 500px;
4060- max-width: 60em;
4061- }
4062- p
4063- {
4064- max-width: 60em;
4065- }
4066- /* style and size the navigation bar */
4067- table.navigation#top
4068- {
4069- position: fixed;
4070- background: #e2e2e2;
4071- border-bottom: solid 1px #babdb6;
4072- margin-top: 0;
4073- margin-bottom: 0;
4074- top: 0;
4075- left: 0;
4076- height: 3em;
4077- z-index: 10;
4078- }
4079- .navigation a, .navigation a:visited
4080- {
4081- /* tango:sky blue 3 */
4082- color: #204a87;
4083- }
4084- .navigation a:hover
4085- {
4086- /* tango:sky blue 2 */
4087- color: #3465a4;
4088- }
4089- td.shortcuts
4090- {
4091- /* tango:sky blue 2 */
4092- color: #3465a4;
4093- font-size: 80%;
4094- white-space: nowrap;
4095- }
4096- td.shortcuts .dim
4097- {
4098- color: #babdb6;
4099- }
4100-}
4101-@media screen and (min-width: 60em) {
4102- /* screen larger than 60em */
4103- body { margin: auto; }
4104-}
4105-@media screen and (max-width: 60em) {
4106- /* screen less than 60em */
4107- #nav_hierarchy { display: none; }
4108- #nav_interfaces { display: none; }
4109- #nav_prerequisites { display: none; }
4110- #nav_derived_interfaces { display: none; }
4111- #nav_implementations { display: none; }
4112- #nav_child_properties { display: none; }
4113- #nav_style_properties { display: none; }
4114- #nav_index { display: none; }
4115- #nav_glossary { display: none; }
4116- .gallery_image { display: none; }
4117- .property_flags { display: none; }
4118- .signal_flags { display: none; }
4119- .parameter_annotations { display: none; }
4120- .enum_member_annotations { display: none; }
4121- .struct_member_annotations { display: none; }
4122- .union_member_annotations { display: none; }
4123- /* now that a column is hidden, optimize space */
4124- col.parameters_name { width: auto; }
4125- col.parameters_description { width: auto; }
4126- col.struct_members_name { width: auto; }
4127- col.struct_members_description { width: auto; }
4128- col.enum_members_name { width: auto; }
4129- col.enum_members_description { width: auto; }
4130- col.union_members_name { width: auto; }
4131- col.union_members_description { width: auto; }
4132-}
4133-@media print {
4134- table.navigation {
4135- visibility: collapse;
4136- display: none;
4137- }
4138- div.titlepage table.navigation {
4139- visibility: visible;
4140- display: table;
4141- background: #e2e2e2;
4142- border: solid 1px #babdb6;
4143- margin-top: 0;
4144- margin-bottom: 0;
4145- top: 0;
4146- left: 0;
4147- height: 3em;
4148- }
4149-}
4150-
4151-.navigation .title
4152-{
4153- font-size: 120%;
4154-}
4155-
4156 div.gallery-float
4157 {
4158 float: left;
4159@@ -181,7 +60,7 @@
4160 div.informaltable table
4161 {
4162 border-collapse: separate;
4163- border-spacing: 20px 3px;
4164+ border-spacing: 1em 0.5em;
4165 border: none;
4166 }
4167
4168@@ -239,6 +118,11 @@
4169 color: #729fcf;
4170 }
4171
4172+td p
4173+{
4174+ margin: 0.25em;
4175+}
4176+
4177 div.table table
4178 {
4179 border-collapse: collapse;
4180@@ -404,21 +288,28 @@
4181 font-weight: normal;
4182 }
4183
4184+acronym,abbr
4185+{
4186+ border-bottom: 1px dotted gray;
4187+}
4188+
4189 /* code listings */
4190
4191-.listing_code .programlisting .cbracket { color: #a40000; } /* tango: scarlet red 3 */
4192-.listing_code .programlisting .comment { color: #a1a39d; } /* tango: aluminium 4 */
4193-.listing_code .programlisting .function { color: #000000; font-weight: bold; }
4194-.listing_code .programlisting .function a { color: #11326b; font-weight: bold; } /* tango: sky blue 4 */
4195-.listing_code .programlisting .keyword { color: #4e9a06; } /* tango: chameleon 3 */
4196+.listing_code .programlisting .normal,
4197+.listing_code .programlisting .normal a,
4198+.listing_code .programlisting .number,
4199+.listing_code .programlisting .cbracket,
4200+.listing_code .programlisting .symbol { color: #555753; }
4201+.listing_code .programlisting .comment,
4202 .listing_code .programlisting .linenum { color: #babdb6; } /* tango: aluminium 3 */
4203-.listing_code .programlisting .normal { color: #000000; }
4204-.listing_code .programlisting .number { color: #75507b; } /* tango: plum 2 */
4205+.listing_code .programlisting .function,
4206+.listing_code .programlisting .function a,
4207 .listing_code .programlisting .preproc { color: #204a87; } /* tango: sky blue 3 */
4208-.listing_code .programlisting .string { color: #c17d11; } /* tango: chocolate 2 */
4209-.listing_code .programlisting .type { color: #000000; }
4210-.listing_code .programlisting .type a { color: #11326b; } /* tango: sky blue 4 */
4211-.listing_code .programlisting .symbol { color: #ce5c00; } /* tango: orange 3 */
4212+.listing_code .programlisting .string { color: #ad7fa8; } /* tango: plum */
4213+.listing_code .programlisting .keyword,
4214+.listing_code .programlisting .usertype,
4215+.listing_code .programlisting .type,
4216+.listing_code .programlisting .type a { color: #4e9a06; } /* tango: chameleon 3 */
4217
4218 .listing_frame {
4219 /* tango:sky blue 1 */
4220@@ -433,11 +324,6 @@
4221 padding: 0.5em;
4222 }
4223 .listing_lines {
4224- /* this just adds visual clutter and
4225- takes precious room from small screens */
4226- display: none;
4227-}
4228-.listing_lines {
4229 /* tango:sky blue 0.5 */
4230 background: #a6c5e3;
4231 background: rgba(114, 159, 207, 0.2);
4232@@ -459,3 +345,132 @@
4233 margin: 0px;
4234 }
4235
4236+@media screen {
4237+ sup a.footnote
4238+ {
4239+ position: relative;
4240+ top: 0em ! important;
4241+ }
4242+ /* this is needed so that the local anchors are displayed below the naviagtion */
4243+ 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]
4244+ {
4245+ display: inline-block;
4246+ position: relative;
4247+ top:-5em;
4248+ }
4249+ /* this seems to be a bug in the xsl style sheets when generating indexes */
4250+ div.index div.index
4251+ {
4252+ top: 0em;
4253+ }
4254+ /* make space for the fixed navigation bar and add space at the bottom so that
4255+ * link targets appear somewhat close to top
4256+ */
4257+ body
4258+ {
4259+ padding-top: 2.5em;
4260+ padding-bottom: 500px;
4261+ max-width: 60em;
4262+ }
4263+ p
4264+ {
4265+ max-width: 60em;
4266+ }
4267+ /* style and size the navigation bar */
4268+ table.navigation#top
4269+ {
4270+ position: fixed;
4271+ background: #e2e2e2;
4272+ border-bottom: solid 1px #babdb6;
4273+ border-spacing: 5px;
4274+ margin-top: 0;
4275+ margin-bottom: 0;
4276+ top: 0;
4277+ left: 0;
4278+ z-index: 10;
4279+ }
4280+ table.navigation#top td
4281+ {
4282+ padding-left: 6px;
4283+ padding-right: 6px;
4284+ }
4285+ .navigation a, .navigation a:visited
4286+ {
4287+ /* tango:sky blue 3 */
4288+ color: #204a87;
4289+ }
4290+ .navigation a:hover
4291+ {
4292+ /* tango:sky blue 2 */
4293+ color: #3465a4;
4294+ }
4295+ td.shortcuts
4296+ {
4297+ /* tango:sky blue 2 */
4298+ color: #3465a4;
4299+ font-size: 80%;
4300+ white-space: nowrap;
4301+ }
4302+ td.shortcuts .dim
4303+ {
4304+ color: #babdb6;
4305+ }
4306+ .navigation .title
4307+ {
4308+ font-size: 80%;
4309+ max-width: none;
4310+ margin: 0px;
4311+ font-weight: normal;
4312+ }
4313+}
4314+@media screen and (min-width: 60em) {
4315+ /* screen larger than 60em */
4316+ body { margin: auto; }
4317+}
4318+@media screen and (max-width: 60em) {
4319+ /* screen less than 60em */
4320+ #nav_hierarchy { display: none; }
4321+ #nav_interfaces { display: none; }
4322+ #nav_prerequisites { display: none; }
4323+ #nav_derived_interfaces { display: none; }
4324+ #nav_implementations { display: none; }
4325+ #nav_child_properties { display: none; }
4326+ #nav_style_properties { display: none; }
4327+ #nav_index { display: none; }
4328+ #nav_glossary { display: none; }
4329+ .gallery_image { display: none; }
4330+ .property_flags { display: none; }
4331+ .signal_flags { display: none; }
4332+ .parameter_annotations { display: none; }
4333+ .enum_member_annotations { display: none; }
4334+ .struct_member_annotations { display: none; }
4335+ .union_member_annotations { display: none; }
4336+ /* now that a column is hidden, optimize space */
4337+ col.parameters_name { width: auto; }
4338+ col.parameters_description { width: auto; }
4339+ col.struct_members_name { width: auto; }
4340+ col.struct_members_description { width: auto; }
4341+ col.enum_members_name { width: auto; }
4342+ col.enum_members_description { width: auto; }
4343+ col.union_members_name { width: auto; }
4344+ col.union_members_description { width: auto; }
4345+ .listing_lines { display: none; }
4346+}
4347+@media print {
4348+ table.navigation {
4349+ visibility: collapse;
4350+ display: none;
4351+ }
4352+ div.titlepage table.navigation {
4353+ visibility: visible;
4354+ display: table;
4355+ background: #e2e2e2;
4356+ border: solid 1px #babdb6;
4357+ margin-top: 0;
4358+ margin-bottom: 0;
4359+ top: 0;
4360+ left: 0;
4361+ height: 3em;
4362+ }
4363+}
4364+
4365
4366=== modified file 'docs/references/version.xml'
4367--- docs/references/version.xml 2014-06-23 08:06:22 +0000
4368+++ docs/references/version.xml 2015-01-04 19:54:48 +0000
4369@@ -1,1 +1,1 @@
4370-4.11.1
4371+4.11.2
4372
4373=== modified file 'libxfce4panel/libxfce4panel-config.h'
4374--- libxfce4panel/libxfce4panel-config.h 2014-06-23 08:06:22 +0000
4375+++ libxfce4panel/libxfce4panel-config.h 2015-01-04 19:54:48 +0000
4376@@ -34,7 +34,7 @@
4377 *
4378 * Since: 4.8
4379 **/
4380-#define LIBXFCE4PANEL_VERSION ("4.11.1")
4381+#define LIBXFCE4PANEL_VERSION ("4.11.2")
4382
4383 /**
4384 * LIBXFCE4PANEL_MAJOR_VERSION:
4385@@ -70,7 +70,7 @@
4386 *
4387 * Since: 4.8
4388 **/
4389-#define LIBXFCE4PANEL_MICRO_VERSION (1)
4390+#define LIBXFCE4PANEL_MICRO_VERSION (2)
4391
4392 /**
4393 * LIBXFCE4PANEL_CHECK_VERSION:
4394
4395=== modified file 'ltmain.sh'
4396--- ltmain.sh 2014-06-23 08:06:22 +0000
4397+++ ltmain.sh 2015-01-04 19:54:48 +0000
4398@@ -70,7 +70,7 @@
4399 # compiler: $LTCC
4400 # compiler flags: $LTCFLAGS
4401 # linker: $LD (gnu? $with_gnu_ld)
4402-# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7ubuntu1
4403+# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.10ubuntu1
4404 # automake: $automake_version
4405 # autoconf: $autoconf_version
4406 #
4407@@ -80,7 +80,7 @@
4408
4409 PROGRAM=libtool
4410 PACKAGE=libtool
4411-VERSION="2.4.2 Debian-2.4.2-1.7ubuntu1"
4412+VERSION="2.4.2 Debian-2.4.2-1.10ubuntu1"
4413 TIMESTAMP=""
4414 package_revision=1.3337
4415
4416
4417=== modified file 'panel/Makefile.am'
4418--- panel/Makefile.am 2014-02-12 15:41:39 +0000
4419+++ panel/Makefile.am 2015-01-04 19:54:48 +0000
4420@@ -8,6 +8,7 @@
4421 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \
4422 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
4423 -DDBUS_API_SUBJECT_TO_CHANGE \
4424+ -DWNCK_I_KNOW_THIS_IS_UNSTABLE \
4425 $(PLATFORM_CPPFLAGS)
4426
4427 bin_PROGRAMS = \
4428@@ -65,6 +66,7 @@
4429 $(DBUS_CFLAGS) \
4430 $(XFCONF_CFLAGS) \
4431 $(LIBX11_CFLAGS) \
4432+ $(LIBWNCK_CFLAGS) \
4433 $(PLATFORM_CFLAGS)
4434
4435 xfce4_panel_LDFLAGS = \
4436@@ -83,6 +85,7 @@
4437 $(XFCONF_LIBS) \
4438 $(DBUS_LIBS) \
4439 $(LIBX11_LIBS) \
4440+ $(LIBWNCK_LIBS) \
4441 -lm
4442
4443 xfce4_panel_DEPENDENCIES = \
4444
4445=== modified file 'panel/Makefile.in'
4446--- panel/Makefile.in 2014-06-23 08:06:22 +0000
4447+++ panel/Makefile.in 2015-01-04 19:54:48 +0000
4448@@ -424,6 +424,7 @@
4449 -DHELPERDIR=\"$(HELPER_PATH_PREFIX)/xfce4/panel\" \
4450 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
4451 -DDBUS_API_SUBJECT_TO_CHANGE \
4452+ -DWNCK_I_KNOW_THIS_IS_UNSTABLE \
4453 $(PLATFORM_CPPFLAGS)
4454
4455 xfce4_panel_built_sources = \
4456@@ -478,6 +479,7 @@
4457 $(DBUS_CFLAGS) \
4458 $(XFCONF_CFLAGS) \
4459 $(LIBX11_CFLAGS) \
4460+ $(LIBWNCK_CFLAGS) \
4461 $(PLATFORM_CFLAGS)
4462
4463 xfce4_panel_LDFLAGS = \
4464@@ -496,6 +498,7 @@
4465 $(XFCONF_LIBS) \
4466 $(DBUS_LIBS) \
4467 $(LIBX11_LIBS) \
4468+ $(LIBWNCK_LIBS) \
4469 -lm
4470
4471 xfce4_panel_DEPENDENCIES = \
4472
4473=== modified file 'panel/main.c'
4474--- panel/main.c 2014-02-12 15:41:39 +0000
4475+++ panel/main.c 2015-01-04 19:54:48 +0000
4476@@ -136,7 +136,7 @@
4477 panel_debug (PANEL_DEBUG_MAIN,
4478 "received signal %s <%d>, %s panel",
4479 g_strsignal (signum), signum,
4480- signum == SIGUSR1 ? "restarting" : "quiting");
4481+ signum == SIGUSR1 ? "restarting" : "quitting");
4482
4483 panel_dbus_service_exit_panel (signum == SIGUSR1);
4484 }
4485
4486=== modified file 'panel/panel-application.c'
4487--- panel/panel-application.c 2014-02-12 15:41:39 +0000
4488+++ panel/panel-application.c 2015-01-04 19:54:48 +0000
4489@@ -289,7 +289,7 @@
4490 const PanelProperty properties[] =
4491 {
4492 { "position-locked", G_TYPE_BOOLEAN },
4493- { "autohide", G_TYPE_BOOLEAN },
4494+ { "autohide-behavior", G_TYPE_UINT },
4495 { "span-monitors", G_TYPE_BOOLEAN },
4496 { "mode", G_TYPE_UINT },
4497 { "size", G_TYPE_UINT },
4498@@ -313,6 +313,9 @@
4499 /* create the property base */
4500 property_base = g_strdup_printf ("/panels/panel-%d", panel_window_get_id (window));
4501
4502+ /* migrate old autohide property */
4503+ panel_window_migrate_autohide_property (window, application->xfconf, property_base);
4504+
4505 /* bind all the properties */
4506 panel_properties_bind (application->xfconf, G_OBJECT (window),
4507 property_base, properties, save_properties);
4508
4509=== modified file 'panel/panel-preferences-dialog-ui.h'
4510--- panel/panel-preferences-dialog-ui.h 2014-02-12 15:41:39 +0000
4511+++ panel/panel-preferences-dialog-ui.h 2015-01-04 19:54:48 +0000
4512@@ -17,472 +17,486 @@
4513 "columns><column type=\"gint\"/><column type=\"gchararray\"/></columns><"
4514 "/object><object class=\"GtkListStore\" id=\"output-store\"><columns><co"
4515 "lumn type=\"gchararray\"/><column type=\"gchararray\"/></columns></obje"
4516- "ct><object class=\"GtkListStore\" id=\"styles-store\"><columns><column "
4517- "type=\"gchararray\"/></columns><data><row><col id=\"0\" translatable=\""
4518- "yes\">None (use system style)</col></row><row><col id=\"0\" translatabl"
4519- "e=\"yes\">Solid color</col></row><row><col id=\"0\" translatable=\"yes\""
4520- ">Background image</col></row></data></object><object class=\"GtkAdjustm"
4521- "ent\" id=\"size\"><property name=\"value\">16</property><property name="
4522- "\"lower\">16</property><property name=\"upper\">128</property><property"
4523- " name=\"step_increment\">1</property><property name=\"page_increment\">"
4524- "10</property></object><object class=\"GtkAdjustment\" id=\"length\"><pr"
4525- "operty name=\"value\">25</property><property name=\"lower\">1</property"
4526- "><property name=\"upper\">100</property><property name=\"step_increment"
4527- "\">1</property><property name=\"page_increment\">10</property></object>"
4528- "<object class=\"GtkAdjustment\" id=\"nrows\"><property name=\"value\">1"
4529- "</property><property name=\"lower\">1</property><property name=\"upper\""
4530- ">6</property><property name=\"step_increment\">1</property><property na"
4531- "me=\"page_increment\">1</property></object><object class=\"GtkAdjustmen"
4532- "t\" id=\"background-alpha\"><property name=\"value\">100</property><pro"
4533- "perty name=\"upper\">100</property><property name=\"step_increment\">1<"
4534- "/property><property name=\"page_increment\">10</property></object><obje"
4535- "ct class=\"GtkAdjustment\" id=\"enter-opacity\"><property name=\"value\""
4536- ">100</property><property name=\"upper\">100</property><property name=\""
4537- "step_increment\">1</property><property name=\"page_increment\">10</prop"
4538- "erty></object><object class=\"GtkAdjustment\" id=\"leave-opacity\"><pro"
4539- "perty name=\"value\">100</property><property name=\"upper\">100</proper"
4540- "ty><property name=\"step_increment\">1</property><property name=\"page_"
4541- "increment\">10</property></object><object class=\"GtkSizeGroup\" id=\"d"
4542- "isplay-sizegroup\"><widgets><widget name=\"label13\"/><widget name=\"la"
4543- "bel1\"/></widgets></object><object class=\"GtkSizeGroup\" id=\"bg-sizeg"
4544- "roup\"><widgets><widget name=\"label7\"/><widget name=\"label15\"/><wid"
4545- "get name=\"label16\"/><widget name=\"label19\"/></widgets></object><obj"
4546- "ect class=\"XfceTitledDialog\" id=\"dialog\"><property name=\"title\" t"
4547- "ranslatable=\"yes\">Panel</property><property name=\"window_position\">"
4548- "center-on-parent</property><property name=\"icon_name\">xfce4-panel</pr"
4549- "operty><property name=\"type_hint\">normal</property><property name=\"h"
4550- "as_separator\">False</property><child internal-child=\"vbox\"><object c"
4551- "lass=\"GtkVBox\" id=\"dialog-vbox1\"><property name=\"visible\">True</p"
4552- "roperty><property name=\"orientation\">vertical</property><property nam"
4553- "e=\"spacing\">2</property><child><object class=\"GtkVBox\" id=\"plug-ch"
4554- "ild\"><property name=\"visible\">True</property><property name=\"border"
4555- "_width\">6</property><property name=\"orientation\">vertical</property>"
4556- "<property name=\"spacing\">12</property><child><object class=\"GtkHBox\""
4557- " id=\"hbox3\"><property name=\"visible\">True</property><property name="
4558- "\"spacing\">6</property><child><object class=\"GtkComboBox\" id=\"panel"
4559- "-combobox\"><property name=\"visible\">True</property><property name=\""
4560- "model\">panel-store</property><child><object class=\"GtkCellRendererTex"
4561- "t\" id=\"cellrenderertext2\"/><attributes><attribute name=\"text\">1</a"
4562- "ttribute></attributes></child></object><packing><property name=\"positi"
4563- "on\">0</property></packing></child><child><object class=\"GtkButton\" i"
4564- "d=\"panel-add\"><property name=\"visible\">True</property><property nam"
4565- "e=\"can_focus\">True</property><property name=\"receives_default\">True"
4566- "</property><property name=\"tooltip_text\" translatable=\"yes\">Add a n"
4567- "ew panel</property><child><object class=\"GtkImage\" id=\"image1\"><pro"
4568- "perty name=\"visible\">True</property><property name=\"stock\">gtk-add<"
4569- "/property></object></child></object><packing><property name=\"expand\">"
4570- "False</property><property name=\"position\">1</property></packing></chi"
4571- "ld><child><object class=\"GtkButton\" id=\"panel-remove\"><property nam"
4572- "e=\"visible\">True</property><property name=\"sensitive\">False</proper"
4573- "ty><property name=\"can_focus\">True</property><property name=\"receive"
4574- "s_default\">True</property><property name=\"tooltip_text\" translatable"
4575- "=\"yes\">Remove the currently selected panel</property><child><object c"
4576- "lass=\"GtkImage\" id=\"image2\"><property name=\"visible\">True</proper"
4577- "ty><property name=\"stock\">gtk-remove</property></object></child></obj"
4578- "ect><packing><property name=\"expand\">False</property><property name=\""
4579- "position\">2</property></packing></child></object><packing><property na"
4580- "me=\"expand\">False</property><property name=\"position\">0</property><"
4581- "/packing></child><child><object class=\"GtkNotebook\" id=\"notebook\"><"
4582- "property name=\"visible\">True</property><property name=\"sensitive\">F"
4583- "alse</property><property name=\"can_focus\">True</property><child><obje"
4584- "ct class=\"GtkVBox\" id=\"vbox2\"><property name=\"visible\">True</prop"
4585- "erty><property name=\"border_width\">6</property><property name=\"orien"
4586- "tation\">vertical</property><property name=\"spacing\">6</property><chi"
4587- "ld><object class=\"GtkFrame\" id=\"frame1\"><property name=\"visible\">"
4588- "True</property><property name=\"label_xalign\">0</property><property na"
4589- "me=\"shadow_type\">none</property><child><object class=\"GtkAlignment\""
4590- " id=\"alignment1\"><property name=\"visible\">True</property><property "
4591- "name=\"left_padding\">12</property><child><object class=\"GtkVBox\" id="
4592- "\"vbox3\"><property name=\"visible\">True</property><property name=\"bo"
4593- "rder_width\">6</property><property name=\"orientation\">vertical</prope"
4594- "rty><property name=\"spacing\">6</property><child><object class=\"GtkHB"
4595- "ox\" id=\"hbox1\"><property name=\"visible\">True</property><property n"
4596- "ame=\"spacing\">12</property><child><object class=\"GtkLabel\" id=\"lab"
4597- "el1\"><property name=\"visible\">True</property><property name=\"xalign"
4598- "\">0</property><property name=\"label\" translatable=\"yes\">M_ode:</pr"
4599- "operty><property name=\"use_underline\">True</property><property name=\""
4600- "mnemonic_widget\">mode</property></object><packing><property name=\"exp"
4601- "and\">False</property><property name=\"position\">0</property></packing"
4602- "></child><child><object class=\"GtkComboBox\" id=\"mode\"><property nam"
4603- "e=\"visible\">True</property><property name=\"model\">mode-store</prope"
4604- "rty><child><object class=\"GtkCellRendererText\" id=\"cellrenderertext1"
4605- "\"/><attributes><attribute name=\"text\">0</attribute></attributes></ch"
4606- "ild></object><packing><property name=\"expand\">False</property><proper"
4607- "ty name=\"position\">1</property></packing></child></object><packing><p"
4608- "roperty name=\"position\">0</property></packing></child><child><object "
4609- "class=\"GtkHBox\" id=\"output-box\"><property name=\"visible\">True</pr"
4610- "operty><property name=\"spacing\">12</property><child><object class=\"G"
4611- "tkLabel\" id=\"label13\"><property name=\"visible\">True</property><pro"
4612- "perty name=\"xalign\">0</property><property name=\"label\" translatable"
4613- "=\"yes\">O_utput:</property><property name=\"use_underline\">True</prop"
4614- "erty><property name=\"mnemonic_widget\">output-name</property></object>"
4615- "<packing><property name=\"expand\">False</property><property name=\"pos"
4616- "ition\">0</property></packing></child><child><object class=\"GtkComboBo"
4617- "x\" id=\"output-name\"><property name=\"visible\">True</property><prope"
4618- "rty name=\"model\">output-store</property><child><object class=\"GtkCel"
4619- "lRendererText\" id=\"cellrenderertext3\"/><attributes><attribute name=\""
4620- "text\">1</attribute></attributes></child></object><packing><property na"
4621- "me=\"expand\">False</property><property name=\"position\">1</property><"
4622- "/packing></child></object><packing><property name=\"position\">1</prope"
4623- "rty></packing></child><child><object class=\"GtkCheckButton\" id=\"span"
4624- "-monitors\"><property name=\"label\" translatable=\"yes\">Span mo_nitor"
4625- "s</property><property name=\"visible\">True</property><property name=\""
4626- "can_focus\">True</property><property name=\"receives_default\">False</p"
4627- "roperty><property name=\"tooltip_text\" translatable=\"yes\">Select thi"
4628- "s option to extend the panel over multiple monitors.</property><propert"
4629- "y name=\"use_underline\">True</property><property name=\"draw_indicator"
4630- "\">True</property></object><packing><property name=\"position\">2</prop"
4631- "erty></packing></child><child><object class=\"GtkCheckButton\" id=\"pos"
4632- "ition-locked\"><property name=\"label\" translatable=\"yes\">_Lock pane"
4633- "l</property><property name=\"visible\">True</property><property name=\""
4634- "can_focus\">True</property><property name=\"receives_default\">False</p"
4635- "roperty><property name=\"tooltip_text\" translatable=\"yes\">Select thi"
4636- "s option to hide the handles of the panel and lock its position.</prope"
4637- "rty><property name=\"use_underline\">True</property><property name=\"dr"
4638- "aw_indicator\">True</property></object><packing><property name=\"positi"
4639- "on\">3</property></packing></child><child><object class=\"GtkCheckButto"
4640- "n\" id=\"autohide\"><property name=\"label\" translatable=\"yes\">Autom"
4641- "atically show and _hide the panel</property><property name=\"visible\">"
4642- "True</property><property name=\"can_focus\">True</property><property na"
4643- "me=\"receives_default\">False</property><property name=\"tooltip_text\""
4644- " translatable=\"yes\">Select this option to hide the panel when the poi"
4645- "nter is not above it. This only works when the panel is attached to a s"
4646- "creen edge.</property><property name=\"use_underline\">True</property><"
4647- "property name=\"draw_indicator\">True</property></object><packing><prop"
4648- "erty name=\"position\">4</property></packing></child><child><object cla"
4649- "ss=\"GtkCheckButton\" id=\"disable-struts\"><property name=\"label\" tr"
4650- "anslatable=\"yes\">Don\'t _reserve space on borders</property><property"
4651- " name=\"visible\">True</property><property name=\"can_focus\">True</pro"
4652- "perty><property name=\"receives_default\">False</property><property nam"
4653- "e=\"tooltip_text\" translatable=\"yes\">Select this option if you want "
4654- "maximized windows to cover the area behind the panel. This only works w"
4655- "hen the panel is attached to a screen edge.</property><property name=\""
4656- "use_underline\">True</property><property name=\"draw_indicator\">True</"
4657- "property></object><packing><property name=\"position\">5</property></pa"
4658- "cking></child></object></child></object></child><child type=\"label\"><"
4659- "object class=\"GtkLabel\" id=\"label2\"><property name=\"visible\">True"
4660- "</property><property name=\"label\" translatable=\"yes\">General</prope"
4661- "rty><attributes><attribute name=\"weight\" value=\"bold\"/></attributes"
4662- "></object></child></object><packing><property name=\"expand\">False</pr"
4663- "operty><property name=\"position\">0</property></packing></child><child"
4664- "><object class=\"GtkFrame\" id=\"frame2\"><property name=\"visible\">Tr"
4665- "ue</property><property name=\"label_xalign\">0</property><property name"
4666- "=\"shadow_type\">none</property><child><object class=\"GtkAlignment\" i"
4667- "d=\"alignment2\"><property name=\"visible\">True</property><property na"
4668- "me=\"left_padding\">12</property><child><object class=\"GtkTable\" id=\""
4669- "table1\"><property name=\"visible\">True</property><property name=\"bor"
4670- "der_width\">6</property><property name=\"n_rows\">4</property><property"
4671- " name=\"n_columns\">2</property><property name=\"column_spacing\">12</p"
4672- "roperty><property name=\"row_spacing\">6</property><child><object class"
4673- "=\"GtkLabel\" id=\"label3\"><property name=\"visible\">True</property><"
4674- "property name=\"xalign\">0</property><property name=\"label\" translata"
4675- "ble=\"yes\">Row _Size (pixels):</property><property name=\"use_underlin"
4676- "e\">True</property><property name=\"mnemonic_widget\">size-scale</prope"
4677- "rty></object><packing><property name=\"x_options\">GTK_FILL</property><"
4678- "/packing></child><child><object class=\"GtkLabel\" id=\"label4\"><prope"
4679- "rty name=\"visible\">True</property><property name=\"xalign\">0</proper"
4680- "ty><property name=\"label\" translatable=\"yes\">L_ength (%):</property"
4681- "><property name=\"use_underline\">True</property><property name=\"mnemo"
4682- "nic_widget\">length-scale</property></object><packing><property name=\""
4683- "top_attach\">2</property><property name=\"bottom_attach\">3</property><"
4684- "property name=\"x_options\">GTK_FILL</property></packing></child><child"
4685- "><object class=\"GtkLabel\" id=\"label18\"><property name=\"visible\">T"
4686- "rue</property><property name=\"xalign\">0</property><property name=\"la"
4687- "bel\" translatable=\"yes\">Num_ber of rows:</property><property name=\""
4688- "use_underline\">True</property><property name=\"mnemonic_widget\">nrows"
4689- "-scale</property></object><packing><property name=\"top_attach\">1</pro"
4690- "perty><property name=\"bottom_attach\">2</property><property name=\"x_o"
4691- "ptions\">GTK_FILL</property></packing></child><child><object class=\"Gt"
4692- "kHScale\" id=\"length-scale\"><property name=\"visible\">True</property"
4693- "><property name=\"can_focus\">True</property><property name=\"update_po"
4694- "licy\">discontinuous</property><property name=\"adjustment\">length</pr"
4695- "operty><property name=\"digits\">0</property><property name=\"value_pos"
4696- "\">right</property></object><packing><property name=\"left_attach\">1</"
4697- "property><property name=\"right_attach\">2</property><property name=\"t"
4698- "op_attach\">2</property><property name=\"bottom_attach\">3</property></"
4699- "packing></child><child><object class=\"GtkHScale\" id=\"size-scale\"><p"
4700- "roperty name=\"visible\">True</property><property name=\"can_focus\">Tr"
4701- "ue</property><property name=\"update_policy\">discontinuous</property><"
4702- "property name=\"adjustment\">size</property><property name=\"digits\">0"
4703- "</property><property name=\"value_pos\">right</property></object><packi"
4704- "ng><property name=\"left_attach\">1</property><property name=\"right_at"
4705- "tach\">2</property></packing></child><child><object class=\"GtkHScale\""
4706- " id=\"nrows-scale\"><property name=\"visible\">True</property><property"
4707- " name=\"can_focus\">True</property><property name=\"update_policy\">dis"
4708- "continuous</property><property name=\"adjustment\">nrows</property><pro"
4709- "perty name=\"digits\">0</property><property name=\"value_pos\">right</p"
4710- "roperty></object><packing><property name=\"left_attach\">1</property><p"
4711- "roperty name=\"right_attach\">2</property><property name=\"top_attach\""
4712- ">1</property><property name=\"bottom_attach\">2</property></packing></c"
4713- "hild><child><object class=\"GtkCheckButton\" id=\"length-adjust\"><prop"
4714- "erty name=\"label\" translatable=\"yes\">A_utomatically increase the le"
4715- "ngth</property><property name=\"visible\">True</property><property name"
4716- "=\"can_focus\">True</property><property name=\"receives_default\">False"
4717- "</property><property name=\"tooltip_text\" translatable=\"yes\">Select "
4718- "this option to automatically increase the length of the panel if the pl"
4719- "ugins request more space.</property><property name=\"use_underline\">Tr"
4720- "ue</property><property name=\"draw_indicator\">True</property></object>"
4721- "<packing><property name=\"right_attach\">2</property><property name=\"t"
4722- "op_attach\">3</property><property name=\"bottom_attach\">4</property></"
4723- "packing></child></object></child></object></child><child type=\"label\""
4724- "><object class=\"GtkLabel\" id=\"label5\"><property name=\"visible\">Tr"
4725- "ue</property><property name=\"label\" translatable=\"yes\" comments=\"I"
4726- "18N: name of the section (frame) in the panel preferences where the use"
4727- "r can define the length and size of the panel\">Measurements</property>"
4728- "<attributes><attribute name=\"weight\" value=\"bold\"/></attributes></o"
4729- "bject></child></object><packing><property name=\"expand\">False</proper"
4730- "ty><property name=\"position\">1</property></packing></child></object><"
4731- "/child><child type=\"tab\"><object class=\"GtkLabel\" id=\"label6\"><pr"
4732- "operty name=\"visible\">True</property><property name=\"label\" transla"
4733- "table=\"yes\">D_isplay</property><property name=\"use_underline\">True<"
4734- "/property></object><packing><property name=\"tab_fill\">False</property"
4735- "></packing></child><child><object class=\"GtkVBox\" id=\"vbox7\"><prope"
4736+ "ct><object class=\"GtkListStore\" id=\"autohide-behavior-store\"><colum"
4737+ "ns><column type=\"gchararray\"/></columns><data><row><col id=\"0\" tran"
4738+ "slatable=\"yes\">Never</col></row><row><col id=\"0\" translatable=\"yes"
4739+ "\">Intelligently</col></row><row><col id=\"0\" translatable=\"yes\">Alw"
4740+ "ays</col></row></data></object><object class=\"GtkListStore\" id=\"styl"
4741+ "es-store\"><columns><column type=\"gchararray\"/></columns><data><row><"
4742+ "col id=\"0\" translatable=\"yes\">None (use system style)</col></row><r"
4743+ "ow><col id=\"0\" translatable=\"yes\">Solid color</col></row><row><col "
4744+ "id=\"0\" translatable=\"yes\">Background image</col></row></data></obje"
4745+ "ct><object class=\"GtkAdjustment\" id=\"size\"><property name=\"value\""
4746+ ">16</property><property name=\"lower\">16</property><property name=\"up"
4747+ "per\">128</property><property name=\"step_increment\">1</property><prop"
4748+ "erty name=\"page_increment\">10</property></object><object class=\"GtkA"
4749+ "djustment\" id=\"length\"><property name=\"value\">25</property><proper"
4750+ "ty name=\"lower\">1</property><property name=\"upper\">100</property><p"
4751+ "roperty name=\"step_increment\">1</property><property name=\"page_incre"
4752+ "ment\">10</property></object><object class=\"GtkAdjustment\" id=\"nrows"
4753+ "\"><property name=\"value\">1</property><property name=\"lower\">1</pro"
4754+ "perty><property name=\"upper\">6</property><property name=\"step_increm"
4755+ "ent\">1</property><property name=\"page_increment\">1</property></objec"
4756+ "t><object class=\"GtkAdjustment\" id=\"background-alpha\"><property nam"
4757+ "e=\"value\">100</property><property name=\"upper\">100</property><prope"
4758+ "rty name=\"step_increment\">1</property><property name=\"page_increment"
4759+ "\">10</property></object><object class=\"GtkAdjustment\" id=\"enter-opa"
4760+ "city\"><property name=\"value\">100</property><property name=\"upper\">"
4761+ "100</property><property name=\"step_increment\">1</property><property n"
4762+ "ame=\"page_increment\">10</property></object><object class=\"GtkAdjustm"
4763+ "ent\" id=\"leave-opacity\"><property name=\"value\">100</property><prop"
4764+ "erty name=\"upper\">100</property><property name=\"step_increment\">1</"
4765+ "property><property name=\"page_increment\">10</property></object><objec"
4766+ "t class=\"GtkSizeGroup\" id=\"display-sizegroup\"><widgets><widget name"
4767+ "=\"label13\"/><widget name=\"label1\"/></widgets></object><object class"
4768+ "=\"GtkSizeGroup\" id=\"bg-sizegroup\"><widgets><widget name=\"label7\"/"
4769+ "><widget name=\"label15\"/><widget name=\"label16\"/><widget name=\"lab"
4770+ "el19\"/></widgets></object><object class=\"XfceTitledDialog\" id=\"dial"
4771+ "og\"><property name=\"title\" translatable=\"yes\">Panel</property><pro"
4772+ "perty name=\"window_position\">center-on-parent</property><property nam"
4773+ "e=\"icon_name\">xfce4-panel</property><property name=\"type_hint\">norm"
4774+ "al</property><property name=\"has_separator\">False</property><child in"
4775+ "ternal-child=\"vbox\"><object class=\"GtkVBox\" id=\"dialog-vbox1\"><pr"
4776+ "operty name=\"visible\">True</property><property name=\"orientation\">v"
4777+ "ertical</property><property name=\"spacing\">2</property><child><object"
4778+ " class=\"GtkVBox\" id=\"plug-child\"><property name=\"visible\">True</p"
4779+ "roperty><property name=\"border_width\">6</property><property name=\"or"
4780+ "ientation\">vertical</property><property name=\"spacing\">12</property>"
4781+ "<child><object class=\"GtkHBox\" id=\"hbox3\"><property name=\"visible\""
4782+ ">True</property><property name=\"spacing\">6</property><child><object c"
4783+ "lass=\"GtkComboBox\" id=\"panel-combobox\"><property name=\"visible\">T"
4784+ "rue</property><property name=\"model\">panel-store</property><child><ob"
4785+ "ject class=\"GtkCellRendererText\" id=\"cellrenderertext2\"/><attribute"
4786+ "s><attribute name=\"text\">1</attribute></attributes></child></object><"
4787+ "packing><property name=\"position\">0</property></packing></child><chil"
4788+ "d><object class=\"GtkButton\" id=\"panel-add\"><property name=\"visible"
4789+ "\">True</property><property name=\"can_focus\">True</property><property"
4790+ " name=\"receives_default\">True</property><property name=\"tooltip_text"
4791+ "\" translatable=\"yes\">Add a new panel</property><child><object class="
4792+ "\"GtkImage\" id=\"image1\"><property name=\"visible\">True</property><p"
4793+ "roperty name=\"stock\">gtk-add</property></object></child></object><pac"
4794+ "king><property name=\"expand\">False</property><property name=\"positio"
4795+ "n\">1</property></packing></child><child><object class=\"GtkButton\" id"
4796+ "=\"panel-remove\"><property name=\"visible\">True</property><property n"
4797+ "ame=\"sensitive\">False</property><property name=\"can_focus\">True</pr"
4798+ "operty><property name=\"receives_default\">True</property><property nam"
4799+ "e=\"tooltip_text\" translatable=\"yes\">Remove the currently selected p"
4800+ "anel</property><child><object class=\"GtkImage\" id=\"image2\"><propert"
4801+ "y name=\"visible\">True</property><property name=\"stock\">gtk-remove</"
4802+ "property></object></child></object><packing><property name=\"expand\">F"
4803+ "alse</property><property name=\"position\">2</property></packing></chil"
4804+ "d></object><packing><property name=\"expand\">False</property><property"
4805+ " name=\"position\">0</property></packing></child><child><object class=\""
4806+ "GtkNotebook\" id=\"notebook\"><property name=\"visible\">True</property"
4807+ "><property name=\"sensitive\">False</property><property name=\"can_focu"
4808+ "s\">True</property><child><object class=\"GtkVBox\" id=\"vbox2\"><prope"
4809 "rty name=\"visible\">True</property><property name=\"border_width\">6</"
4810 "property><property name=\"orientation\">vertical</property><property na"
4811 "me=\"spacing\">6</property><child><object class=\"GtkFrame\" id=\"frame"
4812- "3\"><property name=\"visible\">True</property><property name=\"label_xa"
4813+ "1\"><property name=\"visible\">True</property><property name=\"label_xa"
4814 "lign\">0</property><property name=\"shadow_type\">none</property><child"
4815- "><object class=\"GtkAlignment\" id=\"alignment3\"><property name=\"visi"
4816+ "><object class=\"GtkAlignment\" id=\"alignment1\"><property name=\"visi"
4817 "ble\">True</property><property name=\"left_padding\">12</property><chil"
4818- "d><object class=\"GtkVBox\" id=\"vbox4\"><property name=\"visible\">Tru"
4819+ "d><object class=\"GtkVBox\" id=\"vbox3\"><property name=\"visible\">Tru"
4820 "e</property><property name=\"border_width\">6</property><property name="
4821 "\"orientation\">vertical</property><property name=\"spacing\">6</proper"
4822- "ty><child><object class=\"GtkHBox\" id=\"hbox2\"><property name=\"visib"
4823+ "ty><child><object class=\"GtkHBox\" id=\"hbox1\"><property name=\"visib"
4824 "le\">True</property><property name=\"spacing\">12</property><child><obj"
4825- "ect class=\"GtkLabel\" id=\"label7\"><property name=\"visible\">True</p"
4826+ "ect class=\"GtkLabel\" id=\"label1\"><property name=\"visible\">True</p"
4827 "roperty><property name=\"xalign\">0</property><property name=\"label\" "
4828- "translatable=\"yes\">_Style:</property><property name=\"use_underline\""
4829- ">True</property><property name=\"mnemonic_widget\">background-style</pr"
4830- "operty></object><packing><property name=\"expand\">False</property><pro"
4831- "perty name=\"position\">0</property></packing></child><child><object cl"
4832- "ass=\"GtkComboBox\" id=\"background-style\"><property name=\"visible\">"
4833- "True</property><property name=\"model\">styles-store</property><child><"
4834- "object class=\"GtkCellRendererText\" id=\"cellrenderertext4\"/><attribu"
4835- "tes><attribute name=\"text\">0</attribute></attributes></child></object"
4836- "><packing><property name=\"expand\">False</property><property name=\"po"
4837- "sition\">1</property></packing></child></object><packing><property name"
4838- "=\"position\">0</property></packing></child><child><object class=\"GtkH"
4839- "Box\" id=\"bg-alpha-box\"><property name=\"visible\">True</property><pr"
4840- "operty name=\"spacing\">12</property><child><object class=\"GtkLabel\" "
4841- "id=\"label15\"><property name=\"visible\">True</property><property name"
4842- "=\"xalign\">0</property><property name=\"label\" translatable=\"yes\">_"
4843- "Alpha:</property><property name=\"use_underline\">True</property><prope"
4844- "rty name=\"mnemonic_widget\">bg-alpha-scale</property></object><packing"
4845- "><property name=\"expand\">False</property><property name=\"position\">"
4846- "0</property></packing></child><child><object class=\"GtkHScale\" id=\"b"
4847- "g-alpha-scale\"><property name=\"visible\">True</property><property nam"
4848- "e=\"can_focus\">True</property><property name=\"tooltip_text\" translat"
4849- "able=\"yes\">Alpha value of the panel background, with 0 being fully tr"
4850- "ansparent and 100 fully opaque.</property><property name=\"adjustment\""
4851- ">background-alpha</property><property name=\"digits\">0</property><prop"
4852- "erty name=\"value_pos\">right</property></object><packing><property nam"
4853- "e=\"position\">1</property></packing></child></object><packing><propert"
4854- "y name=\"position\">1</property></packing></child><child><object class="
4855- "\"GtkHBox\" id=\"bg-color-box\"><property name=\"visible\">True</proper"
4856- "ty><property name=\"spacing\">12</property><child><object class=\"GtkLa"
4857- "bel\" id=\"label16\"><property name=\"visible\">True</property><propert"
4858- "y name=\"xalign\">0</property><property name=\"label\" translatable=\"y"
4859- "es\">C_olor:</property><property name=\"use_underline\">True</property>"
4860- "<property name=\"mnemonic_widget\">background-color</property></object>"
4861- "<packing><property name=\"expand\">False</property><property name=\"pos"
4862- "ition\">0</property></packing></child><child><object class=\"GtkColorBu"
4863- "tton\" id=\"background-color\"><property name=\"visible\">True</propert"
4864- "y><property name=\"can_focus\">True</property><property name=\"receives"
4865- "_default\">True</property><property name=\"title\" translatable=\"yes\""
4866- ">Pick a Panel Color</property><property name=\"color\">#000000000000</p"
4867- "roperty></object><packing><property name=\"expand\">False</property><pr"
4868+ "translatable=\"yes\">M_ode:</property><property name=\"use_underline\">"
4869+ "True</property><property name=\"mnemonic_widget\">mode</property></obje"
4870+ "ct><packing><property name=\"expand\">False</property><property name=\""
4871+ "position\">0</property></packing></child><child><object class=\"GtkComb"
4872+ "oBox\" id=\"mode\"><property name=\"visible\">True</property><property "
4873+ "name=\"model\">mode-store</property><child><object class=\"GtkCellRende"
4874+ "rerText\" id=\"cellrenderertext1\"/><attributes><attribute name=\"text\""
4875+ ">0</attribute></attributes></child></object><packing><property name=\"e"
4876+ "xpand\">False</property><property name=\"position\">1</property></packi"
4877+ "ng></child></object><packing><property name=\"position\">0</property></"
4878+ "packing></child><child><object class=\"GtkHBox\" id=\"output-box\"><pro"
4879+ "perty name=\"visible\">True</property><property name=\"spacing\">12</pr"
4880+ "operty><child><object class=\"GtkLabel\" id=\"label13\"><property name="
4881+ "\"visible\">True</property><property name=\"xalign\">0</property><prope"
4882+ "rty name=\"label\" translatable=\"yes\">O_utput:</property><property na"
4883+ "me=\"use_underline\">True</property><property name=\"mnemonic_widget\">"
4884+ "output-name</property></object><packing><property name=\"expand\">False"
4885+ "</property><property name=\"position\">0</property></packing></child><c"
4886+ "hild><object class=\"GtkComboBox\" id=\"output-name\"><property name=\""
4887+ "visible\">True</property><property name=\"model\">output-store</propert"
4888+ "y><child><object class=\"GtkCellRendererText\" id=\"cellrenderertext3\""
4889+ "/><attributes><attribute name=\"text\">1</attribute></attributes></chil"
4890+ "d></object><packing><property name=\"expand\">False</property><property"
4891+ " name=\"position\">1</property></packing></child></object><packing><pro"
4892+ "perty name=\"position\">1</property></packing></child><child><object cl"
4893+ "ass=\"GtkCheckButton\" id=\"span-monitors\"><property name=\"label\" tr"
4894+ "anslatable=\"yes\">Span mo_nitors</property><property name=\"visible\">"
4895+ "True</property><property name=\"can_focus\">True</property><property na"
4896+ "me=\"receives_default\">False</property><property name=\"tooltip_text\""
4897+ " translatable=\"yes\">Select this option to extend the panel over multi"
4898+ "ple monitors.</property><property name=\"use_underline\">True</property"
4899+ "><property name=\"draw_indicator\">True</property></object><packing><pr"
4900+ "operty name=\"position\">2</property></packing></child><child><object c"
4901+ "lass=\"GtkCheckButton\" id=\"position-locked\"><property name=\"label\""
4902+ " translatable=\"yes\">_Lock panel</property><property name=\"visible\">"
4903+ "True</property><property name=\"can_focus\">True</property><property na"
4904+ "me=\"receives_default\">False</property><property name=\"tooltip_text\""
4905+ " translatable=\"yes\">Select this option to hide the handles of the pan"
4906+ "el and lock its position.</property><property name=\"use_underline\">Tr"
4907+ "ue</property><property name=\"draw_indicator\">True</property></object>"
4908+ "<packing><property name=\"position\">3</property></packing></child><chi"
4909+ "ld><object class=\"GtkHBox\" id=\"hbox6\"><property name=\"visible\">Tr"
4910+ "ue</property><property name=\"can_focus\">False</property><property nam"
4911+ "e=\"spacing\">12</property><child><object class=\"GtkLabel\" id=\"label"
4912+ "20\"><property name=\"visible\">True</property><property name=\"can_foc"
4913+ "us\">False</property><property name=\"xalign\">0</property><property na"
4914+ "me=\"label\" translatable=\"yes\">Automatically hide the panel:</proper"
4915+ "ty><property name=\"use_underline\">True</property><property name=\"mne"
4916+ "monic_widget\">mode</property></object><packing><property name=\"expand"
4917+ "\">False</property><property name=\"fill\">True</property><property nam"
4918+ "e=\"position\">0</property></packing></child><child><object class=\"Gtk"
4919+ "ComboBox\" id=\"autohide-behavior\"><property name=\"visible\">True</pr"
4920+ "operty><property name=\"can_focus\">False</property><property name=\"mo"
4921+ "del\">autohide-behavior-store</property><child><object class=\"GtkCellR"
4922+ "endererText\" id=\"cellrenderertext5\"/><attributes><attribute name=\"t"
4923+ "ext\">0</attribute></attributes></child></object><packing><property nam"
4924+ "e=\"expand\">False</property><property name=\"fill\">True</property><pr"
4925 "operty name=\"position\">1</property></packing></child></object><packin"
4926- "g><property name=\"position\">2</property></packing></child><child><obj"
4927- "ect class=\"GtkHBox\" id=\"bg-image-box\"><property name=\"visible\">Tr"
4928- "ue</property><property name=\"spacing\">12</property><child><object cla"
4929- "ss=\"GtkLabel\" id=\"label19\"><property name=\"visible\">True</propert"
4930- "y><property name=\"xalign\">0</property><property name=\"label\" transl"
4931- "atable=\"yes\">_File:</property><property name=\"use_underline\">True</"
4932- "property><property name=\"mnemonic_widget\">background-image</property>"
4933+ "g><property name=\"expand\">True</property><property name=\"fill\">True"
4934+ "</property><property name=\"position\">4</property></packing></child><c"
4935+ "hild><object class=\"GtkCheckButton\" id=\"disable-struts\"><property n"
4936+ "ame=\"label\" translatable=\"yes\">Don\'t _reserve space on borders</pr"
4937+ "operty><property name=\"visible\">True</property><property name=\"can_f"
4938+ "ocus\">True</property><property name=\"receives_default\">False</proper"
4939+ "ty><property name=\"tooltip_text\" translatable=\"yes\">Select this opt"
4940+ "ion if you want maximized windows to cover the area behind the panel. T"
4941+ "his only works when the panel is attached to a screen edge.</property><"
4942+ "property name=\"use_underline\">True</property><property name=\"draw_in"
4943+ "dicator\">True</property></object><packing><property name=\"position\">"
4944+ "5</property></packing></child></object></child></object></child><child "
4945+ "type=\"label\"><object class=\"GtkLabel\" id=\"label2\"><property name="
4946+ "\"visible\">True</property><property name=\"label\" translatable=\"yes\""
4947+ ">General</property><attributes><attribute name=\"weight\" value=\"bold\""
4948+ "/></attributes></object></child></object><packing><property name=\"expa"
4949+ "nd\">False</property><property name=\"position\">0</property></packing>"
4950+ "</child><child><object class=\"GtkFrame\" id=\"frame2\"><property name="
4951+ "\"visible\">True</property><property name=\"label_xalign\">0</property>"
4952+ "<property name=\"shadow_type\">none</property><child><object class=\"Gt"
4953+ "kAlignment\" id=\"alignment2\"><property name=\"visible\">True</propert"
4954+ "y><property name=\"left_padding\">12</property><child><object class=\"G"
4955+ "tkTable\" id=\"table1\"><property name=\"visible\">True</property><prop"
4956+ "erty name=\"border_width\">6</property><property name=\"n_rows\">4</pro"
4957+ "perty><property name=\"n_columns\">2</property><property name=\"column_"
4958+ "spacing\">12</property><property name=\"row_spacing\">6</property><chil"
4959+ "d><object class=\"GtkLabel\" id=\"label3\"><property name=\"visible\">T"
4960+ "rue</property><property name=\"xalign\">0</property><property name=\"la"
4961+ "bel\" translatable=\"yes\">Row _Size (pixels):</property><property name"
4962+ "=\"use_underline\">True</property><property name=\"mnemonic_widget\">si"
4963+ "ze-scale</property></object><packing><property name=\"x_options\">GTK_F"
4964+ "ILL</property></packing></child><child><object class=\"GtkLabel\" id=\""
4965+ "label4\"><property name=\"visible\">True</property><property name=\"xal"
4966+ "ign\">0</property><property name=\"label\" translatable=\"yes\">L_ength"
4967+ " (%):</property><property name=\"use_underline\">True</property><proper"
4968+ "ty name=\"mnemonic_widget\">length-scale</property></object><packing><p"
4969+ "roperty name=\"top_attach\">2</property><property name=\"bottom_attach\""
4970+ ">3</property><property name=\"x_options\">GTK_FILL</property></packing>"
4971+ "</child><child><object class=\"GtkLabel\" id=\"label18\"><property name"
4972+ "=\"visible\">True</property><property name=\"xalign\">0</property><prop"
4973+ "erty name=\"label\" translatable=\"yes\">Num_ber of rows:</property><pr"
4974+ "operty name=\"use_underline\">True</property><property name=\"mnemonic_"
4975+ "widget\">nrows-scale</property></object><packing><property name=\"top_a"
4976+ "ttach\">1</property><property name=\"bottom_attach\">2</property><prope"
4977+ "rty name=\"x_options\">GTK_FILL</property></packing></child><child><obj"
4978+ "ect class=\"GtkHScale\" id=\"length-scale\"><property name=\"visible\">"
4979+ "True</property><property name=\"can_focus\">True</property><property na"
4980+ "me=\"update_policy\">discontinuous</property><property name=\"adjustmen"
4981+ "t\">length</property><property name=\"digits\">0</property><property na"
4982+ "me=\"value_pos\">right</property></object><packing><property name=\"lef"
4983+ "t_attach\">1</property><property name=\"right_attach\">2</property><pro"
4984+ "perty name=\"top_attach\">2</property><property name=\"bottom_attach\">"
4985+ "3</property></packing></child><child><object class=\"GtkHScale\" id=\"s"
4986+ "ize-scale\"><property name=\"visible\">True</property><property name=\""
4987+ "can_focus\">True</property><property name=\"update_policy\">discontinuo"
4988+ "us</property><property name=\"adjustment\">size</property><property nam"
4989+ "e=\"digits\">0</property><property name=\"value_pos\">right</property><"
4990+ "/object><packing><property name=\"left_attach\">1</property><property n"
4991+ "ame=\"right_attach\">2</property></packing></child><child><object class"
4992+ "=\"GtkHScale\" id=\"nrows-scale\"><property name=\"visible\">True</prop"
4993+ "erty><property name=\"can_focus\">True</property><property name=\"updat"
4994+ "e_policy\">discontinuous</property><property name=\"adjustment\">nrows<"
4995+ "/property><property name=\"digits\">0</property><property name=\"value_"
4996+ "pos\">right</property></object><packing><property name=\"left_attach\">"
4997+ "1</property><property name=\"right_attach\">2</property><property name="
4998+ "\"top_attach\">1</property><property name=\"bottom_attach\">2</property"
4999+ "></packing></child><child><object class=\"GtkCheckButton\" id=\"length-"
5000+ "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: