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
#ifndef                                         __HILDON_CHECK_BUTTON_H__
18
#define                                         __HILDON_CHECK_BUTTON_H__
19
20
#include                                        "hildon-gtk.h"
21
22
G_BEGIN_DECLS
23
24
#define                                         HILDON_TYPE_CHECK_BUTTON \
25
                                                (hildon_check_button_get_type())
26
27
#define                                         HILDON_CHECK_BUTTON(obj) \
28
                                                (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
29
                                                HILDON_TYPE_CHECK_BUTTON, HildonCheckButton))
30
31
#define                                         HILDON_CHECK_BUTTON_CLASS(klass) \
32
                                                (G_TYPE_CHECK_CLASS_CAST ((klass), \
33
                                                HILDON_TYPE_CHECK_BUTTON, HildonCheckButtonClass))
34
35
#define                                         HILDON_IS_CHECK_BUTTON(obj) \
36
                                                (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_CHECK_BUTTON))
37
38
#define                                         HILDON_IS_CHECK_BUTTON_CLASS(klass) \
39
                                                (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_CHECK_BUTTON))
40
41
#define                                         HILDON_CHECK_BUTTON_GET_CLASS(obj) \
42
                                                (G_TYPE_INSTANCE_GET_CLASS ((obj), \
43
                                                HILDON_TYPE_CHECK_BUTTON, HildonCheckButtonClass))
44
45
typedef struct                                  _HildonCheckButton HildonCheckButton;
46
47
typedef struct                                  _HildonCheckButtonClass HildonCheckButtonClass;
48
49
typedef struct                                  _HildonCheckButtonPrivate HildonCheckButtonPrivate;
50
51
struct                                          _HildonCheckButtonClass
52
{
53
    GtkButtonClass parent_class;
54
55
    /* Signal handlers */
56
    void (* toggled)                            (HildonCheckButton *button);
57
};
58
59
struct                                          _HildonCheckButton
60
{
61
    GtkButton parent;
62
63
    /* private */
64
    HildonCheckButtonPrivate *priv;
65
};
66
67
GType
68
hildon_check_button_get_type                    (void) G_GNUC_CONST;
69
70
GtkWidget *
71
hildon_check_button_new                         (HildonSizeType size);
72
73
void
74
hildon_check_button_set_active                  (HildonCheckButton *button,
75
                                                 gboolean           is_active);
76
77
gboolean
78
hildon_check_button_get_active                  (HildonCheckButton *button);
79
80
void
81
hildon_check_button_toggled                     (HildonCheckButton *button);
82
83
G_END_DECLS
84
85
#endif /* __HILDON_CHECK_BUTTON_H__ */