Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / 0.61.08 / src / gtkmm / widget_color.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file widget_color.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
10 **      This package is free software; you can redistribute it and/or
11 **      modify it under the terms of the GNU General Public License as
12 **      published by the Free Software Foundation; either version 2 of
13 **      the License, or (at your option) any later version.
14 **
15 **      This package is distributed in the hope that it will be useful,
16 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
17 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 **      General Public License for more details.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === H E A D E R S ======================================================= */
24
25 #ifdef USING_PCH
26 #       include "pch.h"
27 #else
28 #ifdef HAVE_CONFIG_H
29 #       include <config.h>
30 #endif
31
32 #include "widget_color.h"
33 #include <cmath>
34 #include "app.h"
35 #include <gtkmm/drawingarea.h>
36
37 #include "general.h"
38
39 #endif
40
41 /* === U S I N G =========================================================== */
42
43 using namespace std;
44 using namespace etl;
45 using namespace synfig;
46 using namespace studio;
47
48 /* === M A C R O S ========================================================= */
49
50 /* === G L O B A L S ======================================================= */
51
52 /* === P R O C E D U R E S ================================================= */
53
54 Gdk::Color
55 studio::colorconv_synfig2gdk(const synfig::Color &c_)
56 {
57         const synfig::Color c(c_.clamped());
58         Gdk::Color ret;
59         ret.set_rgb(
60                         256*App::gamma.r_F32_to_U8(c.get_r()),
61                         256*App::gamma.g_F32_to_U8(c.get_g()),
62                         256*App::gamma.b_F32_to_U8(c.get_b())
63                 );
64         return ret;
65 }
66
67 void
68 studio::render_color_to_window(const Glib::RefPtr<Gdk::Drawable>& window,const Gdk::Rectangle& ca,const synfig::Color &color)
69 {
70         const int height(ca.get_height());
71         const int width(ca.get_width());
72
73         const int square_size(height/2);
74
75         Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(window));
76
77         if(color.get_alpha()!=1.0)
78         {
79                 // In this case we need to render the alpha squares
80
81                 const Color bg1(Color::blend(color,Color(0.75, 0.75, 0.75),1.0).clamped());
82                 const Color bg2(Color::blend(color,Color(0.5, 0.5, 0.5),1.0).clamped());
83
84                 Gdk::Color gdk_c1(colorconv_synfig2gdk(bg1));
85                 Gdk::Color gdk_c2(colorconv_synfig2gdk(bg2));
86
87                 bool toggle(false);
88                 for(int i=0;i<width;i+=square_size)
89                 {
90                         const int square_width(min(square_size,width-i));
91
92                         if(toggle)
93                         {
94                                 gc->set_rgb_fg_color(gdk_c1);
95                                 window->draw_rectangle(gc, true, ca.get_x()+i, ca.get_y(), square_width, square_size);
96
97                                 gc->set_rgb_fg_color(gdk_c2);
98                                 window->draw_rectangle(gc, true, ca.get_x()+i, ca.get_y()+square_size, square_width, square_size);
99                                 toggle=false;
100                         }
101                         else
102                         {
103                                 gc->set_rgb_fg_color(gdk_c2);
104                                 window->draw_rectangle(gc, true, ca.get_x()+i, ca.get_y(), square_width, square_size);
105
106                                 gc->set_rgb_fg_color(gdk_c1);
107                                 window->draw_rectangle(gc, true, ca.get_x()+i, ca.get_y()+square_size, square_width, square_size);
108                                 toggle=true;
109                         }
110                 }
111         }
112         else
113         {
114                 // In this case we have a solid color to use
115                 Gdk::Color gdk_c1(colorconv_synfig2gdk(color));
116
117                 gc->set_rgb_fg_color(gdk_c1);
118                 window->draw_rectangle(gc, true, ca.get_x(), ca.get_y(), width-1, height-1);
119         }
120         gc->set_rgb_fg_color(Gdk::Color("#ffffff"));
121         window->draw_rectangle(gc, false, ca.get_x()+1, ca.get_y()+1, width-3, height-3);
122         gc->set_rgb_fg_color(Gdk::Color("#000000"));
123         window->draw_rectangle(gc, false, ca.get_x(), ca.get_y(), width-1, height-1);
124 }
125
126 /* === C L A S S E S ======================================================= */
127
128
129 /* === M E T H O D S ======================================================= */
130
131 Widget_Color::Widget_Color()
132 {
133         color=Color(0,0,0,0);
134         set_size_request(-1,16);
135
136         signal_expose_event().connect(sigc::mem_fun(*this, &studio::Widget_Color::redraw));
137         add_events(Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK);
138
139 }
140
141 Widget_Color::~Widget_Color()
142 {
143 }
144
145 void
146 Widget_Color::set_value(const synfig::Color &data)
147 {
148         assert(data.is_valid());
149         color=data;
150         queue_draw();
151 }
152
153 const synfig::Color &
154 Widget_Color::get_value()
155 {
156         assert(color.is_valid());
157         return color;
158 }
159
160 bool
161 Widget_Color::on_event(GdkEvent *event)
162 {
163         switch(event->type)
164         {
165         case GDK_BUTTON_PRESS:
166                 if(event->button.button==1)
167                 {
168                         signal_activate_();
169                         return true;
170                 }
171                 if(event->button.button==3)
172                 {
173                         signal_secondary_();
174                         return true;
175                 }
176                 break;
177
178         default:
179                 break;
180         }
181         return false;
182 }
183
184 bool
185 Widget_Color::redraw(GdkEventExpose */*bleh*/)
186 {
187         //Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(get_window()));
188
189         const int h(get_height());
190         const int w(get_width());
191
192         render_color_to_window(get_window(),Gdk::Rectangle(0,0,w,h),color);
193
194         return true;
195 }