~ubuntu-branches/ubuntu/hoary/gimp/hoary

« back to all changes in this revision

Viewing changes to app/widgets/gimpcontrollerinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-04-04 14:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20050404145123-9py049eeelfymur8
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 
3
 *
 
4
 * gimpcontrollerinfo.h
 
5
 * Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Lesser General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library 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 GNU
 
15
 * Lesser General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef __GIMP_CONTROLLER_WHELL_H__
 
24
#define __GIMP_CONTROLLER_INFO_H__
 
25
 
 
26
 
 
27
#include "core/gimpobject.h"
 
28
 
 
29
 
 
30
#define GIMP_TYPE_CONTROLLER_INFO            (gimp_controller_info_get_type ())
 
31
#define GIMP_CONTROLLER_INFO(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_CONTROLLER_INFO, GimpControllerInfo))
 
32
#define GIMP_CONTROLLER_INFO_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_CONTROLLER_INFO, GimpControllerInfoClass))
 
33
#define GIMP_IS_CONTROLLER_INFO(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_CONTROLLER_INFO))
 
34
#define GIMP_IS_CONTROLLER_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_CONTROLLER_INFO))
 
35
#define GIMP_CONTROLLER_INFO_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_CONTROLLER_INFO, GimpControllerInfoClass))
 
36
 
 
37
 
 
38
typedef struct _GimpControllerInfoClass GimpControllerInfoClass;
 
39
 
 
40
struct _GimpControllerInfo
 
41
{
 
42
  GimpObject      parent_instance;
 
43
 
 
44
  gboolean        enabled;
 
45
  gboolean        debug_events;
 
46
 
 
47
  GimpController *controller;
 
48
  GHashTable     *mapping;
 
49
};
 
50
 
 
51
struct _GimpControllerInfoClass
 
52
{
 
53
  GimpObjectClass parent_class;
 
54
 
 
55
  gboolean (* event_mapped) (GimpControllerInfo        *info,
 
56
                             GimpController            *controller,
 
57
                             const GimpControllerEvent *event,
 
58
                             const gchar               *action_name);
 
59
};
 
60
 
 
61
 
 
62
GType    gimp_controller_info_get_type    (void) G_GNUC_CONST;
 
63
 
 
64
void     gimp_controller_info_set_enabled (GimpControllerInfo *info,
 
65
                                           gboolean            enabled);
 
66
gboolean gimp_controller_info_get_enabled (GimpControllerInfo *info);
 
67
 
 
68
 
 
69
#endif /* __GIMP_CONTROLLER_INFO_H__ */