~ubuntu-branches/ubuntu/trusty/nautilus-actions/trusty-proposed

« back to all changes in this revision

Viewing changes to plugin/nautilus-actions.h

  • Committer: Bazaar Package Importer
  • Author(s): Christine Spang
  • Date: 2009-05-30 10:15:52 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090530101552-5nicx1db3luh9n7e
Tags: 1.10.1-1
* New upstream release.
  - Do not search through actions when the Nautilus-provided list of
    selected files is empty
  - Remove deprecated functions
  - All sources are now ansi-compliant, though not (yet) pedantic
  - Double-click on an action opens the editor
  - Enable the OK button as soon as required fields are filled
  - Enable syslog'ed debug messages when in maintainer mode
  - Use NACT_GNOME_COMPILE_WARNINGS (see Gnome bugzilla bug #582860)
  - Replace configure.in with configure.ac, updating all Makefile.am
    accordingly
  - Fix make distcheck
  - create nautilus-actions.doap
  - Gnome bugzilla bug #574919 fixed (Closes: #523854)
  - Gnome bugzilla bugs #522605, #573365, and #568366 fixed
  - translations updated
* Added Homepage: field to debian/control
* Bump to Standards-Version 3.8.1
* update GNOME_DOWNLOAD_URL in debian/rules
* add full list of contributors to debian/copyright
* Bump debhelper compat to 7
* Fix categories in .desktop file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Nautilus Actions configuration tool
 
1
/*
 
2
 * Nautilus Actions
 
3
 *
2
4
 * Copyright (C) 2005 The GNOME Foundation
3
 
 *
4
 
 * Authors:
5
 
 *  Frederic Ruaudel (grumz@grumz.net)
6
 
 *       Rodrigo Moya (rodrigo@gnome-db.org)
 
5
 * Copyright (C) 2006, 2007, 2008 Frederic Ruaudel and others (see AUTHORS)
 
6
 * Copyright (C) 2009 Pierre Wieser and others (see AUTHORS)
7
7
 *
8
8
 * This Program is free software; you can redistribute it and/or
9
9
 * modify it under the terms of the GNU General Public License as
10
 
 * published by the Free Software Foundation; either version 2 of the
11
 
 * License, or (at your option) any later version.
 
10
 * published by the Free Software Foundation; either version 2 of
 
11
 * the License, or (at your option) any later version.
12
12
 *
13
13
 * This Program is distributed in the hope that it will be useful,
14
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
 * General Public License for more details.
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
17
17
 *
18
18
 * You should have received a copy of the GNU General Public
19
19
 * License along with this Library; see the file COPYING.  If not,
20
 
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21
 
 * Boston, MA 02111-1307, USA.
 
20
 * write to the Free Software Foundation, Inc., 59 Temple Place,
 
21
 * Suite 330, Boston, MA 02111-1307, USA.
 
22
 *
 
23
 * Authors:
 
24
 *   Frederic Ruaudel <grumz@grumz.net>
 
25
 *   Rodrigo Moya <rodrigo@gnome-db.org>
 
26
 *   Pierre Wieser <pwieser@trychlos.org>
 
27
 *   ... and many others (see AUTHORS)
22
28
 */
23
29
 
24
 
#ifndef NAUTILUS_ACTIONS_H
25
 
#define NAUTILUS_ACTIONS_H
 
30
#ifndef __NAUTILUS_ACTIONS_H__
 
31
#define __NAUTILUS_ACTIONS_H__
26
32
 
27
33
#include <glib-object.h>
28
34
#include <libnautilus-actions/nautilus-actions-config-gconf-reader.h>
39
45
typedef struct _NautilusActions NautilusActions;
40
46
typedef struct _NautilusActionsClass NautilusActionsClass;
41
47
 
42
 
struct _NautilusActions 
 
48
struct _NautilusActions
43
49
{
44
50
        GObject __parent;
45
51
        NautilusActionsConfigGconfReader* configs;
52
58
        GObjectClass __parent;
53
59
};
54
60
 
55
 
GType nautilus_actions_get_type (void);
56
 
void nautilus_actions_register_type (GTypeModule *module);
 
61
GType   nautilus_actions_get_type (void);
 
62
void    nautilus_actions_register_type (GTypeModule *module);
57
63
 
58
64
G_END_DECLS
59
65
 
60
 
#endif /* NAUTILUS_ACTIONS_H */
61
 
 
62
 
// vim:ts=3:sw=3:tw=1024
 
66
#endif /* __NAUTILUS_ACTIONS_H__ */