mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 09:53:25 +00:00

Added two new widgets, GimpDeviceInfoEditor, which is an editor/view widget for GimpDeviceInfo, and GimpDeviceEditor, which is an editor widget for all devices. Both are pretty much ugly right now and look a lot like the old GtkInputDialog, but are at least internally cleaned up and easily changable code and ui wise. Consider this a completely intermediate state. Also cleaned up GimpDeviceInfo so it's possible to have a proper view on it, and did the needed changes to the preferences dialog to use the new stuff.
48 lines
1.8 KiB
C
48 lines
1.8 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (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
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GIMP_DEVICE_EDITOR_H__
|
|
#define __GIMP_DEVICE_EDITOR_H__
|
|
|
|
|
|
#define GIMP_TYPE_DEVICE_EDITOR (gimp_device_editor_get_type ())
|
|
#define GIMP_DEVICE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_DEVICE_EDITOR, GimpDeviceEditor))
|
|
#define GIMP_DEVICE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_DEVICE_EDITOR, GimpDeviceEditorClass))
|
|
#define GIMP_IS_DEVICE_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_DEVICE_EDITOR))
|
|
#define GIMP_IS_DEVICE_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_DEVICE_EDITOR))
|
|
#define GIMP_DEVICE_EDITOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_DEVICE_EDITOR, GimpDeviceEditorClass))
|
|
|
|
|
|
typedef struct _GimpDeviceEditorClass GimpDeviceEditorClass;
|
|
|
|
struct _GimpDeviceEditor
|
|
{
|
|
GtkHBox parent_instance;
|
|
};
|
|
|
|
struct _GimpDeviceEditorClass
|
|
{
|
|
GtkHBoxClass parent_class;
|
|
};
|
|
|
|
|
|
GType gimp_device_editor_get_type (void) G_GNUC_CONST;
|
|
|
|
GtkWidget * gimp_device_editor_new (void);
|
|
|
|
|
|
#endif /* __GIMP_DEVICE_EDITOR_H__ */
|