~ubuntu-branches/ubuntu/hoary/gimp/hoary

« back to all changes in this revision

Viewing changes to app/actions/context-commands.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-04-04 14:51:23 UTC
  • Revision ID: james.westby@ubuntu.com-20050404145123-9py049eeelfymur8
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The GIMP -- an image manipulation program
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef __CONTEXT_COMMANDS_H__
 
20
#define __CONTEXT_COMMANDS_H__
 
21
 
 
22
 
 
23
void   context_colors_default_cmd_callback  (GtkAction   *action,
 
24
                                             gpointer     data);
 
25
void   context_colors_swap_cmd_callback     (GtkAction   *action,
 
26
                                             gpointer     data);
 
27
 
 
28
void   context_foreground_red_cmd_callback  (GtkAction *action,
 
29
                                             gint       value,
 
30
                                             gpointer   data);
 
31
void   context_foreground_green_cmd_callback(GtkAction *action,
 
32
                                             gint       value,
 
33
                                             gpointer   data);
 
34
void   context_foreground_blue_cmd_callback (GtkAction *action,
 
35
                                             gint       value,
 
36
                                             gpointer   data);
 
37
 
 
38
void   context_background_red_cmd_callback  (GtkAction *action,
 
39
                                             gint       value,
 
40
                                             gpointer   data);
 
41
void   context_background_green_cmd_callback(GtkAction *action,
 
42
                                             gint       value,
 
43
                                             gpointer   data);
 
44
void   context_background_blue_cmd_callback (GtkAction *action,
 
45
                                             gint       value,
 
46
                                             gpointer   data);
 
47
 
 
48
void   context_opacity_cmd_callback         (GtkAction *action,
 
49
                                             gint       value,
 
50
                                             gpointer   data);
 
51
void   context_paint_mode_cmd_callback      (GtkAction *action,
 
52
                                             gint       value,
 
53
                                             gpointer   data);
 
54
 
 
55
void   context_tool_select_cmd_callback     (GtkAction *action,
 
56
                                             gint       value,
 
57
                                             gpointer   data);
 
58
void   context_brush_select_cmd_callback    (GtkAction *action,
 
59
                                             gint       value,
 
60
                                             gpointer   data);
 
61
void   context_pattern_select_cmd_callback  (GtkAction *action,
 
62
                                             gint       value,
 
63
                                             gpointer   data);
 
64
void   context_palette_select_cmd_callback  (GtkAction *action,
 
65
                                             gint       value,
 
66
                                             gpointer   data);
 
67
void   context_gradient_select_cmd_callback (GtkAction *action,
 
68
                                             gint       value,
 
69
                                             gpointer   data);
 
70
void   context_font_select_cmd_callback     (GtkAction *action,
 
71
                                             gint       value,
 
72
                                             gpointer   data);
 
73
 
 
74
void   context_brush_shape_cmd_callback     (GtkAction *action,
 
75
                                             gint       value,
 
76
                                             gpointer   data);
 
77
void   context_brush_radius_cmd_callback    (GtkAction *action,
 
78
                                             gint       value,
 
79
                                             gpointer   data);
 
80
void   context_brush_spikes_cmd_callback    (GtkAction *action,
 
81
                                             gint       value,
 
82
                                             gpointer   data);
 
83
void   context_brush_hardness_cmd_callback  (GtkAction *action,
 
84
                                             gint       value,
 
85
                                             gpointer   data);
 
86
void   context_brush_aspect_cmd_callback    (GtkAction *action,
 
87
                                             gint       value,
 
88
                                             gpointer   data);
 
89
void   context_brush_angle_cmd_callback     (GtkAction *action,
 
90
                                             gint       value,
 
91
                                             gpointer   data);
 
92
 
 
93
 
 
94
#endif /* __CONTEXT_COMMANDS_H__ */