~ubuntu-branches/ubuntu/raring/gedit-plugins/raring-proposed

« back to all changes in this revision

Viewing changes to plugins/bookmarks/messages/gedit-bookmarks-message-remove.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2011-07-22 20:45:45 UTC
  • mfrom: (1.1.26 upstream)
  • mto: (7.3.1 sid) (1.4.8)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20110722204545-15t6eui58z5tdb6l
Tags: upstream-3.0.5
ImportĀ upstreamĀ versionĀ 3.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * gedit-bookmarks-message-remove.h
 
3
 * This file is part of gedit
 
4
 *
 
5
 * Copyright (C) 2011 - Paolo Borelli
 
6
 *
 
7
 * gedit is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * gedit is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with gedit; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor,
 
20
 * Boston, MA  02110-1301  USA
 
21
 */
 
22
 
 
23
#ifndef __GEDIT_BOOKMARKS_MESSAGE_REMOVE_H__
 
24
#define __GEDIT_BOOKMARKS_MESSAGE_REMOVE_H__
 
25
 
 
26
#include <gedit/gedit-message.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
#define GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE            (gedit_bookmarks_message_remove_get_type ())
 
31
#define GEDIT_BOOKMARKS_MESSAGE_REMOVE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
 
32
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE,\
 
33
                                                        GeditBookmarksMessageRemove))
 
34
#define GEDIT_BOOKMARKS_MESSAGE_REMOVE_CONST(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
 
35
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE,\
 
36
                                                        GeditBookmarksMessageRemove const))
 
37
#define GEDIT_BOOKMARKS_MESSAGE_REMOVE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),\
 
38
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE,\
 
39
                                                        GeditBookmarksMessageRemoveClass))
 
40
#define GEDIT_IS_BOOKMARKS_MESSAGE_REMOVE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
 
41
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE))
 
42
#define GEDIT_IS_BOOKMARKS_MESSAGE_REMOVE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),\
 
43
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE))
 
44
#define GEDIT_BOOKMARKS_MESSAGE_REMOVE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),\
 
45
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_REMOVE,\
 
46
                                                        GeditBookmarksMessageRemoveClass))
 
47
 
 
48
typedef struct _GeditBookmarksMessageRemove        GeditBookmarksMessageRemove;
 
49
typedef struct _GeditBookmarksMessageRemoveClass   GeditBookmarksMessageRemoveClass;
 
50
typedef struct _GeditBookmarksMessageRemovePrivate GeditBookmarksMessageRemovePrivate;
 
51
 
 
52
struct _GeditBookmarksMessageRemove
 
53
{
 
54
        GeditMessage parent;
 
55
 
 
56
        GeditBookmarksMessageRemovePrivate *priv;
 
57
};
 
58
 
 
59
struct _GeditBookmarksMessageRemoveClass
 
60
{
 
61
        GeditMessageClass parent_class;
 
62
};
 
63
 
 
64
GType gedit_bookmarks_message_remove_get_type (void) G_GNUC_CONST;
 
65
 
 
66
G_END_DECLS
 
67
 
 
68
#endif /* __GEDIT_BOOKMARKS_MESSAGE_REMOVE_H__ */