File: gconf-list-model.h

package info (click to toggle)
gconf-editor 0.1-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,212 kB
  • ctags: 301
  • sloc: sh: 6,586; ansic: 2,505; makefile: 124
file content (67 lines) | stat: -rw-r--r-- 2,275 bytes parent folder | download
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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
 * Copyright (C) 2001, 2002 Anders Carlsson <andersca@gnu.org>
 *
 * This program 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 program 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.
 */

#ifndef __GCONF_LIST_MODEL_H__
#define __GCONF_LIST_MODEL_H__

#include <gtk/gtktreemodel.h>
#include <gconf/gconf-client.h>

#define GCONF_TYPE_LIST_MODEL		  (gconf_list_model_get_type ())
#define GCONF_LIST_MODEL(obj)		  (GTK_CHECK_CAST ((obj), GCONF_TYPE_LIST_MODEL, GConfListModel))
#define GCONF_LIST_MODEL_CLASS(klass)	  (GTK_CHECK_CLASS_CAST ((klass), GCONF_TYPE_LIST_MODEL, GConfListModelClass))
#define GCONF_IS_LIST_MODEL(obj)	  (GTK_CHECK_TYPE ((obj), GCONF_TYPE_LIST_MODEL))
#define GCONF_IS_LIST_MODEL_CLASS(klass)  (GTK_CHECK_CLASS_TYPE ((obj), GCONF_TYPE_LIST_MODEL))
#define GCONF_LIST_MODEL_GET_CLASS(obj)   (GTK_CHECK_GET_CLASS ((obj), GCONF_TYPE_LIST_MODEL, GConfListModelClass))

typedef struct _GConfListModel GConfListModel;
typedef struct _GConfListModelClass GConfListModelClass;

enum {
	GCONF_LIST_MODEL_ICON_COLUMN,
	GCONF_LIST_MODEL_KEY_NAME_COLUMN,
	GCONF_LIST_MODEL_KEY_PATH_COLUMN,
	GCONF_LIST_MODEL_VALUE_COLUMN,
	GCONF_LIST_MODEL_NUM_COLUMNS,
};

struct _GConfListModel {
	GObject parent_instance;

	gchar *root_path;
	gint stamp;

	GConfClient *client;
	
	GSList *values;
	gint length;

	guint notify_id;
	GHashTable *key_hash;
};

struct _GConfListModelClass {
	GObjectClass parent_class;
};

GType gconf_list_model_get_type (void);
GtkTreeModel *gconf_list_model_new (void);
void gconf_list_model_set_root_path (GConfListModel *model, const gchar *path);

#endif /* __GCONF_LIST_MODEL_H__ */