1 /* LIBGIMP - The GIMP Library
2  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
3  *
4  * gimpunitmenu.h
5  * Copyright (C) 1999 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 3 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, see
19  * <https://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef GIMP_DISABLE_DEPRECATED
23 
24 #if !defined (__GIMP_WIDGETS_H_INSIDE__) && !defined (GIMP_WIDGETS_COMPILATION)
25 #error "Only <libgimpwidgets/gimpwidgets.h> can be included directly."
26 #endif
27 
28 #ifndef __GIMP_UNIT_MENU_H__
29 #define __GIMP_UNIT_MENU_H__
30 
31 #ifdef GTK_DISABLE_DEPRECATED
32 #undef GTK_DISABLE_DEPRECATED
33 #include <gtk/gtkoptionmenu.h>
34 #define GTK_DISABLE_DEPRECATED
35 #endif
36 
37 G_BEGIN_DECLS
38 
39 /* For information look into the C source or the html documentation */
40 
41 
42 #define GIMP_TYPE_UNIT_MENU            (gimp_unit_menu_get_type ())
43 #define GIMP_UNIT_MENU(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_UNIT_MENU, GimpUnitMenu))
44 #define GIMP_UNIT_MENU_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_UNIT_MENU, GimpUnitMenuClass))
45 #define GIMP_IS_UNIT_MENU(obj)         (G_TYPE_CHECK_INSTANCE_TYPE (obj, GIMP_TYPE_UNIT_MENU))
46 #define GIMP_IS_UNIT_MENU_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_UNIT_MENU))
47 #define GIMP_UNIT_MENU_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_UNIT_MENU, GimpUnitMenuClass))
48 
49 
50 typedef struct _GimpUnitMenuClass  GimpUnitMenuClass;
51 
52 struct _GimpUnitMenu
53 {
54   GtkOptionMenu  parent_instance;
55 
56   /* public (read only) */
57   gchar         *format;
58   GimpUnit       unit;
59   gint           pixel_digits;
60 
61   gboolean       show_pixels;
62   gboolean       show_percent;
63 
64   /* private */
65   GtkWidget     *selection;
66   GtkWidget     *tv;
67 };
68 
69 struct _GimpUnitMenuClass
70 {
71   GtkOptionMenuClass  parent_class;
72 
73   void (* unit_changed) (GimpUnitMenu *menu);
74 
75   /* Padding for future expansion */
76   void (* _gimp_reserved1) (void);
77   void (* _gimp_reserved2) (void);
78   void (* _gimp_reserved3) (void);
79   void (* _gimp_reserved4) (void);
80 };
81 
82 
83 GType       gimp_unit_menu_get_type         (void) G_GNUC_CONST;
84 
85 GtkWidget * gimp_unit_menu_new              (const gchar  *format,
86                                              GimpUnit      unit,
87                                              gboolean      show_pixels,
88                                              gboolean      show_percent,
89                                              gboolean      show_custom);
90 
91 void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
92                                              GimpUnit      unit);
93 
94 GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);
95 
96 void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
97                                              gint          digits);
98 gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
99 
100 
101 G_END_DECLS
102 
103 #endif /* __GIMP_UNIT_MENU_H__ */
104 
105 #endif /* GIMP_DISABLE_DEPRECATED */
106