2008-08-07 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-button-helpers.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser Public License as published by
8  * the Free Software Foundation; version 2 of the license.
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 Lesser Public License for more details.
14  *
15  */
16
17 #include "hildon-button-helpers.h"
18
19 GtkWidget *
20 hildon_gtk_button_new                           (HildonSizeType size)
21 {
22     GtkWidget *button = gtk_button_new ();
23     hildon_helper_set_theme_size (button, size);
24     return button;
25 }