]> gitweb.michael.orlitzky.com - xfce4-hdaps.git/blob - panel-plugin/xfce4-hdaps-dialogs.h
COPYING: update license to AGPL-3.
[xfce4-hdaps.git] / panel-plugin / xfce4-hdaps-dialogs.h
1 /*
2 * xfce4-hdaps, an XFCE4 panel plugin for the HDAPS system.
3 *
4 * Copyright (C) 2019 Michael Orlitzky
5 *
6 * http://michael.orlitzky.com/
7 *
8 * This program is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as
10 * published by the Free Software Foundation, either version 3 of the
11 * License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details:
17 *
18 * https://www.gnu.org/licenses/agpl-3.0.html
19 *
20 */
21
22 #ifndef __XFCE4_HDAPS_DIALOGS_H__
23 #define __XFCE4_HDAPS_DIALOGS_H__
24
25 #include "xfce4-hdaps.h"
26
27 G_BEGIN_DECLS
28
29 void hdaps_configure(XfcePanelPlugin *plugin,
30 HdapsPlugin *hdaps);
31
32 void hdaps_about(XfcePanelPlugin *plugin);
33
34 G_END_DECLS
35
36 /* I don't know why XFCE doesn't provide this. */
37 #define LICENSE_AGPL3 \
38 "This program is free software: you can redistribute it and/or modify\n" \
39 "it under the terms of the GNU Affero General Public License as\n" \
40 "published by the Free Software Foundation, either version 3 of the\n" \
41 "License, or (at your option) any later version.\n" \
42 "\n" \
43 "This program is distributed in the hope that it will be useful,\n" \
44 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" \
45 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" \
46 "GNU Affero General Public License for more details:\n" \
47 "\n" \
48 " https://www.gnu.org/licenses/agpl-3.0.html\n"
49
50 #endif