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

« back to all changes in this revision

Viewing changes to app/actions/tools-commands.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
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
20
20
#define __TOOLS_COMMANDS_H__
21
21
 
22
22
 
23
 
void   tools_select_cmd_callback            (GtkAction   *action,
24
 
                                             const gchar *value,
25
 
                                             gpointer     data);
26
 
void   tools_toggle_visibility_cmd_callback (GtkAction   *action,
27
 
                                             gpointer     data);
28
 
void   tools_reset_cmd_callback             (GtkAction   *action,
29
 
                                             gpointer     data);
 
23
void   tools_select_cmd_callback               (GtkAction   *action,
 
24
                                                const gchar *value,
 
25
                                                gpointer     data);
 
26
void   tools_toggle_visibility_cmd_callback    (GtkAction   *action,
 
27
                                                gpointer     data);
 
28
 
 
29
void   tools_raise_cmd_callback                (GtkAction   *action,
 
30
                                                gpointer     data);
 
31
void   tools_raise_to_top_cmd_callback         (GtkAction   *action,
 
32
                                                gpointer     data);
 
33
void   tools_lower_cmd_callback                (GtkAction   *action,
 
34
                                                gpointer     data);
 
35
void   tools_lower_to_bottom_cmd_callback      (GtkAction   *action,
 
36
                                                gpointer     data);
 
37
 
 
38
void   tools_reset_cmd_callback                (GtkAction   *action,
 
39
                                                gpointer     data);
 
40
 
 
41
void   tools_color_average_radius_cmd_callback (GtkAction   *action,
 
42
                                                gint         value,
 
43
                                                gpointer     data);
 
44
 
 
45
void   tools_paint_brush_scale_cmd_callback    (GtkAction   *action,
 
46
                                                gint         value,
 
47
                                                gpointer     data);
 
48
 
 
49
void   tools_ink_blob_size_cmd_callback        (GtkAction   *action,
 
50
                                                gint         value,
 
51
                                                gpointer     data);
 
52
void   tools_ink_blob_aspect_cmd_callback      (GtkAction   *action,
 
53
                                                gint         value,
 
54
                                                gpointer     data);
 
55
void   tools_ink_blob_angle_cmd_callback       (GtkAction   *action,
 
56
                                                gint         value,
 
57
                                                gpointer     data);
 
58
 
 
59
void   tools_fg_select_brush_size_cmd_callback (GtkAction   *action,
 
60
                                                gint         value,
 
61
                                                gpointer     data);
 
62
 
 
63
void   tools_rectangle_toggle_fixed_aspect     (GtkAction   *action,
 
64
                                                gpointer     data);
 
65
void   tools_rectangle_toggle_fixed_center     (GtkAction   *action,
 
66
                                                gpointer     data);
 
67
 
 
68
void   tools_value_1_cmd_callback              (GtkAction   *action,
 
69
                                                gint         value,
 
70
                                                gpointer     data);
 
71
void   tools_value_2_cmd_callback              (GtkAction   *action,
 
72
                                                gint         value,
 
73
                                                gpointer     data);
 
74
void   tools_value_3_cmd_callback              (GtkAction   *action,
 
75
                                                gint         value,
 
76
                                                gpointer     data);
 
77
void   tools_value_4_cmd_callback              (GtkAction   *action,
 
78
                                                gint         value,
 
79
                                                gpointer     data);
 
80
 
 
81
void   tools_object_1_cmd_callback             (GtkAction   *action,
 
82
                                                gint         value,
 
83
                                                gpointer     data);
 
84
void   tools_object_2_cmd_callback             (GtkAction   *action,
 
85
                                                gint         value,
 
86
                                                gpointer     data);
30
87
 
31
88
 
32
89
#endif /* __TOOLS_COMMANDS_H__ */