1 |
ben |
1 |
/* |
2 |
|
|
* about.h Copyright © 2009 by Benoît Rouits <brouits@free.fr> |
3 |
|
|
* Published under the terms of the GNU General Public License v2 (GPLv2). |
4 |
|
|
* |
5 |
|
|
* This program is free software; you can redistribute it and/or |
6 |
|
|
* modify it under the terms of the GNU General Public License |
7 |
|
|
* as published by the Free Software Foundation; either version 2 |
8 |
|
|
* of the License, or (at your option) any later version. |
9 |
|
|
* |
10 |
|
|
* This program is distributed in the hope that it will be useful, |
11 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
|
|
* GNU General Public License for more details. |
14 |
|
|
* |
15 |
|
|
* You should have received a copy of the GNU General Public License |
16 |
|
|
* along with this program; if not, write to the Free Software |
17 |
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 |
|
|
* Boston, MA 02110-1301, USA. |
19 |
|
|
* |
20 |
|
|
* see the COPYING file included in the jackie package or |
21 |
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt for the full licence |
22 |
|
|
* |
23 |
|
|
*/ |
24 |
|
|
|
25 |
|
|
/* create an about widget: |
26 |
|
|
* |
27 |
|
|
* authors: a pointer to strings, NULL terminated |
28 |
|
|
* copyright: a copyright line |
29 |
|
|
* comment: what does that program |
30 |
|
|
* license: disclaimer + where to find the full license |
31 |
|
|
* website: url to the project homepage |
32 |
|
|
*/ |
33 |
ben |
22 |
|
34 |
|
|
#ifndef ABOUT_H |
35 |
|
|
#define ABOUT_H |
36 |
ben |
1 |
GtkAboutDialog* about_create (const gchar* name, |
37 |
|
|
const gchar* version, |
38 |
|
|
const gchar* copyright, |
39 |
|
|
const gchar* comment, |
40 |
|
|
const gchar* license, |
41 |
|
|
const gchar* website, |
42 |
|
|
const gchar** authors); |
43 |
|
|
|
44 |
|
|
void about_show (GtkAboutDialog* dialog); |
45 |
|
|
|
46 |
|
|
void about_hide (GtkAboutDialog* dialog); |
47 |
|
|
|
48 |
|
|
void about_destroy (GtkAboutDialog* dialog); |
49 |
ben |
22 |
#endif |