~ubuntu-branches/ubuntu/oneiric/gedit-plugins/oneiric

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, YunQiang Su, Josselin Mouette
  • Date: 2011-06-02 19:15:39 UTC
  • mfrom: (7.1.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20110602191539-ykgin1sr7nl4h4fy
Tags: 3.0.3-1
[ YunQiang Su ]
* New upstream stable release.
* Update build-dependencies accordingly.
* Update dependencies to use gir modules for Python.
* Switch to 3.0 source format.
* Update standards version.

[ Josselin Mouette ]
* Pass the correct paths to dh_pysupport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * gedit-bookmarks-message-toggle.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_TOGGLE_H__
 
24
#define __GEDIT_BOOKMARKS_MESSAGE_TOGGLE_H__
 
25
 
 
26
#include <gedit/gedit-message.h>
 
27
 
 
28
G_BEGIN_DECLS
 
29
 
 
30
#define GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE            (gedit_bookmarks_message_toggle_get_type ())
 
31
#define GEDIT_BOOKMARKS_MESSAGE_TOGGLE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
 
32
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE,\
 
33
                                                        GeditBookmarksMessageToggle))
 
34
#define GEDIT_BOOKMARKS_MESSAGE_TOGGLE_CONST(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj),\
 
35
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE,\
 
36
                                                        GeditBookmarksMessageToggle const))
 
37
#define GEDIT_BOOKMARKS_MESSAGE_TOGGLE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),\
 
38
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE,\
 
39
                                                        GeditBookmarksMessageToggleClass))
 
40
#define GEDIT_IS_BOOKMARKS_MESSAGE_TOGGLE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj),\
 
41
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE))
 
42
#define GEDIT_IS_BOOKMARKS_MESSAGE_TOGGLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),\
 
43
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE))
 
44
#define GEDIT_BOOKMARKS_MESSAGE_TOGGLE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),\
 
45
                                                        GEDIT_TYPE_BOOKMARKS_MESSAGE_TOGGLE,\
 
46
                                                        GeditBookmarksMessageToggleClass))
 
47
 
 
48
typedef struct _GeditBookmarksMessageToggle        GeditBookmarksMessageToggle;
 
49
typedef struct _GeditBookmarksMessageToggleClass   GeditBookmarksMessageToggleClass;
 
50
typedef struct _GeditBookmarksMessageTogglePrivate GeditBookmarksMessageTogglePrivate;
 
51
 
 
52
struct _GeditBookmarksMessageToggle
 
53
{
 
54
        GeditMessage parent;
 
55
 
 
56
        GeditBookmarksMessageTogglePrivate *priv;
 
57
};
 
58
 
 
59
struct _GeditBookmarksMessageToggleClass
 
60
{
 
61
        GeditMessageClass parent_class;
 
62
};
 
63
 
 
64
GType gedit_bookmarks_message_toggle_get_type (void) G_GNUC_CONST;
 
65
 
 
66
G_END_DECLS
 
67
 
 
68
#endif /* __GEDIT_BOOKMARKS_MESSAGE_TOGGLE_H__ */