~ubuntu-branches/ubuntu/breezy/gimp/breezy

« back to all changes in this revision

Viewing changes to plug-ins/rcm/rcm_gdk.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-10-04 19:04:46 UTC
  • Revision ID: james.westby@ubuntu.com-20051004190446-ukh32kwk56s4sjhu
Tags: upstream-2.2.8
ImportĀ upstreamĀ versionĀ 2.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
3
 *
 
4
 * This is a plug-in for the GIMP.
 
5
 *
 
6
 * Colormap-Rotation plug-in. Exchanges two color ranges.
 
7
 *
 
8
 * Copyright (C) 1999 Sven Anders (anderss@fmi.uni-passau.de)
 
9
 *                    Based on code from Pavel Grinfeld (pavel@ml.com)
 
10
 *
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify
 
13
 * it under the terms of the GNU General Public License as published by
 
14
 * the Free Software Foundation; either version 2 of the License, or
 
15
 * (at your option) any later version.
 
16
 *
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 *
 
22
 * You should have received a copy of the GNU General Public License
 
23
 * along with this program; if not, write to the Free Software
 
24
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
25
 */
 
26
 
 
27
/*----------------------------------------------------------------------------
 
28
 * Change log:
 
29
 *
 
30
 * Version 2.0, 04 April 1999.
 
31
 *  Nearly complete rewrite, made plug-in stable.
 
32
 *  (Works with GIMP 1.1 and GTK+ 1.2)
 
33
 *
 
34
 * Version 1.0, 27 March 1997.
 
35
 *  Initial (unstable) release by Pavel Grinfeld
 
36
 *
 
37
 *----------------------------------------------------------------------------*/
 
38
 
 
39
 
 
40
/* Global defines */
 
41
 
 
42
#define RADIUS  60
 
43
#define MARGIN  4
 
44
#define SUM     (2*RADIUS + 2*MARGIN)
 
45
#define CENTER  (SUM/2)
 
46
 
 
47
#define GRAY_RADIUS  60
 
48
#define GRAY_MARGIN  3
 
49
#define GRAY_SUM     (2*GRAY_RADIUS + 2*GRAY_MARGIN)
 
50
#define GRAY_CENTER  (GRAY_SUM/2)
 
51
 
 
52
#define LITTLE_RADIUS 3
 
53
#define EACH_OR_BOTH  0.3
 
54
 
 
55
 
 
56
 
 
57
/* Global variables */
 
58
 
 
59
extern GdkGC *xor_gc;
 
60
 
 
61
 
 
62
void rcm_draw_little_circle (GdkWindow *window,
 
63
                             GdkGC     *color,
 
64
                             gfloat     hue,
 
65
                             gfloat     satur);
 
66
void rcm_draw_large_circle  (GdkWindow *window,
 
67
                             GdkGC     *color,
 
68
                             gfloat     gray_sat);
 
69
void rcm_draw_arrows        (GdkWindow *window,
 
70
                             GdkGC     *color,
 
71
                             RcmAngle  *angle);