source: trunk/third/evolution/shell/evolution-storage-set-view.h @ 16787

Revision 16787, 2.5 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16786, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2/* evolution-storage-set-view.h
3 *
4 * Copyright (C) 2000  Ximian, Inc.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU General Public
8 * License as published by the Free Software Foundation.
9 *
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.
14 *
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.
19 *
20 * Author: Ettore Perazzoli
21 */
22
23#ifndef _EVOLUTION_STORAGE_SET_VIEW_H_
24#define _EVOLUTION_STORAGE_SET_VIEW_H_
25
26#include <bonobo/bonobo-object.h>
27
28#include "e-storage-set-view.h"
29
30#include "Evolution.h"
31
32#ifdef __cplusplus
33extern "C" {
34#pragma }
35#endif /* __cplusplus */
36
37#define EVOLUTION_TYPE_STORAGE_SET_VIEW                 (evolution_storage_set_view_get_type ())
38#define EVOLUTION_STORAGE_SET_VIEW(obj)                 (GTK_CHECK_CAST ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW, EvolutionStorageSetView))
39#define EVOLUTION_STORAGE_SET_VIEW_CLASS(klass)         (GTK_CHECK_CLASS_CAST ((klass), EVOLUTION_TYPE_STORAGE_SET_VIEW, EvolutionStorageSetViewClass))
40#define EVOLUTION_IS_STORAGE_SET_VIEW(obj)                      (GTK_CHECK_TYPE ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW))
41#define EVOLUTION_IS_STORAGE_SET_VIEW_CLASS(klass)              (GTK_CHECK_CLASS_TYPE ((obj), EVOLUTION_TYPE_STORAGE_SET_VIEW))
42
43
44typedef struct _EvolutionStorageSetView        EvolutionStorageSetView;
45typedef struct _EvolutionStorageSetViewPrivate EvolutionStorageSetViewPrivate;
46typedef struct _EvolutionStorageSetViewClass   EvolutionStorageSetViewClass;
47
48struct _EvolutionStorageSetView {
49        BonoboObject parent;
50
51        EvolutionStorageSetViewPrivate *priv;
52};
53
54struct _EvolutionStorageSetViewClass {
55        BonoboObjectClass parent_class;
56};
57
58
59GtkType                  evolution_storage_set_view_get_type   (void);
60void                     evolution_storage_set_view_construct  (EvolutionStorageSetView  *storage_set_view,
61                                                                GNOME_Evolution_StorageSetView  corba_object,
62                                                                EStorageSetView          *storage_set_view_widget);
63EvolutionStorageSetView *evolution_storage_set_view_new        (EStorageSetView          *storage_set_view_widget);
64
65#ifdef __cplusplus
66}
67#endif /* __cplusplus */
68
69#endif /* _EVOLUTION_STORAGE_SET_VIEW_H_ */
Note: See TracBrowser for help on using the repository browser.