2007-02-12 00:54:02 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpinputdevicestore.h
|
|
|
|
* Copyright (C) 2007 Sven Neumann <sven@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2007-02-12 00:54:02 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2007-02-12 00:54:02 +08:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2007-02-12 00:54:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_INPUT_DEVICE_STORE_H__
|
|
|
|
#define __GIMP_INPUT_DEVICE_STORE_H__
|
|
|
|
|
|
|
|
|
2008-01-11 20:45:00 +08:00
|
|
|
#define GIMP_TYPE_INPUT_DEVICE_STORE (gimp_input_device_store_get_type ())
|
2007-02-12 00:54:02 +08:00
|
|
|
#define GIMP_INPUT_DEVICE_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_INPUT_DEVICE_STORE, GimpInputDeviceStore))
|
|
|
|
#define GIMP_IS_INPUT_DEVICE_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_INPUT_DEVICE_STORE))
|
|
|
|
|
|
|
|
typedef struct _GimpInputDeviceStore GimpInputDeviceStore;
|
|
|
|
|
|
|
|
|
2008-01-11 20:45:00 +08:00
|
|
|
void gimp_input_device_store_register_types (GTypeModule *module);
|
2007-02-13 16:24:39 +08:00
|
|
|
|
2008-01-11 20:45:00 +08:00
|
|
|
GType gimp_input_device_store_get_type (void);
|
2007-02-12 00:54:02 +08:00
|
|
|
|
2007-02-13 16:06:22 +08:00
|
|
|
GimpInputDeviceStore * gimp_input_device_store_new (void);
|
2007-02-13 19:55:16 +08:00
|
|
|
gchar * gimp_input_device_store_get_device_file (GimpInputDeviceStore *store,
|
|
|
|
const gchar *udi);
|
|
|
|
GError * gimp_input_device_store_get_error (GimpInputDeviceStore *store);
|
2007-02-12 00:54:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GIMP_INPUT_DEVICE_STORE_H__ */
|