Revision 678 included <iostream> in color.h. This added a couple of megabytes to...
[synfig.git] / synfig-core / trunk / src / synfig / color.cpp
index 3305eb4..576b212 100644 (file)
@@ -34,6 +34,7 @@
 #include <cstdio>
 #include <sstream>
 #include <iostream>
+#include <iomanip>
 
 #endif
 
@@ -109,6 +110,14 @@ Color::set_hex(String& hex)
        }
 }
 
+const String
+Color::get_string(void)const
+{
+       std::ostringstream o;
+       o << std::fixed << std::setprecision(3) << "#" << get_hex() << " : " << std::setw(6) << a_;
+       return String(o.str().c_str());
+}
+
 #if 0
 Color&
 Color::rotate_uv(const Angle& theta)const