File: gconf-key-editor.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 (71 lines) | stat: -rw-r--r-- 2,643 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
68
69
70
71
/* -*- 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_KEY_EDITOR_H__
#define __GCONF_KEY_EDITOR_H__

#include <gtk/gtkdialog.h>
#include <gconf/gconf.h>

#define GCONF_TYPE_KEY_EDITOR		  (gconf_key_editor_get_type ())
#define GCONF_KEY_EDITOR(obj)		  (GTK_CHECK_CAST ((obj), GCONF_TYPE_KEY_EDITOR, GConfKeyEditor))
#define GCONF_KEY_EDITOR_CLASS(klass)	  (GTK_CHECK_CLASS_CAST ((klass), GCONF_TYPE_KEY_EDITOR, GConfKeyEditorClass))
#define GCONF_IS_KEY_EDITOR(obj)	  (GTK_CHECK_TYPE ((obj), GCONF_TYPE_KEY_EDITOR))
#define GCONF_IS_KEY_EDITOR_CLASS(klass)  (GTK_CHECK_CLASS_TYPE ((obj), GCONF_TYPE_KEY_EDITOR))
#define GCONF_KEY_EDITOR_GET_CLASS(obj)   (GTK_CHECK_GET_CLASS ((obj), GCONF_TYPE_KEY_EDITOR, GConfKeyEditorClass))

typedef enum {
	GCONF_KEY_EDITOR_NEW_KEY,
	GCONF_KEY_EDITOR_EDIT_KEY,
} GConfKeyEditorAction;

typedef struct _GConfKeyEditor GConfKeyEditor;
typedef struct _GConfKeyEditorClass GConfKeyEditorClass;

struct _GConfKeyEditor {
	GtkDialog parent_instance;
	
	int active_type;
	GtkWidget *option_menu;
	GtkWidget *notebook;
	GtkWidget *bool_widget;
	GtkWidget *int_widget;
	GtkWidget *string_widget;

	GtkWidget *path_label;
	GtkWidget *path_box;
	GtkWidget *name_entry;
};

struct _GConfKeyEditorClass {
	GtkDialogClass parent_class;
};

GType gconf_key_editor_get_type (void);
GtkWidget *gconf_key_editor_new (GConfKeyEditorAction action);

void gconf_key_editor_set_value (GConfKeyEditor *editor, GConfValue *value);
void gconf_key_editor_set_key_path (GConfKeyEditor *editor, const char *path);
void gconf_key_editor_set_key_name (GConfKeyEditor *editor, const char *path);
char *gconf_key_editor_get_key_name (GConfKeyEditor *editor);
GConfValue* gconf_key_editor_get_value (GConfKeyEditor *editor);

char *gconf_key_editor_get_full_key_path (GConfKeyEditor *editor);

#endif /* __GCONF_KEY_EDITOR_H__ */