File: gimpwidgetstypes.h

package info (click to toggle)
gimp 2.8.18-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 153,908 kB
  • sloc: ansic: 704,570; makefile: 10,969; lisp: 10,839; sh: 4,430; python: 3,793; perl: 3,411; xml: 1,307; yacc: 588; lex: 342
file content (105 lines) | stat: -rw-r--r-- 4,503 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* LIBGIMP - The GIMP Library
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 *
 * gimpwidgetstypes.h
 *
 * This library is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#ifndef __GIMP_WIDGETS_TYPES_H__
#define __GIMP_WIDGETS_TYPES_H__

#include <libgimpconfig/gimpconfigtypes.h>

#include <libgimpwidgets/gimpwidgetsenums.h>

G_BEGIN_DECLS

/* For information look into the html documentation */


typedef struct _GimpBrowser               GimpBrowser;
typedef struct _GimpButton                GimpButton;
typedef struct _GimpCellRendererColor     GimpCellRendererColor;
typedef struct _GimpCellRendererToggle    GimpCellRendererToggle;
typedef struct _GimpChainButton           GimpChainButton;
typedef struct _GimpColorArea             GimpColorArea;
typedef struct _GimpColorButton           GimpColorButton;
typedef struct _GimpColorDisplay          GimpColorDisplay;
typedef struct _GimpColorDisplayStack     GimpColorDisplayStack;
typedef struct _GimpColorHexEntry         GimpColorHexEntry;
typedef struct _GimpColorNotebook         GimpColorNotebook;
typedef struct _GimpColorProfileComboBox  GimpColorProfileComboBox;
typedef struct _GimpColorProfileStore     GimpColorProfileStore;
typedef struct _GimpColorScale            GimpColorScale;
typedef struct _GimpColorScales           GimpColorScales;
typedef struct _GimpColorSelector         GimpColorSelector;
typedef struct _GimpColorSelect           GimpColorSelect;
typedef struct _GimpColorSelection        GimpColorSelection;
typedef struct _GimpController            GimpController;
typedef struct _GimpDialog                GimpDialog;
typedef struct _GimpEnumStore             GimpEnumStore;
typedef struct _GimpEnumComboBox          GimpEnumComboBox;
typedef struct _GimpEnumLabel             GimpEnumLabel;
typedef struct _GimpFileEntry             GimpFileEntry;
typedef struct _GimpFrame                 GimpFrame;
typedef struct _GimpIntComboBox           GimpIntComboBox;
typedef struct _GimpIntStore              GimpIntStore;
typedef struct _GimpMemsizeEntry          GimpMemsizeEntry;
typedef struct _GimpNumberPairEntry       GimpNumberPairEntry;
typedef struct _GimpOffsetArea            GimpOffsetArea;
typedef struct _GimpPageSelector          GimpPageSelector;
typedef struct _GimpPathEditor            GimpPathEditor;
typedef struct _GimpPickButton            GimpPickButton;
typedef struct _GimpPreview               GimpPreview;
typedef struct _GimpPreviewArea           GimpPreviewArea;
typedef struct _GimpPixmap                GimpPixmap;
typedef struct _GimpRuler                 GimpRuler;
typedef struct _GimpScrolledPreview       GimpScrolledPreview;
typedef struct _GimpSizeEntry             GimpSizeEntry;
typedef struct _GimpStringComboBox        GimpStringComboBox;
typedef struct _GimpUnitComboBox          GimpUnitComboBox;
typedef struct _GimpUnitMenu              GimpUnitMenu;
typedef struct _GimpUnitStore             GimpUnitStore;
typedef struct _GimpZoomModel             GimpZoomModel;


/**
 * GimpHelpFunc:
 * @help_id:   the help ID
 * @help_data: the help user data
 *
 * This is the prototype for all functions you pass as @help_func to
 * the various GIMP dialog constructors like gimp_dialog_new(),
 * gimp_query_int_box() etc.
 *
 * Help IDs are textual identifiers the help system uses to figure
 * which page to display.
 *
 * All these dialog constructors functions call gimp_help_connect().
 *
 * In most cases it will be ok to use gimp_standard_help_func() which
 * does nothing but passing the @help_id string to gimp_help(). If
 * your plug-in needs some more sophisticated help handling you can
 * provide your own @help_func which has to call gimp_help() to
 * actually display the help.
 **/
typedef void (* GimpHelpFunc) (const gchar *help_id,
                               gpointer     help_data);


G_END_DECLS

#endif /* __GIMP_WIDGETS_TYPES_H__ */