~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/widgets/gimpdbusservice.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GIMP - The GNU Image Manipulation Program
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * GimpDBusService
 
5
 * Copyright (C) 2007 Sven Neumann <sven@gimp.org>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
#ifndef __GIMP_DBUS_SERVICE_H__
 
23
#define __GIMP_DBUS_SERVICE_H__
 
24
 
 
25
G_BEGIN_DECLS
 
26
 
 
27
 
 
28
#define GIMP_DBUS_SERVICE_NAME       "org.gimp.GIMP.UI"
 
29
#define GIMP_DBUS_SERVICE_PATH       "/org/gimp/GIMP/UI"
 
30
#define GIMP_DBUS_SERVICE_INTERFACE  "org.gimp.GIMP.UI"
 
31
 
 
32
 
 
33
#define GIMP_TYPE_DBUS_SERVICE            (gimp_dbus_service_get_type ())
 
34
#define GIMP_DBUS_SERVICE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DBUS_SERVICE, GimpDBusService))
 
35
#define GIMP_DBUS_SERVICE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DBUS_SERVICE, GimpDBusServiceClass))
 
36
#define GIMP_IS_DBUS_SERVICE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_DBUS_SERVICE))
 
37
#define GIMP_IS_DBUS_SERVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DBUS_SERVICE))
 
38
#define GIMP_DBUS_SERVICE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_DBUS_SERVICE, GimpDBusServiceClass))
 
39
 
 
40
 
 
41
typedef struct _GimpDBusService      GimpDBusService;
 
42
typedef struct _GimpDBusServiceClass GimpDBusServiceClass;
 
43
 
 
44
struct _GimpDBusService
 
45
{
 
46
  GObject  parent_instance;
 
47
 
 
48
  Gimp    *gimp;
 
49
};
 
50
 
 
51
struct _GimpDBusServiceClass
 
52
{
 
53
  GObjectClass  parent_class;
 
54
};
 
55
 
 
56
 
 
57
GType     gimp_dbus_service_get_type    (void) G_GNUC_CONST;
 
58
 
 
59
GObject * gimp_dbus_service_new         (Gimp            *gimp);
 
60
 
 
61
gboolean  gimp_dbus_service_open        (GimpDBusService  *service,
 
62
                                         const gchar      *uri,
 
63
                                         gboolean         *success,
 
64
                                         GError          **dbus_error);
 
65
gboolean  gimp_dbus_service_open_as_new (GimpDBusService  *service,
 
66
                                         const gchar      *uri,
 
67
                                         gboolean         *success,
 
68
                                         GError          **dbus_error);
 
69
gboolean  gimp_dbus_service_activate    (GimpDBusService  *service,
 
70
                                         GError          **dbus_error);
 
71
 
 
72
 
 
73
G_END_DECLS
 
74
 
 
75
#endif /* __GIMP_DBUS_SERVICE_H__ */