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

« back to all changes in this revision

Viewing changes to src/nact/base-builder.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 __BASE_BUILDER_H__
 
32
#define __BASE_BUILDER_H__
 
33
 
 
34
/**
 
35
 * SECTION: base_builder
 
36
 * @short_description: #BaseBuilder class definition.
 
37
 * @include: nact/base-builder.h
 
38
 *
 
39
 * This class is derived from GtkBuilder class. It adds to it a list
 
40
 * of already loaded files to be sure to not load them twice.
 
41
 *
 
42
 * #Basebuilder class is embedded as a convenience object in
 
43
 * #BaseApplication and, possibly, in #BaseWindow instances.
 
44
 */
 
45
 
 
46
#include <gtk/gtk.h>
 
47
 
 
48
G_BEGIN_DECLS
 
49
 
 
50
#define BASE_BUILDER_TYPE                                       ( base_builder_get_type())
 
51
#define BASE_BUILDER( object )                          ( G_TYPE_CHECK_INSTANCE_CAST( object, BASE_BUILDER_TYPE, BaseBuilder ))
 
52
#define BASE_BUILDER_CLASS( klass )                     ( G_TYPE_CHECK_CLASS_CAST( klass, BASE_BUILDER_TYPE, BaseBuilderClass ))
 
53
#define BASE_IS_BUILDER( object )                       ( G_TYPE_CHECK_INSTANCE_TYPE( object, BASE_BUILDER_TYPE ))
 
54
#define BASE_IS_BUILDER_CLASS( klass )          ( G_TYPE_CHECK_CLASS_TYPE(( klass ), BASE_BUILDER_TYPE ))
 
55
#define BASE_BUILDER_GET_CLASS( object )        ( G_TYPE_INSTANCE_GET_CLASS(( object ), BASE_BUILDER_TYPE, BaseBuilderClass ))
 
56
 
 
57
typedef struct BaseBuilderPrivate BaseBuilderPrivate;
 
58
 
 
59
typedef struct {
 
60
        GtkBuilder          parent;
 
61
        BaseBuilderPrivate *private;
 
62
}
 
63
        BaseBuilder;
 
64
 
 
65
typedef struct BaseBuilderClassPrivate BaseBuilderClassPrivate;
 
66
 
 
67
typedef struct {
 
68
        GtkBuilderClass          parent;
 
69
        BaseBuilderClassPrivate *private;
 
70
}
 
71
        BaseBuilderClass;
 
72
 
 
73
GType        base_builder_get_type( void );
 
74
 
 
75
BaseBuilder *base_builder_new( void );
 
76
 
 
77
gboolean     base_builder_add_from_file( BaseBuilder *builder, const gchar *filename, GError **error );
 
78
 
 
79
GtkWindow   *base_builder_load_named_toplevel( BaseBuilder *builder, const gchar *name );
 
80
 
 
81
G_END_DECLS
 
82
 
 
83
#endif /* __BASE_BUILDER_H__ */