Add distortion layers icons. Thanks to Bertrand Grégoire (berteh)
[synfig.git] / synfig-studio / src / gtkmm / 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 /*
115 #define INIT_STOCK_ICON(name,iconfile,desc)                                                     \
116         stock_##name=Gtk::StockItem(Gtk::StockID("synfig-" #name),desc);                        \
117         Gtk::Stock::add(stock_##name);                                                          \
118         icon_source.set_filename(path_to_icons+iconfile);                                                       \
119         icon_##name.add_source(icon_source);                                            \
120         icon_factory->add(stock_##name.get_stock_id(),icon_##name)
121 */
122 #define INIT_STOCK_ICON(name,iconfile,desc){                                                    \
123         Gtk::StockItem stockitem(Gtk::StockID("synfig-" #name),desc); \
124         Gtk::Stock::add(stockitem);                                                             \
125         Gtk::IconSet icon_set;                                                                  \
126         icon_source.set_filename(path_to_icons+iconfile);                                                       \
127         icon_set.add_source(icon_source);                                               \
128         icon_factory->add(stockitem.get_stock_id(),icon_set); \
129         }
130
131 #define INIT_STOCK_ICON_CLONE(name,stockid,desc){                                                       \
132         Gtk::StockItem stockitem(Gtk::StockID("synfig-" #name),desc); \
133         Gtk::Stock::add(stockitem);                                                             \
134         Gtk::IconSet icon_set;                                                                  \
135         if(Gtk::Stock::lookup(stockitem.get_stock_id(),icon_set))       \
136         icon_factory->add(stockitem.get_stock_id(),icon_set); \
137         }
138
139 #define INIT_STOCK_ITEM(name,desc)                                                      \
140         stock_##name=Gtk::StockItem(Gtk::StockID("synfig-" #name),desc);                        \
141         Gtk::Stock::add(stock_##name);
142
143         INIT_STOCK_ICON(bool,"bool_icon."IMAGE_EXT,_("Bool"));
144         INIT_STOCK_ICON(integer,"integer_icon."IMAGE_EXT,_("Integer"));
145         INIT_STOCK_ICON(angle,"angle_icon."IMAGE_EXT,_("Angle"));
146         INIT_STOCK_ICON(time,"time_icon."IMAGE_EXT,_("Time"));
147         INIT_STOCK_ICON(real,"real_icon."IMAGE_EXT,_("Real"));
148         INIT_STOCK_ICON(vector,"vector_icon."IMAGE_EXT,_("Vector"));
149         INIT_STOCK_ICON(color,"color_icon."IMAGE_EXT,_("Color"));
150         INIT_STOCK_ICON(segment,"segment_icon."IMAGE_EXT,_("Segment"));
151         INIT_STOCK_ICON(blinepoint,"blinepoint_icon."IMAGE_EXT,_("BLine Point"));
152         INIT_STOCK_ICON(list,"list_icon."IMAGE_EXT,_("Rename"));
153         INIT_STOCK_ICON(canvas,"canvas_icon."IMAGE_EXT,_("Canvas"));
154         INIT_STOCK_ICON(string,"string_icon."IMAGE_EXT,_("Rename"));
155
156         INIT_STOCK_ICON(reset_colors,"reset_colors_icon."IMAGE_EXT,_("Reset Colors"));
157         INIT_STOCK_ICON(swap_colors,"swap_colors_icon."IMAGE_EXT,_("Swap Colors"));
158         INIT_STOCK_ICON(value_node,"valuenode_icon."IMAGE_EXT,_("ValueNode"));
159         INIT_STOCK_ICON(about,"about_icon."IMAGE_EXT,_("About"));
160         INIT_STOCK_ICON(rename,"rename_icon."IMAGE_EXT,_("Rename"));
161         INIT_STOCK_ICON(canvas_pointer,"canvas_pointer_icon."IMAGE_EXT,_("Rename"));
162         INIT_STOCK_ICON(canvas_new,"canvas_icon."IMAGE_EXT,_("New Canvas"));
163         INIT_STOCK_ICON(saveall,"saveall_icon."IMAGE_EXT,_("Save All"));
164
165         INIT_STOCK_ICON(layer,"layer_icon."IMAGE_EXT,_("Layer"));
166         INIT_STOCK_ICON(layer_pastecanvas,"pastecanvas_icon."IMAGE_EXT,_("Paste Canvas"));
167         INIT_STOCK_ICON(layer_duplicate,"layer_duplicate_icon."IMAGE_EXT,_("Duplicate Layer"));
168         INIT_STOCK_ICON(layer_gradient_lineal,"gradient_icon."IMAGE_EXT,_("Lineal Gradient Layer"));
169         INIT_STOCK_ICON(layer_gradient_radial,"layer_gradient_radial_icon."IMAGE_EXT,_("Radial Gradient Layer"));
170         INIT_STOCK_ICON(layer_gradient_spiral,"layer_gradient_spiral_icon."IMAGE_EXT,_("Spiral Gradient Layer"));
171         INIT_STOCK_ICON(layer_gradient_curve,"layer_gradient_curve_icon."IMAGE_EXT,_("Curve Gradient Layer"));
172         INIT_STOCK_ICON(layer_gradient_conical,"layer_gradient_conical_icon."IMAGE_EXT,_("Conical Gradient Layer"));
173         INIT_STOCK_ICON(layer_gradient_noise,"layer_gradient_noise_icon."IMAGE_EXT,_("Noise Gradient Layer"));
174         INIT_STOCK_ICON(layer_checkerboard,"layer_checkerboard_icon."IMAGE_EXT,_("Checker Board Layer"));
175         INIT_STOCK_ICON(layer_blur,"layer_blur_icon."IMAGE_EXT,_("Blur Layer"));
176         INIT_STOCK_ICON(layer_blur_motion,"layer_blur_motion_icon."IMAGE_EXT,_("Motion Blur Layer"));
177         INIT_STOCK_ICON(layer_blur_radial,"layer_blur_radial_icon."IMAGE_EXT,_("Radial Blur Layer"));
178         INIT_STOCK_ICON(layer_distortion_curvewarp,"layer_distortion_curvewarp_icon."IMAGE_EXT,_("Curve Warp Layer"));
179         INIT_STOCK_ICON(layer_distortion_insideout,"layer_distortion_insideout_icon."IMAGE_EXT,_("Inside Out Layer"));
180         INIT_STOCK_ICON(layer_distortion_noise,"layer_distortion_noise_icon."IMAGE_EXT,_("Noise Distort Layer"));
181         INIT_STOCK_ICON(layer_distortion_spherize,"layer_distortion_spherize_icon."IMAGE_EXT,_("Spherize Layer"));
182         INIT_STOCK_ICON(layer_distortion_stretch,"layer_distortion_stretch_icon."IMAGE_EXT,_("Stretch Layer"));
183         INIT_STOCK_ICON(layer_distortion_twirl,"layer_distortion_twirl_icon."IMAGE_EXT,_("Twirl Layer"));
184         INIT_STOCK_ICON(layer_distortion_warp,"layer_distortion_warp_icon."IMAGE_EXT,_("Warp Layer"));
185
186         INIT_STOCK_ICON(plant,"plant_icon."IMAGE_EXT,"");
187
188         INIT_STOCK_ICON(group,"group_icon."IMAGE_EXT,_("Group"));
189         INIT_STOCK_ICON(grid_enable,"grid_enable_icon."IMAGE_EXT,_("Show Grid"));
190         INIT_STOCK_ICON(grid_disable,"grid_disable_icon."IMAGE_EXT,_("Hide Grid"));
191         INIT_STOCK_ICON(grid_snap_enable,"grid_snap_enable_icon."IMAGE_EXT,_("Enable Grid Snap"));
192         INIT_STOCK_ICON(grid_snap_disable,"grid_snap_disable_icon."IMAGE_EXT,_("Disable Grid Snap"));
193         INIT_STOCK_ICON(duplicate,"duplicate_icon."IMAGE_EXT,_("Duplicate"));
194         INIT_STOCK_ICON(encapsulate,"encapsulate_icon."IMAGE_EXT,_("Encapsulate"));
195         INIT_STOCK_ICON(select_all_child_layers,"select_all_child_layers_icon."IMAGE_EXT,_("Select All Child Layers"));
196
197         INIT_STOCK_ICON(clear_undo,"clear_undo_icon."IMAGE_EXT,_("Clear Undo Stack"));
198         INIT_STOCK_ICON(clear_redo,"clear_redo_icon."IMAGE_EXT,_("Clear Redo Stack"));
199
200         INIT_STOCK_ICON(children,"children_icon."IMAGE_EXT,_("Children"));
201         INIT_STOCK_ICON(curves,"curves_icon."IMAGE_EXT,_("Curves"));
202         INIT_STOCK_ICON(keyframes,"keyframe_icon."IMAGE_EXT,_("Keyframes"));
203         INIT_STOCK_ICON(meta_data,"meta_data_icon."IMAGE_EXT,_("MetaData"));
204         INIT_STOCK_ICON(navigator,"navigator_icon."IMAGE_EXT,_("Navigator"));
205         INIT_STOCK_ICON(timetrack,"time_track_icon."IMAGE_EXT,_("Time Track"));
206
207         INIT_STOCK_ICON(keyframe_lock_all,"keyframe_lock_all."IMAGE_EXT,_("All Keyframes Locked"));
208         INIT_STOCK_ICON(keyframe_lock_past,"keyframe_lock_past."IMAGE_EXT,_("Past Keyframes Locked"));
209         INIT_STOCK_ICON(keyframe_lock_future,"keyframe_lock_future."IMAGE_EXT,_("Future Keyframes Locked"));
210         INIT_STOCK_ICON(keyframe_lock_none,"keyframe_lock_none."IMAGE_EXT,_("No Keyframes Locked"));
211
212         INIT_STOCK_ICON(set_outline_color,"set_outline_color."IMAGE_EXT,_("Set as Outline"));
213         INIT_STOCK_ICON(set_fill_color,"set_fill_color."IMAGE_EXT,_("Set as Fill"));
214
215         INIT_STOCK_ICON(seek_begin,"seek_begin."IMAGE_EXT,_("Seek to Begin"));
216         INIT_STOCK_ICON(seek_prev_frame,"seek_prev_frame."IMAGE_EXT,_("Previous Frame"));
217         INIT_STOCK_ICON(seek_next_frame,"seek_next_frame."IMAGE_EXT,_("Next Frame"));
218         INIT_STOCK_ICON(seek_end,"seek_end."IMAGE_EXT,_("Seek to End"));
219         INIT_STOCK_ICON(add_to_group,"action_add_to_group_icon."IMAGE_EXT,_("Add Layer to Group"));
220         INIT_STOCK_ICON(remove_from_group,"action_remove_from_group_icon."IMAGE_EXT,_("Remove Layer from Group"));
221         INIT_STOCK_ICON(set_desc,"action_set_layer_description_icon."IMAGE_EXT,_("Set Layer Description"));
222         INIT_STOCK_ICON(export,"action_export_icon."IMAGE_EXT,_("Export Value Node"));
223         INIT_STOCK_ICON(unexport,"action_unexport_icon."IMAGE_EXT,_("Unexport Value Node"));
224
225         INIT_STOCK_ICON(toggle_duck_position,"duck_position_icon."IMAGE_EXT,_("Toggle position ducks"));
226         INIT_STOCK_ICON(toggle_duck_vertex,"duck_vertex_icon."IMAGE_EXT,_("Toggle vertex ducks"));
227         INIT_STOCK_ICON(toggle_duck_tangent,"duck_tangent_icon."IMAGE_EXT,_("Toggle tangent ducks"));
228         INIT_STOCK_ICON(toggle_duck_radius,"duck_radius_icon."IMAGE_EXT,_("Toggle radius ducks"));
229         INIT_STOCK_ICON(toggle_duck_width,"duck_width_icon."IMAGE_EXT,_("Toggle width ducks"));
230         INIT_STOCK_ICON(toggle_duck_angle,"duck_angle_icon."IMAGE_EXT,_("Toggle angle ducks"));
231
232         INIT_STOCK_ICON(toggle_show_grid,"show_grid_icon."IMAGE_EXT,_("Toggle show grid"));
233         INIT_STOCK_ICON(toggle_snap_grid,"snap_grid_icon."IMAGE_EXT,_("Toggle snap grid"));
234
235         INIT_STOCK_ICON(toggle_onion_skin,"onion_skin_icon."IMAGE_EXT,_("Toggle onion skin"));
236
237         INIT_STOCK_ICON(increase_resolution,"incr_resolution_icon."IMAGE_EXT,_("Increase resolution"));
238         INIT_STOCK_ICON(decrease_resolution,"decr_resolution_icon."IMAGE_EXT,_("Decrease resolution"));
239
240         INIT_STOCK_ICON(preview_options,"preview_options_icon."IMAGE_EXT,_("Preview Options Dialog"));
241         INIT_STOCK_ICON(render_options,"render_options_icon."IMAGE_EXT,_("Render Options Dialog"));
242
243         INIT_STOCK_ICON_CLONE(cvs_add,"gtk-add",_("CVS Add"));
244         INIT_STOCK_ICON_CLONE(cvs_update,"gtk-open",_("CVS Update"));
245         INIT_STOCK_ICON_CLONE(cvs_commit,"gtk-save",_("CVS Commit"));
246         INIT_STOCK_ICON_CLONE(cvs_revert,"gtk-revert",_("CVS Revert"));
247
248         // Tools
249         INIT_STOCK_ICON(normal,"normal_icon."IMAGE_EXT,_("Normal Tool"));
250         INIT_STOCK_ICON(transform,"transform_icon."IMAGE_EXT,_("Transform Tool"));
251         INIT_STOCK_ICON(polygon,"polyline_icon."IMAGE_EXT,_("Polygon Tool"));
252         INIT_STOCK_ICON(bline,"bline_icon."IMAGE_EXT,_("BLine Tool"));
253         INIT_STOCK_ICON(eyedrop,"eyedrop_icon."IMAGE_EXT,_("Eyedrop Tool"));
254         INIT_STOCK_ICON(fill,"fill_icon."IMAGE_EXT,_("Fill Tool"));
255         INIT_STOCK_ICON(draw,"draw_icon."IMAGE_EXT,_("Draw Tool"));
256         INIT_STOCK_ICON(sketch,"sketch_icon."IMAGE_EXT,_("Sketch Tool"));
257         INIT_STOCK_ICON(circle,"circle_icon."IMAGE_EXT,_("Circle Tool"));
258         INIT_STOCK_ICON(rectangle,"rectangle_icon."IMAGE_EXT,_("Rectangle Tool"));
259         INIT_STOCK_ICON(smooth_move,"smooth_move_icon."IMAGE_EXT,_("SmoothMove Tool"));
260         INIT_STOCK_ICON(rotate,"rotate_icon."IMAGE_EXT,"Rotate Tool");
261         INIT_STOCK_ICON(width,"width_icon."IMAGE_EXT,_("Width Tool"));
262         INIT_STOCK_ICON(scale,"scale_icon."IMAGE_EXT,"Scale Tool");
263         INIT_STOCK_ICON(zoom,"zoom_icon."IMAGE_EXT,_("Zoom Tool"));
264         INIT_STOCK_ICON(info,"info_icon."IMAGE_EXT,_("Info Tool"));
265         INIT_STOCK_ICON(mirror,"mirror_icon."IMAGE_EXT,_("Mirror Tool"));
266         INIT_STOCK_ICON(text,"text_icon."IMAGE_EXT,"Text Tool");
267         INIT_STOCK_ICON(gradient,"gradient_icon."IMAGE_EXT,_("Gradient Tool"));
268         INIT_STOCK_ICON(star,"star_icon."IMAGE_EXT,_("Star Tool"));
269
270         icon_factory->add_default();
271
272         Gtk::IconSize::register_new("synfig-small_icon",12,12);
273         Gtk::IconSize::register_new("synfig-small_icon_16x16",16,16);
274
275         for(int i(0);i<(int)ValueBase::TYPE_END;i++)
276                 _tree_pixbuf_table_value_type[i]=Gtk::Button().render_icon(value_icon(ValueBase::Type(i)),Gtk::ICON_SIZE_SMALL_TOOLBAR);
277
278 }
279
280 IconController::~IconController()
281 {
282         for(int i(0);i<(int)ValueBase::TYPE_END;i++)
283                 _tree_pixbuf_table_value_type[i]=Glib::RefPtr<Gdk::Pixbuf>();
284
285         icon_factory->remove_default();
286 }
287
288 Gdk::Cursor
289 IconController::get_normal_cursor()
290 {
291         return Gdk::Cursor(Gdk::TOP_LEFT_ARROW);
292 }
293
294 Gdk::Cursor
295 IconController::get_tool_cursor(const Glib::ustring& name,const Glib::RefPtr<Gdk::Window>& window)
296 {
297         Glib::RefPtr<Gdk::Pixmap> pixmap;
298         pixmap=Gdk::Pixmap::create(window, 64, 64, 8);
299         pixmap->set_colormap(window->get_colormap());
300         //pixmap->set_colormap(Gdk::Colormap::create(pixmap->get_visual(),false));
301         Glib::RefPtr<Gdk::Pixbuf> pixbuf;
302         pixbuf=Gtk::Button().render_icon(Gtk::StockID("synfig-"+name),Gtk::ICON_SIZE_SMALL_TOOLBAR);
303
304         pixbuf->render_to_drawable_alpha(
305                 pixmap,
306                 0,0,    // SOURCE X,Y
307                 0,0,    // DEST X Y
308                 -1,-1,  // WIDTH HEIGHT
309                 Gdk::PIXBUF_ALPHA_FULL, // (ignored)
310                 64,             //int alpha_threshold,
311                 Gdk::RGB_DITHER_MAX,            //RgbDither dither,
312                 2,2     //int x_dither, int y_dither
313         );
314 /*
315         pixmap->draw_pixbuf(
316                 Glib::RefPtr<const Gdk::GC>(0), // GC
317                 pixbuf,
318                 0, 0, // Source X,Y
319                 0, 0, // Dest X,Y
320                 -1, -1, // Width, Height
321                 Gdk::RGB_DITHER_MAX, // Dither
322                 0,0 // Dither X,Y
323         );
324 */
325
326         Gdk::Color FG("#000000");
327         Gdk::Color BG("#FF00FF");
328
329         return Gdk::Cursor(pixmap, pixmap, FG, BG, 0, 0);
330 }
331
332 Gtk::StockID
333 studio::value_icon(synfig::ValueBase::Type type)
334 {
335                 switch(type)
336                 {
337                 case ValueBase::TYPE_BOOL:
338                         return Gtk::StockID("synfig-bool");
339                         break;
340                 case ValueBase::TYPE_INTEGER:
341                         return Gtk::StockID("synfig-integer");
342                         break;
343                 case ValueBase::TYPE_ANGLE:
344                         return Gtk::StockID("synfig-angle");
345                         break;
346                 case ValueBase::TYPE_TIME:
347                         return Gtk::StockID("synfig-time");
348                         break;
349                 case ValueBase::TYPE_REAL:
350                         return Gtk::StockID("synfig-real");
351                         break;
352                 case ValueBase::TYPE_VECTOR:
353                         return Gtk::StockID("synfig-vector");
354                         break;
355                 case ValueBase::TYPE_COLOR:
356                         return Gtk::StockID("synfig-color");
357                         break;
358                 case ValueBase::TYPE_SEGMENT:
359                         return Gtk::StockID("synfig-segment");
360                         break;
361                 case ValueBase::TYPE_BLINEPOINT:
362                         return Gtk::StockID("synfig-blinepoint");
363                         break;
364                 case ValueBase::TYPE_LIST:
365                         return Gtk::StockID("synfig-list");
366                         break;
367                 case ValueBase::TYPE_CANVAS:
368                         return Gtk::StockID("synfig-canvas_pointer");
369                         break;
370                 case ValueBase::TYPE_STRING:
371                         return Gtk::StockID("synfig-string");
372                         break;
373                 case ValueBase::TYPE_GRADIENT:
374                         return Gtk::StockID("synfig-gradient");
375                         break;
376                 case ValueBase::TYPE_NIL:
377                 default:
378                         return Gtk::StockID("synfig-unknown");
379                         break;
380                 }
381 }
382
383 Gtk::StockID
384 studio::valuenode_icon(etl::handle<synfig::ValueNode> value_node)
385 {
386         if(handle<ValueNode_Const>::cast_dynamic(value_node))
387         {
388                 return value_icon(value_node->get_type());
389         }
390         else
391         {
392                 return Gtk::StockID("synfig-value_node");
393         }
394 }
395
396 Glib::RefPtr<Gdk::Pixbuf>
397 studio::get_tree_pixbuf(synfig::ValueBase::Type type)
398 {
399         //return Gtk::Button().render_icon(value_icon(type),Gtk::ICON_SIZE_SMALL_TOOLBAR);
400         return _tree_pixbuf_table_value_type[int(type)];
401 }
402
403 #ifdef WIN32
404 #define TEMPORARY_DELETE_MACRO DELETE
405 #undef DELETE
406 #endif
407
408 Gtk::StockID
409 studio::get_action_stock_id(const synfigapp::Action::BookEntry& action)
410 {
411         Gtk::StockID stock_id;
412         if(action.task=="add")                          stock_id=Gtk::Stock::ADD;
413         else if(action.task=="connect")         stock_id=Gtk::Stock::CONNECT;
414         else if(action.task=="disconnect")      stock_id=Gtk::Stock::DISCONNECT;
415         else if(action.task=="insert")          stock_id=Gtk::Stock::ADD;
416         else if(action.task=="lower")           stock_id=Gtk::Stock::GO_DOWN;
417         else if(action.task=="move_bottom")     stock_id=Gtk::Stock::GOTO_BOTTOM;
418         else if(action.task=="move_top")        stock_id=Gtk::Stock::GOTO_TOP;
419         else if(action.task=="raise")           stock_id=Gtk::Stock::GO_UP;
420         else if(action.task=="remove")          stock_id=Gtk::Stock::DELETE;
421         else if(action.task=="set_off")         stock_id=Gtk::Stock::NO;
422         else if(action.task=="set_on")          stock_id=Gtk::Stock::YES;
423         else                                                            stock_id=Gtk::StockID("synfig-"+
424                                                                                                                           action.task);
425         return stock_id;
426 }
427
428 #ifdef WIN32
429 #define DELETE TEMPORARY_DELETE_MACRO
430 #undef TEMPORARY_DELETE_MACRO
431 #endif
432
433 Gtk::StockID
434 studio::layer_icon(const synfig::String &layer)
435 {
436         if(layer=="PasteCanvas" || layer=="pastecanvas" || layer=="paste_canvas")
437                 return Gtk::StockID("synfig-layer_pastecanvas");
438         else if(layer=="rotate")
439                 return Gtk::StockID("synfig-rotate");
440         else if(layer=="zoom")
441                 return Gtk::StockID("synfig-zoom");
442         else if(layer=="region")
443                 return Gtk::StockID("synfig-bline");
444         else if(layer=="polygon")
445                 return Gtk::StockID("synfig-polygon");
446         else if(layer=="outline")
447                 return Gtk::StockID("synfig-width");
448         else if(layer=="circle")
449                 return Gtk::StockID("synfig-circle");
450         else if(layer=="rectangle")
451                 return Gtk::StockID("synfig-rectangle");
452         else if(layer=="star")
453                 return Gtk::StockID("synfig-star");
454         else if(layer=="plant")
455                 return Gtk::StockID("synfig-plant");
456         else if(layer=="text")
457                 return Gtk::StockID("synfig-text");
458         else if(layer=="checker_board")
459                 return Gtk::StockID("synfig-layer_checkerboard");
460         else if(layer=="duplicate")
461                 return Gtk::StockID("synfig-layer_duplicate");
462         else if(layer=="linear_gradient")
463                 return Gtk::StockID("synfig-layer_gradient_lineal");
464         else if(layer=="radial_gradient")
465                 return Gtk::StockID("synfig-layer_gradient_radial");
466         else if(layer=="spiral_gradient")
467                 return Gtk::StockID("synfig-layer_gradient_spiral");
468         else if(layer=="curve_gradient")
469                 return Gtk::StockID("synfig-layer_gradient_curve");
470         else if(layer=="conical_gradient")
471                 return Gtk::StockID("synfig-layer_gradient_conical");
472         else if(layer=="noise")
473                 return Gtk::StockID("synfig-layer_gradient_noise");
474         else if(layer=="blur")
475                 return Gtk::StockID("synfig-layer_blur");
476         else if(layer=="radial_blur")
477                 return Gtk::StockID("synfig-layer_blur_radial");
478         else if(layer=="MotionBlur") // in the future should be "motion_blur"
479                 return Gtk::StockID("synfig-layer_blur_motion");
480         else if(layer=="curve_warp")
481                 return Gtk::StockID("synfig-layer_distortion_curvewarp");
482         else if(layer=="inside_out")
483                 return Gtk::StockID("synfig-layer_distortion_insideout");
484         else if(layer=="noise_distort")
485                 return Gtk::StockID("synfig-layer_distortion_noise");
486         else if(layer=="spherize")
487                 return Gtk::StockID("synfig-layer_distortion_spherize");
488         else if(layer=="stretch")
489                 return Gtk::StockID("synfig-layer_distortion_stretch");
490         else if(layer=="twirl")
491                 return Gtk::StockID("synfig-layer_distortion_twirl");
492         else if(layer=="warp")
493                 return Gtk::StockID("synfig-layer_distortion_warp");
494         else
495                 return Gtk::StockID("synfig-layer");
496 }
497
498 Glib::RefPtr<Gdk::Pixbuf>
499 studio::get_tree_pixbuf_layer(const synfig::String &layer)
500 {
501         return Gtk::Button().render_icon(layer_icon(layer),Gtk::ICON_SIZE_SMALL_TOOLBAR);
502 }