Updated Indonesian translation
[empathy-mirror.git] / libempathy-gtk / empathy-status-preset-dialog.h
blob625547fe5f7e1f397f31164c46fab0d0c0055443
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * empathy-status-preset-dialog.c
5 * EmpathyStatusPresetDialog - a dialog for adding and removing preset status
6 * messages.
8 * Copyright (C) 2009 Collabora Ltd.
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.
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.
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
25 * Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
28 #ifndef __EMPATHY_STATUS_PRESET_DIALOG_H__
29 #define __EMPATHY_STATUS_PRESET_DIALOG_H__
31 #include <gtk/gtk.h>
33 G_BEGIN_DECLS
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))
42 typedef struct _EmpathyStatusPresetDialog EmpathyStatusPresetDialog;
43 typedef struct _EmpathyStatusPresetDialogClass EmpathyStatusPresetDialogClass;
45 struct _EmpathyStatusPresetDialog
47 GtkDialog parent;
49 /*< private >*/
50 gpointer priv;
53 struct _EmpathyStatusPresetDialogClass
55 GtkDialogClass parent_class;
58 GType empathy_status_preset_dialog_get_type (void);
59 GtkWidget *empathy_status_preset_dialog_new (GtkWindow *parent);
61 G_END_DECLS
63 #endif