1 /* === S Y N F I G ========================================================= */
2 /*! \file inputdevice.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 "inputdevice.h"
35 #include <ETL/stringf>
40 /* === U S I N G =========================================================== */
44 using namespace synfig;
45 using namespace synfigapp;
47 /* === M A C R O S ========================================================= */
49 /* === G L O B A L S ======================================================= */
51 class DeviceSettings : public Settings
53 InputDevice* input_device;
55 DeviceSettings(InputDevice* input_device):
56 input_device(input_device) { }
59 virtual bool get_value(const synfig::String& key, synfig::String& value)const
63 value=input_device->get_state();
66 if(key=="bline_width")
68 value=strprintf("%s",input_device->get_bline_width().get_string().c_str());
73 value=strprintf("%f",(float)input_device->get_opacity());
76 if(key=="blend_method")
78 value=strprintf("%i",(int)input_device->get_blend_method());
83 Color c(input_device->get_foreground_color());
84 value=strprintf("%f %f %f %f",(float)c.get_r(),(float)c.get_g(),(float)c.get_b(),(float)c.get_a());
89 return Settings::get_value(key, value);
92 virtual bool set_value(const synfig::String& key,const synfig::String& value)
96 input_device->set_state(value);
99 if(key=="bline_width")
101 input_device->set_bline_width(synfig::Distance(value));
106 input_device->set_opacity(atof(value.c_str()));
109 if(key=="blend_method")
111 input_device->set_blend_method(Color::BlendMethod(atoi(value.c_str())));
116 float r=0,g=0,b=0,a=1;
117 if(!strscanf(value,"%f %f %f %f",&r,&g,&b,&a))
119 input_device->set_foreground_color(synfig::Color(r,g,b,a));
123 return Settings::set_value(key, value);
126 virtual KeyList get_key_list()const
128 KeyList ret(Settings::get_key_list());
129 ret.push_back("color");
130 ret.push_back("state");
131 ret.push_back("bline_width");
132 ret.push_back("blend_method");
133 ret.push_back("opacity");
138 /* === P R O C E D U R E S ================================================= */
140 /* === M E T H O D S ======================================================= */
142 InputDevice::InputDevice(const synfig::String id_, Type type_):
145 state_((type_==TYPE_PEN)?"sketch":"normal"),
146 foreground_color_(Color::black()),
147 background_color_(Color::white()),
148 bline_width_(Distance(1,Distance::SYSTEM_POINTS)),
150 blend_method_(Color::BLEND_COMPOSITE)
175 device_settings=new DeviceSettings(this);
176 Main::settings().add_domain(device_settings,"input_device."+id_);
179 InputDevice::~InputDevice()
181 Main::settings().remove_domain("input_device."+id_);
182 delete device_settings;
186 InputDevice::settings()
188 return *device_settings;
192 InputDevice::settings()const
194 return *device_settings;