~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to app/widgets/gimpdevices.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The GIMP -- an image manipulation program
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 */
 
18
 
 
19
#ifndef __GIMP_DEVICES_H__
 
20
#define __GIMP_DEVICES_H__
 
21
 
 
22
 
 
23
typedef void (* GimpDeviceChangeNotify) (Gimp *gimp);
 
24
 
 
25
 
 
26
void        gimp_devices_init          (Gimp                   *gimp,
 
27
                                        GimpDeviceChangeNotify  change_notify);
 
28
void        gimp_devices_exit          (Gimp                   *gimp);
 
29
 
 
30
void        gimp_devices_restore       (Gimp                   *gimp);
 
31
void        gimp_devices_save          (Gimp                   *gimp,
 
32
                                        gboolean                always_save);
 
33
 
 
34
gboolean    gimp_devices_clear         (Gimp                   *gimp,
 
35
                                        GError                **error);
 
36
 
 
37
GdkDevice * gimp_devices_get_current   (Gimp                   *gimp);
 
38
 
 
39
gboolean    gimp_devices_check_change  (Gimp                   *gimp,
 
40
                                        GdkEvent               *event);
 
41
void        gimp_devices_select_device (Gimp                   *gimp,
 
42
                                        GdkDevice              *device);
 
43
 
 
44
 
 
45
#endif /* __GIMP_DEVICES_H__ */