Apply new naming style for type icons. Modify the gradient type icon. Patch by Yu...
[synfig.git] / synfig-studio / src / gui / iconcontroller.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file iconcontroller.cpp
3 **      \brief Template File
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007, 2008 Chris Moore
10 **  Copyright (c) 2008 Paul Wise
11 **  Copyright (c) 2009 Gerco Ballintijn
12 **      Copyright (c) 2009 Carlos López
13 **      Copyright (c) 2009 Nikita Kitaev
14 **
15 **      This package is free software; you can redistribute it and/or
16 **      modify it under the terms of the GNU General Public License as
17 **      published by the Free Software Foundation; either version 2 of
18 **      the License, or (at your option) any later version.
19 **
20 **      This package is distributed in the hope that it will be useful,
21 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
22 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 **      General Public License for more details.
24 **      \endlegal
25 */
26 /* ========================================================================= */
27
28 /* === H E A D E R S ======================================================= */
29
30 #ifdef USING_PCH
31 #       include "pch.h"
32 #else
33 #ifdef HAVE_CONFIG_H
34 #       include <config.h>
35 #endif
36
37 #include "iconcontroller.h"
38 #include <synfig/valuenode_const.h>
39 #include <gtkmm/button.h>
40 #include <gtkmm/window.h>
41 #include <synfigapp/action.h>
42
43 #include "general.h"
44
45 #endif
46
47 /* === U S I N G =========================================================== */
48
49 using namespace etl;
50 using namespace std;
51 using namespace studio;
52 using namespace synfig;
53
54 /* === M A C R O S ========================================================= */
55
56 #ifdef WIN32
57 #       ifdef IMAGE_DIR
58 #               undef IMAGE_DIR
59 #               define IMAGE_DIR "share\\pixmaps"
60 #       endif
61 #endif
62
63 #ifndef IMAGE_DIR
64 #       define IMAGE_DIR "/usr/local/share/pixmaps"
65 #endif
66
67
68 #ifndef IMAGE_EXT
69 #       define IMAGE_EXT        "png"
70 #endif
71
72 /* === M E T H O D S ======================================================= */
73
74 static Glib::RefPtr<Gdk::Pixbuf> _tree_pixbuf_table_value_type[(int)synfig::ValueBase::TYPE_END];
75
76 #ifdef WIN32
77 IconController::IconController(const synfig::String& basepath)
78 #else
79 IconController::IconController(const synfig::String& /*basepath*/)
80 #endif
81 {
82         Gtk::IconSource icon_source;
83         icon_source.set_direction_wildcarded();
84         icon_source.set_state_wildcarded();
85         icon_source.set_size_wildcarded();
86         icon_factory=Gtk::IconFactory::create();
87
88         std::string path_to_icons;
89 #ifdef WIN32
90         path_to_icons=basepath+ETL_DIRECTORY_SEPARATOR+".."+ETL_DIRECTORY_SEPARATOR+IMAGE_DIR;
91 #else
92         path_to_icons=IMAGE_DIR;
93 #endif
94
95         char* synfig_root=getenv("SYNFIG_ROOT");
96         if(synfig_root) {
97                 path_to_icons=synfig_root;
98                 path_to_icons+=ETL_DIRECTORY_SEPARATOR;
99                 path_to_icons+="share";
100                 path_to_icons+=ETL_DIRECTORY_SEPARATOR;
101                 path_to_icons+="pixmaps";
102                 path_to_icons+=ETL_DIRECTORY_SEPARATOR;
103                 path_to_icons+="synfigstudio";
104         }
105         path_to_icons+=ETL_DIRECTORY_SEPARATOR;
106
107         try{
108         Gtk::Window::set_default_icon_from_file(path_to_icons+"synfig_icon."+IMAGE_EXT);
109         } catch(...)
110         {
111                 synfig::warning("Unable to open "+path_to_icons+"synfig_icon."+IMAGE_EXT);
112         }
113
114 #define INIT_STOCK_ICON(name,iconfile,desc){                                                    \
115         Gtk::StockItem stockitem(Gtk::StockID("synfig-" #name),desc); \
116         Gtk::Stock::add(stockitem);                                                             \
117         Gtk::IconSet icon_set;                                                                  \
118         icon_source.set_filename(path_to_icons+iconfile);                                                       \
119         icon_set.add_source(icon_source);                                               \
120         icon_factory->add(stockitem.get_stock_id(),icon_set); \
121         }
122
123 #define INIT_STOCK_ICON_CLONE(name,stockid,desc){                                                       \
124         Gtk::StockItem stockitem(Gtk::StockID("synfig-" #name),desc); \
125         Gtk::Stock::add(stockitem);                                                             \
126         Gtk::IconSet icon_set;                                                                  \
127         if(Gtk::Stock::lookup(stockitem.get_stock_id(),icon_set))       \
128         icon_factory->add(stockitem.get_stock_id(),icon_set); \
129         }
130
131 #define INIT_STOCK_ITEM(name,desc)                                                      \
132         stock_##name=Gtk::StockItem(Gtk::StockID("synfig-" #name),desc);                        \
133         Gtk::Stock::add(stock_##name);
134
135         // Types
136         INIT_STOCK_ICON(type_bool,"type_bool_icon."IMAGE_EXT,_("Bool"));
137         INIT_STOCK_ICON(type_integer,"type_integer_icon."IMAGE_EXT,_("Integer"));
138         INIT_STOCK_ICON(type_angle,"type_angle_icon."IMAGE_EXT,_("Angle"));
139         INIT_STOCK_ICON(type_time,"type_time_icon."IMAGE_EXT,_("Time"));
140         INIT_STOCK_ICON(type_real,"type_real_icon."IMAGE_EXT,_("Real"));
141         INIT_STOCK_ICON(type_vector,"type_vector_icon."IMAGE_EXT,_("Vector"));
142         INIT_STOCK_ICON(type_color,"type_color_icon."IMAGE_EXT,_("Color"));
143         INIT_STOCK_ICON(type_segment,"type_segment_icon."IMAGE_EXT,_("Segment"));
144         INIT_STOCK_ICON(type_blinepoint,"type_blinepoint_icon."IMAGE_EXT,_("BLine Point"));
145         INIT_STOCK_ICON(type_list,"type_list_icon."IMAGE_EXT,_("Rename"));
146         INIT_STOCK_ICON(type_string,"type_string_icon."IMAGE_EXT,_("Rename"));
147         INIT_STOCK_ICON(type_canvas,"type_canvas_icon."IMAGE_EXT,_("Rename"));
148         INIT_STOCK_ICON(type_gradient,"type_gradient_icon."IMAGE_EXT,_("Gradient"))
149
150         INIT_STOCK_ICON(reset_colors,"reset_colors_icon."IMAGE_EXT,_("Reset Colors"));
151         INIT_STOCK_ICON(swap_colors,"swap_colors_icon."IMAGE_EXT,_("Swap Colors"));
152         INIT_STOCK_ICON(value_node,"valuenode_icon."IMAGE_EXT,_("ValueNode"));
153         INIT_STOCK_ICON(about,"about_icon."IMAGE_EXT,_("About"));
154         INIT_STOCK_ICON(rename,"rename_icon."IMAGE_EXT,_("Rename"));
155         INIT_STOCK_ICON(canvas,"canvas_icon."IMAGE_EXT,_("Rename"));
156         INIT_STOCK_ICON(canvas_new,"canvas_icon."IMAGE_EXT,_("New Canvas"));
157         INIT_STOCK_ICON(saveall,"saveall_icon."IMAGE_EXT,_("Save All"));
158
159         // Layers
160         INIT_STOCK_ICON(layer,"layer_icon."IMAGE_EXT,_("Layer"));
161         // Blur Layers
162         INIT_STOCK_ICON(layer_blur_blur,"layer_blur_blur_icon."IMAGE_EXT,_("Blur Layer"));
163         INIT_STOCK_ICON(layer_blur_motion,"layer_blur_motion_icon."IMAGE_EXT,_("Motion Blur Layer"));
164         INIT_STOCK_ICON(layer_blur_radial,"layer_blur_radial_icon."IMAGE_EXT,_("Radial Blur Layer"));
165         // Distortion Layers
166         INIT_STOCK_ICON(layer_distortion_curvewarp,"layer_distortion_curvewarp_icon."IMAGE_EXT,_("Curve Warp Layer"));
167         INIT_STOCK_ICON(layer_distortion_insideout,"layer_distortion_insideout_icon."IMAGE_EXT,_("Inside Out Layer"));
168         INIT_STOCK_ICON(layer_distortion_noise,"layer_distortion_noise_icon."IMAGE_EXT,_("Noise Distort Layer"));
169         INIT_STOCK_ICON(layer_distortion_spherize,"layer_distortion_spherize_icon."IMAGE_EXT,_("Spherize Layer"));
170         INIT_STOCK_ICON(layer_distortion_stretch,"layer_distortion_stretch_icon."IMAGE_EXT,_("Stretch Layer"));
171         INIT_STOCK_ICON(layer_distortion_twirl,"layer_distortion_twirl_icon."IMAGE_EXT,_("Twirl Layer"));
172         INIT_STOCK_ICON(layer_distortion_warp,"layer_distortion_warp_icon."IMAGE_EXT,_("Warp Layer"));
173         // Example Layers
174         INIT_STOCK_ICON(layer_example_filledrectangle,"layer_example_filledrectangle_icon."IMAGE_EXT,_("Filled Rectangle Layer"));
175         INIT_STOCK_ICON(layer_example_metaballs,"layer_example_metaballs_icon."IMAGE_EXT,_("Metallballs Layer"));
176         INIT_STOCK_ICON(layer_example_simplecircle,"layer_example_simplecircle_icon."IMAGE_EXT,_("Simple Circle Layer"));
177         // Filter Layers
178         INIT_STOCK_ICON(layer_filter_clamp,"layer_filter_clamp_icon."IMAGE_EXT,_("Clamp Layer"));
179         INIT_STOCK_ICON(layer_filter_colorcorrect,"layer_filter_colorcorrect_icon."IMAGE_EXT,_("Color Correct Layer"));
180         INIT_STOCK_ICON(layer_filter_halftone2,"layer_filter_halftone2_icon."IMAGE_EXT,_("Halftone 2 Layer"));
181         INIT_STOCK_ICON(layer_filter_halftone3,"layer_filter_halftone3_icon."IMAGE_EXT,_("Halftone 3 Layer"));
182         INIT_STOCK_ICON(layer_filter_lumakey,"layer_filter_lumakey_icon."IMAGE_EXT,_("Luna Key Layer"));
183         // Fractal Layers
184         INIT_STOCK_ICON(layer_fractal_julia,"layer_fractal_julia_icon."IMAGE_EXT,_("Julia Set Layer"));
185         INIT_STOCK_ICON(layer_fractal_mandelbrot,"layer_fractal_mandelbrot_icon."IMAGE_EXT,_("Mandelbrot Set Layer"));
186         // Geometry Layers
187         INIT_STOCK_ICON(layer_geometry_checkerboard,"layer_geometry_checkerboard_icon."IMAGE_EXT,_("Checker Board Layer"));
188         INIT_STOCK_ICON(layer_geometry_circle,"layer_geometry_circle_icon."IMAGE_EXT,_("Circle Layer"));
189         INIT_STOCK_ICON(layer_geometry_outline,"layer_geometry_outline_icon."IMAGE_EXT,_("Outline Layer"));
190         INIT_STOCK_ICON(layer_geometry_polygon,"layer_geometry_polygon_icon."IMAGE_EXT,_("Polygon Layer"));
191         INIT_STOCK_ICON(layer_geometry_rectangle,"layer_geometry_rectangle_icon."IMAGE_EXT,_("Rectangle Layer"));
192         INIT_STOCK_ICON(layer_geometry_region,"layer_geometry_region_icon."IMAGE_EXT,_("Region Layer"));
193         INIT_STOCK_ICON(layer_geometry_solidcolor,"layer_geometry_solidcolor_icon."IMAGE_EXT,_("Solid Color Layer"));
194         INIT_STOCK_ICON(layer_geometry_star,"layer_geometry_star_icon."IMAGE_EXT,_("Star Layer"));
195         // Gradient Layers
196         INIT_STOCK_ICON(layer_gradient_conical,"layer_gradient_conical_icon."IMAGE_EXT,_("Conical Gradient Layer"));
197         INIT_STOCK_ICON(layer_gradient_curve,"layer_gradient_curve_icon."IMAGE_EXT,_("Curve Gradient Layer"));
198         INIT_STOCK_ICON(layer_gradient_noise,"layer_gradient_noise_icon."IMAGE_EXT,_("Noise Gradient Layer"));
199         INIT_STOCK_ICON(layer_gradient_lineal,"layer_gradient_lineal_icon."IMAGE_EXT,_("Linear Gradient Layer"));
200         INIT_STOCK_ICON(layer_gradient_radial,"layer_gradient_radial_icon."IMAGE_EXT,_("Radial Gradient Layer"));
201         INIT_STOCK_ICON(layer_gradient_spiral,"layer_gradient_spiral_icon."IMAGE_EXT,_("Spiral Gradient Layer"));
202         // Other Layers
203         INIT_STOCK_ICON(layer_other_duplicate,"layer_other_duplicate_icon."IMAGE_EXT,_("Duplicate Layer"));
204         INIT_STOCK_ICON(layer_other_importimage,"layer_other_importimage_icon."IMAGE_EXT,_("Import Image Layer"));
205         INIT_STOCK_ICON(layer_other_pastecanvas,"layer_other_pastecanvas_icon."IMAGE_EXT,_("Paste Canvas Layer"));
206         INIT_STOCK_ICON(layer_other_plant,"layer_other_plant_icon."IMAGE_EXT,_("Plant Layer"));
207         INIT_STOCK_ICON(layer_other_supersample,"layer_other_supersample_icon."IMAGE_EXT,_("Super Sample Layer"));
208         INIT_STOCK_ICON(layer_other_text,"layer_other_text_icon."IMAGE_EXT,_("Text Layer"));
209         INIT_STOCK_ICON(layer_other_timeloop,"layer_other_timeloop_icon."IMAGE_EXT,_("Time Loop Layer"));
210         INIT_STOCK_ICON(layer_other_xorpattern,"layer_other_xorpattern_icon."IMAGE_EXT,_("XOR Pattern Layer"));
211         // Stylize Layers
212         INIT_STOCK_ICON(layer_stylize_bevel,"layer_stylize_bevel_icon."IMAGE_EXT,_("Bevel Layer"));
213         INIT_STOCK_ICON(layer_stylize_shade,"layer_stylize_shade_icon."IMAGE_EXT,_("Shade Layer"));
214         // Transform Layers
215         INIT_STOCK_ICON(layer_transform_rotate,"layer_transform_rotate_icon."IMAGE_EXT,_("Rotate Layer"));
216         INIT_STOCK_ICON(layer_transform_translate,"layer_transform_translate_icon."IMAGE_EXT,_("Translate Layer"));
217         INIT_STOCK_ICON(layer_transform_zoom,"layer_transform_zoom_icon."IMAGE_EXT,_("Zoom Layer"));
218
219         INIT_STOCK_ICON(plant,"plant_icon."IMAGE_EXT,"");
220
221         INIT_STOCK_ICON(group,"group_icon."IMAGE_EXT,_("Group"));
222         INIT_STOCK_ICON(grid_enable,"grid_enable_icon."IMAGE_EXT,_("Show Grid"));
223         INIT_STOCK_ICON(grid_disable,"grid_disable_icon."IMAGE_EXT,_("Hide Grid"));
224         INIT_STOCK_ICON(grid_snap_enable,"grid_snap_enable_icon."IMAGE_EXT,_("Enable Grid Snap"));
225         INIT_STOCK_ICON(grid_snap_disable,"grid_snap_disable_icon."IMAGE_EXT,_("Disable Grid Snap"));
226         INIT_STOCK_ICON(duplicate,"duplicate_icon."IMAGE_EXT,_("Duplicate"));
227         INIT_STOCK_ICON(encapsulate,"encapsulate_icon."IMAGE_EXT,_("Encapsulate"));
228         INIT_STOCK_ICON(select_all_child_layers,"select_all_child_layers_icon."IMAGE_EXT,_("Select All Child Layers"));
229
230         INIT_STOCK_ICON(clear_undo,"clear_undo_icon."IMAGE_EXT,_("Clear Undo Stack"));
231         INIT_STOCK_ICON(clear_redo,"clear_redo_icon."IMAGE_EXT,_("Clear Redo Stack"));
232
233         INIT_STOCK_ICON(children,"children_icon."IMAGE_EXT,_("Children"));
234         INIT_STOCK_ICON(curves,"curves_icon."IMAGE_EXT,_("Curves"));
235         INIT_STOCK_ICON(keyframes,"keyframe_icon."IMAGE_EXT,_("Keyframes"));
236         INIT_STOCK_ICON(meta_data,"meta_data_icon."IMAGE_EXT,_("MetaData"));
237         INIT_STOCK_ICON(navigator,"navigator_icon."IMAGE_EXT,_("Navigator"));
238         INIT_STOCK_ICON(timetrack,"time_track_icon."IMAGE_EXT,_("Time Track"));
239
240         INIT_STOCK_ICON(keyframe_lock_all,"keyframe_lock_all."IMAGE_EXT,_("All Keyframes Locked"));
241         INIT_STOCK_ICON(keyframe_lock_past,"keyframe_lock_past."IMAGE_EXT,_("Past Keyframes Locked"));
242         INIT_STOCK_ICON(keyframe_lock_future,"keyframe_lock_future."IMAGE_EXT,_("Future Keyframes Locked"));
243         INIT_STOCK_ICON(keyframe_lock_none,"keyframe_lock_none."IMAGE_EXT,_("No Keyframes Locked"));
244
245         INIT_STOCK_ICON(set_outline_color,"set_outline_color."IMAGE_EXT,_("Set as Outline"));
246         INIT_STOCK_ICON(set_fill_color,"set_fill_color."IMAGE_EXT,_("Set as Fill"));
247
248         INIT_STOCK_ICON(seek_begin,"seek_begin."IMAGE_EXT,_("Seek to Begin"));
249         INIT_STOCK_ICON(seek_prev_frame,"seek_prev_frame."IMAGE_EXT,_("Previous Frame"));
250         INIT_STOCK_ICON(seek_next_frame,"seek_next_frame."IMAGE_EXT,_("Next Frame"));
251         INIT_STOCK_ICON(seek_end,"seek_end."IMAGE_EXT,_("Seek to End"));
252         INIT_STOCK_ICON(add_to_group,"action_add_to_group_icon."IMAGE_EXT,_("Add Layer to Group"));
253         INIT_STOCK_ICON(remove_from_group,"action_remove_from_group_icon."IMAGE_EXT,_("Remove Layer from Group"));
254         INIT_STOCK_ICON(set_desc,"action_set_layer_description_icon."IMAGE_EXT,_("Set Layer Description"));
255         INIT_STOCK_ICON(export,"action_export_icon."IMAGE_EXT,_("Export Value Node"));
256         INIT_STOCK_ICON(unexport,"action_unexport_icon."IMAGE_EXT,_("Unexport Value Node"));
257
258         INIT_STOCK_ICON(toggle_duck_position,"duck_position_icon."IMAGE_EXT,_("Toggle position ducks"));
259         INIT_STOCK_ICON(toggle_duck_vertex,"duck_vertex_icon."IMAGE_EXT,_("Toggle vertex ducks"));
260         INIT_STOCK_ICON(toggle_duck_tangent,"duck_tangent_icon."IMAGE_EXT,_("Toggle tangent ducks"));
261         INIT_STOCK_ICON(toggle_duck_radius,"duck_radius_icon."IMAGE_EXT,_("Toggle radius ducks"));
262         INIT_STOCK_ICON(toggle_duck_width,"duck_width_icon."IMAGE_EXT,_("Toggle width ducks"));
263         INIT_STOCK_ICON(toggle_duck_angle,"duck_angle_icon."IMAGE_EXT,_("Toggle angle ducks"));
264
265         INIT_STOCK_ICON(toggle_show_grid,"show_grid_icon."IMAGE_EXT,_("Toggle show grid"));
266         INIT_STOCK_ICON(toggle_snap_grid,"snap_grid_icon."IMAGE_EXT,_("Toggle snap grid"));
267
268         INIT_STOCK_ICON(toggle_onion_skin,"onion_skin_icon."IMAGE_EXT,_("Toggle onion skin"));
269
270         INIT_STOCK_ICON(increase_resolution,"incr_resolution_icon."IMAGE_EXT,_("Increase resolution"));
271         INIT_STOCK_ICON(decrease_resolution,"decr_resolution_icon."IMAGE_EXT,_("Decrease resolution"));
272
273         INIT_STOCK_ICON(preview_options,"preview_options_icon."IMAGE_EXT,_("Preview Options Dialog"));
274         INIT_STOCK_ICON(render_options,"render_options_icon."IMAGE_EXT,_("Render Options Dialog"));
275
276         INIT_STOCK_ICON_CLONE(cvs_add,"gtk-add",_("CVS Add"));
277         INIT_STOCK_ICON_CLONE(cvs_update,"gtk-open",_("CVS Update"));
278         INIT_STOCK_ICON_CLONE(cvs_commit,"gtk-save",_("CVS Commit"));
279         INIT_STOCK_ICON_CLONE(cvs_revert,"gtk-revert",_("CVS Revert"));
280
281         // Tools
282         INIT_STOCK_ICON(normal,"normal_icon."IMAGE_EXT,_("Transform Tool"));
283         INIT_STOCK_ICON(transform,"transform_icon."IMAGE_EXT,_("Transform Tool"));
284         INIT_STOCK_ICON(polygon,"polyline_icon."IMAGE_EXT,_("Polygon Tool"));
285         INIT_STOCK_ICON(bline,"bline_icon."IMAGE_EXT,_("BLine Tool"));
286         INIT_STOCK_ICON(eyedrop,"eyedrop_icon."IMAGE_EXT,_("Eyedrop Tool"));
287         INIT_STOCK_ICON(fill,"fill_icon."IMAGE_EXT,_("Fill Tool"));
288         INIT_STOCK_ICON(draw,"draw_icon."IMAGE_EXT,_("Draw Tool"));
289         INIT_STOCK_ICON(sketch,"sketch_icon."IMAGE_EXT,_("Sketch Tool"));
290         INIT_STOCK_ICON(circle,"circle_icon."IMAGE_EXT,_("Circle Tool"));
291         INIT_STOCK_ICON(rectangle,"rectangle_icon."IMAGE_EXT,_("Rectangle Tool"));
292         INIT_STOCK_ICON(smooth_move,"smooth_move_icon."IMAGE_EXT,_("SmoothMove Tool"));
293         INIT_STOCK_ICON(rotate,"rotate_icon."IMAGE_EXT,"Rotate Tool");
294         INIT_STOCK_ICON(width,"width_icon."IMAGE_EXT,_("Width Tool"));
295         INIT_STOCK_ICON(scale,"scale_icon."IMAGE_EXT,"Scale Tool");
296         INIT_STOCK_ICON(zoom,"zoom_icon."IMAGE_EXT,_("Zoom Tool"));
297         INIT_STOCK_ICON(info,"info_icon."IMAGE_EXT,_("Info Tool"));
298         INIT_STOCK_ICON(mirror,"mirror_icon."IMAGE_EXT,_("Mirror Tool"));
299         INIT_STOCK_ICON(text,"text_icon."IMAGE_EXT,"Text Tool");
300         INIT_STOCK_ICON(gradient,"gradient_icon."IMAGE_EXT,_("Gradient Tool"));
301         INIT_STOCK_ICON(star,"star_icon."IMAGE_EXT,_("Star Tool"));
302
303 #undef INIT_STOCK_ICON
304 #undef INIT_STOCK_ICON_CLONE
305
306         icon_factory->add_default();
307
308         Gtk::IconSize::register_new("synfig-small_icon",12,12);
309         Gtk::IconSize::register_new("synfig-small_icon_16x16",16,16);
310
311         for(int i(0);i<(int)ValueBase::TYPE_END;i++)
312                 _tree_pixbuf_table_value_type[i]=Gtk::Button().render_icon(value_icon(ValueBase::Type(i)),Gtk::ICON_SIZE_SMALL_TOOLBAR);
313
314 }
315
316 IconController::~IconController()
317 {
318         for(int i(0);i<(int)ValueBase::TYPE_END;i++)
319                 _tree_pixbuf_table_value_type[i]=Glib::RefPtr<Gdk::Pixbuf>();
320
321         icon_factory->remove_default();
322 }
323
324 Gdk::Cursor
325 IconController::get_normal_cursor()
326 {
327         return Gdk::Cursor(Gdk::TOP_LEFT_ARROW);
328 }
329
330 Gdk::Cursor
331 IconController::get_tool_cursor(const Glib::ustring& name,const Glib::RefPtr<Gdk::Window>& window)
332 {
333         //this function is never called
334         //it is commented out in WorkArea::refresh_cursor()
335         assert(0);
336         // \todo Do we still need it?
337
338         Glib::RefPtr<Gdk::Pixmap> pixmap;
339         pixmap=Gdk::Pixmap::create(window, 64, 64, 8);
340         pixmap->set_colormap(window->get_colormap());
341         //pixmap->set_colormap(Gdk::Colormap::create(pixmap->get_visual(),false));
342         Glib::RefPtr<Gdk::Pixbuf> pixbuf;
343         pixbuf=Gtk::Button().render_icon(Gtk::StockID("synfig-"+name),Gtk::ICON_SIZE_SMALL_TOOLBAR);
344
345         pixbuf->render_to_drawable_alpha(
346                 pixmap,
347                 0,0,    // SOURCE X,Y
348                 0,0,    // DEST X Y
349                 -1,-1,  // WIDTH HEIGHT
350                 Gdk::PIXBUF_ALPHA_FULL, // (ignored)
351                 64,             //int alpha_threshold,
352                 Gdk::RGB_DITHER_MAX,            //RgbDither dither,
353                 2,2     //int x_dither, int y_dither
354         );
355 /*
356         pixmap->draw_pixbuf(
357                 Glib::RefPtr<const Gdk::GC>(0), // GC
358                 pixbuf,
359                 0, 0, // Source X,Y
360                 0, 0, // Dest X,Y
361                 -1, -1, // Width, Height
362                 Gdk::RGB_DITHER_MAX, // Dither
363                 0,0 // Dither X,Y
364         );
365 */
366
367         Gdk::Color FG("#000000");
368         Gdk::Color BG("#FF00FF");
369
370         return Gdk::Cursor(pixmap, pixmap, FG, BG, 0, 0);
371 }
372
373 Gtk::StockID
374 studio::value_icon(synfig::ValueBase::Type type)
375 {
376                 switch(type)
377                 {
378                 case ValueBase::TYPE_BOOL:
379                         return Gtk::StockID("synfig-type_bool");
380                         break;
381                 case ValueBase::TYPE_INTEGER:
382                         return Gtk::StockID("synfig-type_integer");
383                         break;
384                 case ValueBase::TYPE_ANGLE:
385                         return Gtk::StockID("synfig-type_angle");
386                         break;
387                 case ValueBase::TYPE_TIME:
388                         return Gtk::StockID("synfig-type_time");
389                         break;
390                 case ValueBase::TYPE_REAL:
391                         return Gtk::StockID("synfig-type_real");
392                         break;
393                 case ValueBase::TYPE_VECTOR:
394                         return Gtk::StockID("synfig-type_vector");
395                         break;
396                 case ValueBase::TYPE_COLOR:
397                         return Gtk::StockID("synfig-type_color");
398                         break;
399                 case ValueBase::TYPE_SEGMENT:
400                         return Gtk::StockID("synfig-type_segment");
401                         break;
402                 case ValueBase::TYPE_BLINEPOINT:
403                         return Gtk::StockID("synfig-type_blinepoint");
404                         break;
405                 case ValueBase::TYPE_LIST:
406                         return Gtk::StockID("synfig-type_list");
407                         break;
408                 case ValueBase::TYPE_CANVAS:
409                         return Gtk::StockID("synfig-type_canvas");
410                         break;
411                 case ValueBase::TYPE_STRING:
412                         return Gtk::StockID("synfig-type_string");
413                         break;
414                 case ValueBase::TYPE_GRADIENT:
415                         return Gtk::StockID("synfig-type_gradient");
416                         break;
417                 case ValueBase::TYPE_NIL:
418                 default:
419                         return Gtk::StockID("synfig-unknown");
420                         break;
421                 }
422 }
423
424 Gtk::StockID
425 studio::valuenode_icon(etl::handle<synfig::ValueNode> value_node)
426 {
427         if(handle<ValueNode_Const>::cast_dynamic(value_node))
428         {
429                 return value_icon(value_node->get_type());
430         }
431         else
432         {
433                 return Gtk::StockID("synfig-value_node");
434         }
435 }
436
437 Glib::RefPtr<Gdk::Pixbuf>
438 studio::get_tree_pixbuf(synfig::ValueBase::Type type)
439 {
440         //return Gtk::Button().render_icon(value_icon(type),Gtk::ICON_SIZE_SMALL_TOOLBAR);
441         return _tree_pixbuf_table_value_type[int(type)];
442 }
443
444 #ifdef WIN32
445 #define TEMPORARY_DELETE_MACRO DELETE
446 #undef DELETE
447 #endif
448
449 Gtk::StockID
450 studio::get_action_stock_id(const synfigapp::Action::BookEntry& action)
451 {
452         Gtk::StockID stock_id;
453         if(action.task=="add")                          stock_id=Gtk::Stock::ADD;
454         else if(action.task=="connect")         stock_id=Gtk::Stock::CONNECT;
455         else if(action.task=="disconnect")      stock_id=Gtk::Stock::DISCONNECT;
456         else if(action.task=="insert")          stock_id=Gtk::Stock::ADD;
457         else if(action.task=="lower")           stock_id=Gtk::Stock::GO_DOWN;
458         else if(action.task=="move_bottom")     stock_id=Gtk::Stock::GOTO_BOTTOM;
459         else if(action.task=="move_top")        stock_id=Gtk::Stock::GOTO_TOP;
460         else if(action.task=="raise")           stock_id=Gtk::Stock::GO_UP;
461         else if(action.task=="remove")          stock_id=Gtk::Stock::DELETE;
462         else if(action.task=="set_off")         stock_id=Gtk::Stock::NO;
463         else if(action.task=="set_on")          stock_id=Gtk::Stock::YES;
464         else                                                            stock_id=Gtk::StockID("synfig-"+
465                                                                                                                           action.task);
466         return stock_id;
467 }
468
469 #ifdef WIN32
470 #define DELETE TEMPORARY_DELETE_MACRO
471 #undef TEMPORARY_DELETE_MACRO
472 #endif
473
474 Gtk::StockID
475 studio::layer_icon(const synfig::String &layer)
476 {
477         // Blur Layers
478         if(layer=="blur")
479                 return Gtk::StockID("synfig-layer_blur_blur");
480         else if(layer=="MotionBlur") // in the future should be "motion_blur"
481                 return Gtk::StockID("synfig-layer_blur_motion");
482         else if(layer=="radial_blur")
483                 return Gtk::StockID("synfig-layer_blur_radial");
484         // Distortion Layers
485         else if(layer=="curve_warp")
486                 return Gtk::StockID("synfig-layer_distortion_curvewarp");
487         else if(layer=="inside_out")
488                 return Gtk::StockID("synfig-layer_distortion_insideout");
489         else if(layer=="noise_distort")
490                 return Gtk::StockID("synfig-layer_distortion_noise");
491         else if(layer=="spherize")
492                 return Gtk::StockID("synfig-layer_distortion_spherize");
493         else if(layer=="stretch")
494                 return Gtk::StockID("synfig-layer_distortion_stretch");
495         else if(layer=="twirl")
496                 return Gtk::StockID("synfig-layer_distortion_twirl");
497         else if(layer=="warp")
498                 return Gtk::StockID("synfig-layer_distortion_warp");
499         // Example Layers
500         else if(layer=="filled_rectangle")
501                 return Gtk::StockID("synfig-layer_example_filledrectangle");
502         else if(layer=="metaballs")
503                 return Gtk::StockID("synfig-layer_example_metaballs");
504         else if(layer=="simple_circle")
505                 return Gtk::StockID("synfig-layer_example_simplecircle");
506         // Filter Layers
507         else if(layer=="clamp")
508                 return Gtk::StockID("synfig-layer_filter_clamp");
509         else if(layer=="colorcorrect")
510                 return Gtk::StockID("synfig-layer_filter_colorcorrect");
511         else if(layer=="halftone2")
512                 return Gtk::StockID("synfig-layer_filter_halftone2");
513         else if(layer=="halftone3")
514                 return Gtk::StockID("synfig-layer_filter_halftone3");
515         else if(layer=="lumakey")
516                 return Gtk::StockID("synfig-layer_filter_lumakey");
517         // Fractal Layers
518         else if(layer=="mandelbrot")
519                 return Gtk::StockID("synfig-layer_fractal_mandelbrot");
520         else if(layer=="julia")
521                 return Gtk::StockID("synfig-layer_fractal_julia");
522         // Geometry Layers
523         else if(layer=="checker_board")
524                 return Gtk::StockID("synfig-layer_geometry_checkerboard");
525         else if(layer=="circle")
526                 return Gtk::StockID("synfig-layer_geometry_circle");
527         else if(layer=="outline")
528                 return Gtk::StockID("synfig-layer_geometry_outline");
529         else if(layer=="polygon")
530                 return Gtk::StockID("synfig-layer_geometry_polygon");
531         else if(layer=="rectangle")
532                 return Gtk::StockID("synfig-layer_geometry_rectangle");
533         else if(layer=="region")
534                 return Gtk::StockID("synfig-layer_geometry_region");
535         else if(layer=="solid_color" || layer=="SolidColor")
536                 return Gtk::StockID("synfig-layer_geometry_solidcolor");
537         else if(layer=="star")
538                 return Gtk::StockID("synfig-layer_geometry_star");
539         // Gradient Layers
540         else if(layer=="conical_gradient")
541                 return Gtk::StockID("synfig-layer_gradient_conical");
542         else if(layer=="curve_gradient")
543                 return Gtk::StockID("synfig-layer_gradient_curve");
544         else if(layer=="noise")
545                 return Gtk::StockID("synfig-layer_gradient_noise");
546         else if(layer=="linear_gradient")
547                 return Gtk::StockID("synfig-layer_gradient_lineal");
548         else if(layer=="radial_gradient")
549                 return Gtk::StockID("synfig-layer_gradient_radial");
550         else if(layer=="spiral_gradient")
551                 return Gtk::StockID("synfig-layer_gradient_spiral");
552         // Other Layers
553         else if(layer=="duplicate")
554                 return Gtk::StockID("synfig-layer_other_duplicate");
555         else if(layer=="importimage" || layer=="import")
556                 return Gtk::StockID("synfig-layer_other_importimage");
557         else if(layer=="PasteCanvas" || layer=="pastecanvas" || layer=="paste_canvas")
558                 return Gtk::StockID("synfig-layer_other_pastecanvas");
559         else if(layer=="plant")
560                 return Gtk::StockID("synfig-layer_other_plant");
561         else if(layer=="super_sample")
562                 return Gtk::StockID("synfig-layer_other_supersample");
563         else if(layer=="text")
564                 return Gtk::StockID("synfig-layer_other_text");
565         else if(layer=="timeloop")
566                 return Gtk::StockID("synfig-layer_other_timeloop");
567         else if(layer=="xor_pattern")
568                 return Gtk::StockID("synfig-layer_other_xorpattern");
569         // Stylize Layers
570         else if(layer=="bevel")
571                 return Gtk::StockID("synfig-layer_stylize_bevel");
572         else if(layer=="shade")
573                 return Gtk::StockID("synfig-layer_stylize_shade");
574         // Transform Layers
575         else if(layer=="rotate")
576                 return Gtk::StockID("synfig-layer_transform_rotate");
577         else if(layer=="translate")
578                 return Gtk::StockID("synfig-layer_transform_translate");
579         else if(layer=="zoom")
580                 return Gtk::StockID("synfig-layer_transform_zoom");
581         else
582                 return Gtk::StockID("synfig-layer");
583 }
584
585 Glib::RefPtr<Gdk::Pixbuf>
586 studio::get_tree_pixbuf_layer(const synfig::String &layer)
587 {
588         return Gtk::Button().render_icon(layer_icon(layer),Gtk::ICON_SIZE_SMALL_TOOLBAR);
589 }