]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-dialpad-widget.h
local-xmpp-assistant-widget: increase row-spacing
[empathy.git] / libempathy-gtk / empathy-dialpad-widget.h
1 /*
2  * Copyright (C) 2011 Collabora Ltd.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
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 GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA  02110-1301  USA
18  *
19  * Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
20  */
21
22 #ifndef __EMPATHY_DIALPAD_WIDGET_H__
23 #define __EMPATHY_DIALPAD_WIDGET_H__
24
25 #include <gtk/gtk.h>
26
27 G_BEGIN_DECLS
28
29 #define EMPATHY_TYPE_DIALPAD_WIDGET     (empathy_dialpad_widget_get_type ())
30 #define EMPATHY_DIALPAD_WIDGET(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_DIALPAD_WIDGET, EmpathyDialpadWidget))
31 #define EMPATHY_DIALPAD_WIDGET_CLASS(obj)       (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_DIALPAD_WIDGET, EmpathyDialpadWidgetClass))
32 #define EMPATHY_IS_DIALPAD_WIDGET(obj)  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_DIALPAD_WIDGET))
33 #define EMPATHY_IS_DIALPAD_WIDGET_CLASS(obj)    (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_DIALPAD_WIDGET))
34 #define EMPATHY_DIALPAD_WIDGET_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_DIALPAD_WIDGET, EmpathyDialpadWidgetClass))
35
36 typedef struct _EmpathyDialpadWidget EmpathyDialpadWidget;
37 typedef struct _EmpathyDialpadWidgetClass EmpathyDialpadWidgetClass;
38 typedef struct _EmpathyDialpadWidgetPrivate EmpathyDialpadWidgetPrivate;
39
40 struct _EmpathyDialpadWidget
41 {
42   GtkBox parent;
43
44   EmpathyDialpadWidgetPrivate *priv;
45 };
46
47 struct _EmpathyDialpadWidgetClass
48 {
49   GtkBoxClass parent_class;
50 };
51
52 GType empathy_dialpad_widget_get_type (void);
53 GtkWidget *empathy_dialpad_widget_new (void);
54
55 G_END_DECLS
56
57 #endif