]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-status-preset-dialog.h
Clean up #include directives in source files
[empathy.git] / libempathy-gtk / empathy-status-preset-dialog.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * empathy-status-preset-dialog.c
4  *
5  * EmpathyStatusPresetDialog - a dialog for adding and removing preset status
6  * messages.
7  *
8  * Copyright (C) 2009 Collabora Ltd.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of the
13  * License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public
21  * License along with this program; if not, write to the
22  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
23  * Boston, MA  02110-1301  USA
24  *
25  * Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
26  */
27
28 #ifndef __EMPATHY_STATUS_PRESET_DIALOG_H__
29 #define __EMPATHY_STATUS_PRESET_DIALOG_H__
30
31 #include <gtk/gtk.h>
32
33 G_BEGIN_DECLS
34
35 #define EMPATHY_TYPE_STATUS_PRESET_DIALOG       (empathy_status_preset_dialog_get_type ())
36 #define EMPATHY_STATUS_PRESET_DIALOG(obj)       (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMPATHY_TYPE_STATUS_PRESET_DIALOG, EmpathyStatusPresetDialog))
37 #define EMPATHY_STATUS_PRESET_DIALOG_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), EMPATHY_TYPE_STATUS_PRESET_DIALOG, EmpathyStatusPresetDialogClass))
38 #define EMPATHY_IS_STATUS_PRESET_DIALOG(obj)    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMPATHY_TYPE_STATUS_PRESET_DIALOG))
39 #define EMPATHY_IS_STATUS_PRESET_DIALOG_CLASS(obj)      (G_TYPE_CHECK_CLASS_TYPE ((obj), EMPATHY_TYPE_STATUS_PRESET_DIALOG))
40 #define EMPATHY_STATUS_PRESET_DIALOG_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_STATUS_PRESET_DIALOG, EmpathyStatusPresetDialogClass))
41
42 typedef struct _EmpathyStatusPresetDialog EmpathyStatusPresetDialog;
43 typedef struct _EmpathyStatusPresetDialogClass EmpathyStatusPresetDialogClass;
44
45 struct _EmpathyStatusPresetDialog
46 {
47         GtkDialog parent;
48
49         /*< private >*/
50         gpointer priv;
51 };
52
53 struct _EmpathyStatusPresetDialogClass
54 {
55         GtkDialogClass parent_class;
56 };
57
58 GType empathy_status_preset_dialog_get_type (void);
59 GtkWidget *empathy_status_preset_dialog_new (GtkWindow *parent);
60
61 G_END_DECLS
62
63 #endif