Remove silly tag dereferences suffix
[giggle.git] / src / giggle-remote-editor.h
blob06fb5e7beb1b9f1d2ebd76e77bbc01944402fba1
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2007 Imendio AB
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
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 GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __GIGGLE_REMOTE_EDITOR_H__
22 #define __GIGGLE_REMOTE_EDITOR_H__
24 #include "giggle-remote.h"
25 #include <gtk/gtkdialog.h>
27 G_BEGIN_DECLS
29 #define GIGGLE_TYPE_REMOTE_EDITOR (giggle_remote_editor_get_type ())
30 #define GIGGLE_REMOTE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIGGLE_TYPE_REMOTE_EDITOR, GiggleRemoteEditor))
31 #define GIGGLE_REMOTE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIGGLE_TYPE_REMOTE_EDITOR, GiggleRemoteEditorClass))
32 #define GIGGLE_IS_REMOTE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIGGLE_TYPE_REMOTE_EDITOR))
33 #define GIGGLE_IS_REMOTE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIGGLE_TYPE_REMOTE_EDITOR))
34 #define GIGGLE_REMOTE_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIGGLE_TYPE_REMOTE_EDITOR, GiggleRemoteEditorClass))
36 typedef struct GiggleRemoteEditor GiggleRemoteEditor;
37 typedef struct GiggleRemoteEditorClass GiggleRemoteEditorClass;
39 struct GiggleRemoteEditor {
40 GtkDialog parent;
43 struct GiggleRemoteEditorClass {
44 GtkDialogClass parent_class;
47 GType giggle_remote_editor_get_type (void);
48 GtkWidget * giggle_remote_editor_new (GiggleRemote *remote);
50 G_END_DECLS
52 #endif /* __GIGGLE_REMOTE_EDITOR_H__ */