root/trunk/third/nautilus/components/services/inventory-view/nautilus-inventory-config-page.h @ 15547

Revision 15547, 2.3 KB (checked in by ghudson, 9 years ago)

This commit was generated by cvs2svn to compensate for changes in r15546,
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
3/*
4 * Copyright (C) 2000 Eazel, Inc
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
10 *
11 * This program 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 GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 *
21 * Author: Maciej Stachowiak <mjs@eazel.com>
22 */
23
24/* nautilus-inventory-config-page.h -
25 */
26
27#ifndef NAUTILUS_INVENTORY_CONFIG_PAGE_H
28#define NAUTILUS_INVENTORY_CONFIG_PAGE_H
29
30#include <gtk/gtkvbox.h>
31#include <libnautilus/nautilus-view.h>
32
33#define NAUTILUS_TYPE_INVENTORY_CONFIG_PAGE            (nautilus_inventory_config_page_get_type ())
34#define NAUTILUS_INVENTORY_CONFIG_PAGE(obj)            (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_INVENTORY_CONFIG_PAGE, NautilusInventoryConfigPage))
35#define NAUTILUS_INVENTORY_CONFIG_PAGE_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_INVENTORY_CONFIG_PAGE, NautilusInventoryConfigPageClass))
36#define NAUTILUS_IS_INVENTORY_CONFIG_PAGE(obj)         (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_INVENTORY_CONFIG_PAGE))
37#define NAUTILUS_IS_INVENTORY_CONFIG_PAGE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_INVENTORY_CONFIG_PAGE))
38
39typedef struct NautilusInventoryConfigPage        NautilusInventoryConfigPage;
40typedef struct NautilusInventoryConfigPageClass   NautilusInventoryConfigPageClass;
41typedef struct NautilusInventoryConfigPageDetails NautilusInventoryConfigPageDetails;
42
43struct NautilusInventoryConfigPage {
44        GtkVBox base;
45        NautilusInventoryConfigPageDetails *details;
46};
47
48struct NautilusInventoryConfigPageClass {
49        GtkVBoxClass base;
50};
51
52GtkType nautilus_inventory_config_page_get_type (void);
53
54GtkWidget *nautilus_inventory_config_page_new (NautilusView *view);
55
56#endif /* NAUTILUS_INVENTORY_CONFIG_PAGE_H */
57
Note: See TracBrowser for help on using the browser.