2 * Copyright (c) 2008 Jiri Benc <jbenc@upir.cz>
3 * Copyright (c) 2009 Roman Moravcik <roman.moravcik@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 version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #include <hildon/hildon.h>
25 #include <gconf/gconf.h>
26 #include <gconf/gconf-client.h>
30 static GtkWidget
*start(GConfClient
*client
, GtkWidget
*win
, void **data
)
35 (void)client
; (void)win
;
37 scroll
= hildon_pannable_area_new();
39 label
= gtk_label_new(NULL
);
40 gtk_label_set_markup(GTK_LABEL(label
),
43 hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA(scroll
), label
);
45 return GTK_WIDGET(scroll
);
48 void prefs_about_init(struct prefs
*prefs
)
53 prefs
->name
= "About";