~ubuntu-branches/ubuntu/utopic/almanah/utopic-proposed

« back to all changes in this revision

Viewing changes to src/definition-manager-window.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2009-05-16 15:49:21 UTC
  • mto: (1.3.1 upstream) (10.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20090516154921-tc78p7akh0kxdpfr
Tags: upstream-0.6.1
ImportĀ upstreamĀ versionĀ 0.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
 
2
/*
 
3
 * Almanah
 
4
 * Copyright (C) Philip Withnall 2008 <philip@tecnocode.co.uk>
 
5
 * 
 
6
 * Almanah is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * Almanah is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with Almanah.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef ALMANAH_DEFINITION_MANAGER_WINDOW_H
 
21
#define ALMANAH_DEFINITION_MANAGER_WINDOW_H
 
22
 
 
23
#include <glib.h>
 
24
#include <glib-object.h>
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW          (almanah_definition_manager_window_get_type ())
 
29
#define ALMANAH_DEFINITION_MANAGER_WINDOW(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW, AlmanahDefinitionManagerWindow))
 
30
#define ALMANAH_DEFINITION_MANAGER_WINDOW_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST((k), ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW, AlmanahDefinitionManagerWindowClass))
 
31
#define ALMANAH_IS_DEFINITION_MANAGER_WINDOW(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW))
 
32
#define ALMANAH_IS_DEFINITION_MANAGER_WINDOW_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW))
 
33
#define ALMANAH_DEFINITION_MANAGER_WINDOW_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), ALMANAH_TYPE_DEFINITION_MANAGER_WINDOW, AlmanahDefinitionManagerWindowClass))
 
34
 
 
35
typedef struct _AlmanahDefinitionManagerWindowPrivate   AlmanahDefinitionManagerWindowPrivate;
 
36
 
 
37
typedef struct {
 
38
        GtkWindow parent;
 
39
        AlmanahDefinitionManagerWindowPrivate *priv;
 
40
} AlmanahDefinitionManagerWindow;
 
41
 
 
42
typedef struct {
 
43
        GtkWindowClass parent;
 
44
} AlmanahDefinitionManagerWindowClass;
 
45
 
 
46
GType almanah_definition_manager_window_get_type (void);
 
47
AlmanahDefinitionManagerWindow *almanah_definition_manager_window_new (void);
 
48
 
 
49
G_END_DECLS
 
50
 
 
51
#endif /* !ALMANAH_DEFINITION_MANAGER_WINDOW_H */