summaryrefslogtreecommitdiff
path: root/src/ntl-meta-view.c
blob: 4ff7519862017a2686ca049e3fc07cd493667981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

/*
 *  Nautilus
 *
 *  Copyright (C) 1999, 2000 Red Hat, Inc.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License as
 *  published by the Free Software Foundation; either version 2 of the
 *  License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *  Author: Elliot Lee <sopwith@redhat.com>
 *
 */
/* ntl-meta-view.c: Implementation of the object representing a meta/navigation view. */

#include "nautilus.h"
#include "ntl-view-private.h"
#include <gtk/gtksignal.h>

static PortableServer_ServantBase__epv base_epv = { NULL, NULL, NULL };

static POA_Nautilus_MetaViewFrame__epv impl_Nautilus_MetaViewFrame_epv = {
  NULL
};

extern POA_Nautilus_ViewFrame__epv impl_Nautilus_ViewFrame_epv;

static POA_Nautilus_MetaViewFrame__vepv impl_Nautilus_MetaViewFrame_vepv =
{
   &base_epv,
   NULL,
   &impl_Nautilus_ViewFrame_epv,
   &impl_Nautilus_MetaViewFrame_epv
};

static void nautilus_meta_view_class_init (NautilusMetaViewClass *klass);
static void nautilus_meta_view_init (NautilusMetaView *view);
static void nautilus_meta_view_destroy (GtkObject *object);

GtkType
nautilus_meta_view_get_type(void)
{
  static guint view_type = 0;

  if (!view_type)
    {
      GtkTypeInfo view_info = {
	"NautilusMetaView",
	sizeof(NautilusMetaView),
	sizeof(NautilusMetaViewClass),
	(GtkClassInitFunc) nautilus_meta_view_class_init,
	(GtkObjectInitFunc) nautilus_meta_view_init,
        NULL,
        NULL,
        NULL
      };

      view_type = gtk_type_unique (nautilus_view_get_type(), &view_info);
    }

  return view_type;
}

static void
nautilus_meta_view_class_init (NautilusMetaViewClass *klass)
{
  GtkObjectClass *object_class;
  GtkWidgetClass *widget_class;
  NautilusViewClass *view_class;

  object_class = (GtkObjectClass*) klass;
  object_class->destroy = nautilus_meta_view_destroy;
  widget_class = (GtkWidgetClass*) klass;
  view_class = (NautilusViewClass*) klass;
  klass->parent_class = gtk_type_class (gtk_type_parent (object_class->type));
  view_class->servant_init_func = POA_Nautilus_MetaViewFrame__init;
  view_class->servant_destroy_func = POA_Nautilus_MetaViewFrame__fini;
  view_class->vepv = &impl_Nautilus_MetaViewFrame_vepv;
}

static void
nautilus_meta_view_init (NautilusMetaView *view)
{
}

static void
nautilus_meta_view_destroy (GtkObject *object)
{
  NautilusViewClass *klass = (NautilusViewClass *)object->klass;

  if(GTK_OBJECT_CLASS(klass->parent_class)->destroy)
    GTK_OBJECT_CLASS(klass->parent_class)->destroy(object);
}

const char *
nautilus_meta_view_get_label(NautilusMetaView *nview)
{
  NautilusView *view = NAUTILUS_VIEW(nview);
  char *retval = NULL;

  g_return_val_if_fail(view, NULL);
  g_return_val_if_fail(view->component_class, NULL);

  if(view->component_class->get_label)
    {
      CORBA_Environment ev;

      CORBA_exception_init(&ev);

      retval = view->component_class->get_label(view, &ev);

      CORBA_exception_free(&ev);
    }

  return retval;
}