blob: 699750bed62d40d0f3c5d0832fa337657dc78f97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#ifndef __SP_COLOR_WHEEL_H__
#define __SP_COLOR_WHEEL_H__
/*
* A wheel color widget
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Jon A. Cruz <jon@joncruz.org>
*
* Copyright (C) 2001-2002 Lauris Kaplinski
* Copyright (C) 2001-2004 Authors
*
* This code is in public domain
*/
#include <gtk/gtkwidget.h>
#include <glib.h>
#include "color.h"
#define SP_TYPE_COLOR_WHEEL (sp_color_wheel_get_type ())
#define SP_COLOR_WHEEL(o) (GTK_CHECK_CAST ((o), SP_TYPE_COLOR_WHEEL, SPColorWheel))
#define SP_COLOR_WHEEL_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), SP_TYPE_COLOR_WHEEL, SPColorWheelClass))
#define SP_IS_COLOR_WHEEL(o) (GTK_CHECK_TYPE ((o), SP_TYPE_COLOR_WHEEL))
#define SP_IS_COLOR_WHEEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), SP_TYPE_COLOR_WHEEL))
struct SPColorWheel {
GtkWidget widget;
gboolean dragging : 1;
gboolean _inTriangle;
gboolean _triDirty;
GdkRegion* _triangle;
GdkPoint _triPoints[3];
guchar *_triImage;
gint _triBs;
guchar *_image;
gint _bs;
gdouble _spotValue;
gdouble _hue;
gdouble _sat;
gdouble _value;
gint _inner;
gint _center;
};
struct SPColorWheelClass {
GtkWidgetClass parent_class;
void (* changed) (SPColorWheel *wheel);
};
GType sp_color_wheel_get_type(void);
GtkWidget *sp_color_wheel_new ();
void sp_color_wheel_get_color( SPColorWheel *wheel, SPColor* color );
void sp_color_wheel_set_color( SPColorWheel *wheel, const SPColor* color );
gboolean sp_color_wheel_is_adjusting( SPColorWheel *wheel );
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|