3 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@gmail.com)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include <libx/base.h>
26 #include <libx/object.h>
27 #include <libx/image.h>
28 #include <libx/cursor.h>
29 #include <libx/text.h>
35 #include "filemanager.h"
38 unsigned authors_act
= 0;
39 wmdialog
*authors_dialog
;
48 authors_dialog
= dialog_create (160-90, 100-25, 180, 50, "Authors");
53 unsigned authors_handle ()
55 if (authors_dialog
!= 0)
56 if (authors_dialog
->active
) {
57 xtext_puts (authors_dialog
->x
+1, authors_dialog
->y
+11, 0, "Programmer:");
58 xtext_puts (authors_dialog
->x
+1, authors_dialog
->y
+20, 0, "Tomas 'ZeXx86' Jedrzejek");
59 xtext_puts (authors_dialog
->x
+1, authors_dialog
->y
+38, 0, "Licensed under GNU/GPL 3");
63 unsigned init_authors ()