1 /* === S Y N F I G ========================================================= */
2 /*! \file widget_color.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
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.
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.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "widget_color.h"
35 #include <gtkmm/drawingarea.h>
41 /* === U S I N G =========================================================== */
45 using namespace synfig;
46 using namespace studio;
48 /* === M A C R O S ========================================================= */
50 /* === G L O B A L S ======================================================= */
52 /* === P R O C E D U R E S ================================================= */
55 studio::colorconv_synfig2gdk(const synfig::Color &c_)
57 const synfig::Color c(c_.clamped());
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())
68 studio::render_color_to_window(const Glib::RefPtr<Gdk::Drawable>& window,const Gdk::Rectangle& ca,const synfig::Color &color)
70 const int height(ca.get_height());
71 const int width(ca.get_width());
73 const int square_size(height/2);
75 Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(window));
77 if(color.get_alpha()!=1.0)
79 // In this case we need to render the alpha squares
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());
84 Gdk::Color gdk_c1(colorconv_synfig2gdk(bg1));
85 Gdk::Color gdk_c2(colorconv_synfig2gdk(bg2));
88 for(int i=0;i<width;i+=square_size)
90 const int square_width(min(square_size,width-i));
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);
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);
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);
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);
114 // In this case we have a solid color to use
115 Gdk::Color gdk_c1(colorconv_synfig2gdk(color));
117 gc->set_rgb_fg_color(gdk_c1);
118 window->draw_rectangle(gc, true, ca.get_x(), ca.get_y(), width-1, height-1);
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);
126 /* === C L A S S E S ======================================================= */
129 /* === M E T H O D S ======================================================= */
131 Widget_Color::Widget_Color()
133 color=Color(0,0,0,0);
134 set_size_request(-1,16);
136 signal_expose_event().connect(sigc::mem_fun(*this, &studio::Widget_Color::redraw));
137 add_events(Gdk::BUTTON_PRESS_MASK | Gdk::BUTTON_RELEASE_MASK);
141 Widget_Color::~Widget_Color()
146 Widget_Color::set_value(const synfig::Color &data)
148 assert(data.is_valid());
153 const synfig::Color &
154 Widget_Color::get_value()
156 assert(color.is_valid());
161 Widget_Color::on_event(GdkEvent *event)
165 case GDK_BUTTON_PRESS:
166 if(event->button.button==1)
171 if(event->button.button==3)
185 Widget_Color::redraw(GdkEventExpose */*bleh*/)
187 //Glib::RefPtr<Gdk::GC> gc(Gdk::GC::create(get_window()));
189 const int h(get_height());
190 const int w(get_width());
192 render_color_to_window(get_window(),Gdk::Rectangle(0,0,w,h),color);