~ubuntu-branches/ubuntu/maverick/nautilus-actions/maverick

« back to all changes in this revision

Viewing changes to src/common/na-iprefs.h

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2009-10-25 14:04:13 UTC
  • mfrom: (1.1.7 upstream) (3.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091025140413-okqdth1kvcx8ko3o
Tags: 2.29.1-1
* New upstream version.
  - implements full API as defined for use by Nautilus menu
    extensions : this let the user define items which will be
    available when there is no selection, and will apply to
    current folder, either in the 'File' menu or in the
    toolbar ;
  - the ability for the user to define a full hierarchy of
    actions with menus, submenus, and so on ;
  - drag and drop ;
  - full cut/copy/paste clipboard support.
  - Gnome bugs fixed:
    - #325528 reported by Frederic Ruaudel
              (bloated  contextual menu)
    - #325587 reported by Frederic Ruaudel
              (drag & drop support)
    - #326699 reported by Frederic Ruaudel
              (action items do not remain in user defined order)
    - #353353 reported by Frederic Ruaudel
              (check if command exist and if not warn user)
    - #588482 reported by Sean
            (ordering in actions list)
    - #326699 reported by Frederic Ruaudel
            (action items do not remain in user defined order)
    - #353353 reported by Frederic Ruaudel
              (check if command exist and if not warn user)
    - #588482 reported by Sean
              (ordering in actions list)
    - #590400 reported by Pierre Wieser
              (have some sort of warnings in the ui)
    - #599520 reported by António Lima
              (do not mark authors names and emails for translating)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Nautilus Actions
 
3
 * A Nautilus extension which offers configurable context menu actions.
 
4
 *
 
5
 * Copyright (C) 2005 The GNOME Foundation
 
6
 * Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
 
7
 * Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
 
8
 *
 
9
 * This Program is free software; you can redistribute it and/or
 
10
 * modify it under the terms of the GNU General Public License as
 
11
 * published by the Free Software Foundation; either version 2 of
 
12
 * the License, or (at your option) any later version.
 
13
 *
 
14
 * This Program is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU General Public
 
20
 * License along with this Library; see the file COPYING.  If not,
 
21
 * write to the Free Software Foundation, Inc., 59 Temple Place,
 
22
 * Suite 330, Boston, MA 02111-1307, USA.
 
23
 *
 
24
 * Authors:
 
25
 *   Frederic Ruaudel <grumz@grumz.net>
 
26
 *   Rodrigo Moya <rodrigo@gnome-db.org>
 
27
 *   Pierre Wieser <pwieser@trychlos.org>
 
28
 *   ... and many others (see AUTHORS)
 
29
 */
 
30
 
 
31
#ifndef __NA_IPREFS_H__
 
32
#define __NA_IPREFS_H__
 
33
 
 
34
/**
 
35
 * SECTION: na_iprefs
 
36
 * @short_description: #NAIPrefs interface definition extension.
 
37
 * @include: common/na-iprefs.h
 
38
 *
 
39
 * #NAIPrefs main interface is defined as part of libna-runtime
 
40
 * convenience library, and should only be implemented by #NAPivot.
 
41
 * Found here is public API not shared by the Nautilus Actions plugin.
 
42
 */
 
43
 
 
44
#include <runtime/na-iprefs.h>
 
45
 
 
46
G_BEGIN_DECLS
 
47
 
 
48
/* GConf Preference keys managed by IPrefs interface
 
49
 */
 
50
#define IPREFS_EXPORT_FORMAT                            "export-format"
 
51
#define IPREFS_EXPORT_ASK_LAST_FORMAT           "export-ask-user-last-format"
 
52
#define IPREFS_IMPORT_ACTIONS_IMPORT_MODE       "import-mode"
 
53
#define IPREFS_IMPORT_ASK_LAST_MODE                     "import-ask-user-last-mode"
 
54
 
 
55
/* import mode
 
56
 */
 
57
enum {
 
58
        IPREFS_IMPORT_NO_IMPORT = 1,
 
59
        IPREFS_IMPORT_RENUMBER,
 
60
        IPREFS_IMPORT_OVERRIDE,
 
61
        IPREFS_IMPORT_ASK
 
62
};
 
63
 
 
64
/* import/export formats
 
65
 *
 
66
 * FORMAT_GCONF_SCHEMA_V1: a schema with owner, short and long
 
67
 * descriptions ; each action has its own schema addressed by the uuid
 
68
 * (historical format up to v1.10.x serie)
 
69
 *
 
70
 * FORMAT_GCONF_SCHEMA_V2: the lightest schema still compatible
 
71
 * with gconftool-2 --install-schema-file (no owner, no short nor long
 
72
 * descriptions) - introduced in v 1.11
 
73
 *
 
74
 * FORMAT_GCONF_SCHEMA: exports a full schema, not an action
 
75
 *
 
76
 * FORMAT_GCONF_ENTRY: not a schema, but a dump of the GConf entry
 
77
 * introduced in v 1.11
 
78
 */
 
79
enum {
 
80
        IPREFS_EXPORT_NO_EXPORT = 1,
 
81
        IPREFS_EXPORT_FORMAT_GCONF_SCHEMA_V1,
 
82
        IPREFS_EXPORT_FORMAT_GCONF_SCHEMA_V2,
 
83
        IPREFS_EXPORT_FORMAT_GCONF_SCHEMA,
 
84
        IPREFS_EXPORT_FORMAT_GCONF_ENTRY,
 
85
        IPREFS_EXPORT_FORMAT_ASK
 
86
};
 
87
 
 
88
#define IPREFS_RELABEL_MENUS                            "iprefs-relabel-menus"
 
89
#define IPREFS_RELABEL_ACTIONS                          "iprefs-relabel-actions"
 
90
#define IPREFS_RELABEL_PROFILES                         "iprefs-relabel-profiles"
 
91
 
 
92
void na_iprefs_migrate_key( NAIPrefs *instance, const gchar *old_key, const gchar *new_key );
 
93
 
 
94
gint na_iprefs_get_export_format( NAIPrefs *instance, const gchar *pref );
 
95
gint na_iprefs_get_import_mode( NAIPrefs *instance, const gchar *pref );
 
96
 
 
97
void na_iprefs_set_export_format( NAIPrefs *instance, const gchar *pref, gint format );
 
98
void na_iprefs_set_import_mode( NAIPrefs *instance, const gchar *pref, gint mode );
 
99
 
 
100
G_END_DECLS
 
101
 
 
102
#endif /* __NA_IPREFS_H__ */