~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpwidgets/gimpenumwidgets.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LIBGIMP - The GIMP Library
 
2
 * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
 
3
 *
 
4
 * gimpenumwidgets.h
 
5
 * Copyright (C) 2002-2004  Sven Neumann <sven@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 2 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, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef __GIMP_ENUM_WIDGETS_H__
 
24
#define __GIMP_ENUM_WIDGETS_H__
 
25
 
 
26
 
 
27
GtkWidget * gimp_enum_radio_box_new               (GType         enum_type,
 
28
                                                   GCallback     callback,
 
29
                                                   gpointer      callback_data,
 
30
                                                   GtkWidget   **first_button);
 
31
GtkWidget * gimp_enum_radio_box_new_with_range    (GType         enum_type,
 
32
                                                   gint          minimum,
 
33
                                                   gint          maximum,
 
34
                                                   GCallback     callback,
 
35
                                                   gpointer      callback_data,
 
36
                                                   GtkWidget   **first_button);
 
37
 
 
38
GtkWidget * gimp_enum_radio_frame_new             (GType         enum_type,
 
39
                                                   GtkWidget    *label_widget,
 
40
                                                   GCallback     callback,
 
41
                                                   gpointer      callback_data,
 
42
                                                   GtkWidget   **first_button);
 
43
GtkWidget * gimp_enum_radio_frame_new_with_range  (GType         enum_type,
 
44
                                                   gint          minimum,
 
45
                                                   gint          maximum,
 
46
                                                   GtkWidget    *label_widget,
 
47
                                                   GCallback     callback,
 
48
                                                   gpointer      callback_data,
 
49
                                                   GtkWidget   **first_button);
 
50
 
 
51
GtkWidget * gimp_enum_stock_box_new               (GType         enum_type,
 
52
                                                   const gchar  *stock_prefix,
 
53
                                                   GtkIconSize   icon_size,
 
54
                                                   GCallback     callback,
 
55
                                                   gpointer      callback_data,
 
56
                                                   GtkWidget   **first_button);
 
57
GtkWidget * gimp_enum_stock_box_new_with_range    (GType         enum_type,
 
58
                                                   gint          minimum,
 
59
                                                   gint          maximum,
 
60
                                                   const gchar  *stock_prefix,
 
61
                                                   GtkIconSize   icon_size,
 
62
                                                   GCallback     callback,
 
63
                                                   gpointer      callback_data,
 
64
                                                   GtkWidget   **first_button);
 
65
 
 
66
void        gimp_enum_stock_box_set_child_padding (GtkWidget    *stock_box,
 
67
                                                   gint          xpad,
 
68
                                                   gint          ypad);
 
69
 
 
70
 
 
71
#endif  /* __GIMP_ENUM_WIDGETS_H__ */