X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fwidget_keyframe_list.h;h=1e41770bfb271d1353e8024923ce725a53860e2b;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=4280a69e0522bdc279b454bb9773d8b65dce261b;hpb=b5c3d66d7714b6a2b6a10eb968206c6a46b0f026;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.h b/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.h index 4280a69..1e41770 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.h +++ b/synfig-studio/trunk/src/gtkmm/widget_keyframe_list.h @@ -30,6 +30,7 @@ #include #include +#include #include #include #include @@ -45,6 +46,10 @@ namespace studio { class Widget_Keyframe_List : public Gtk::DrawingArea { + //! Tooltips class. It is deprecated since gtkmm 2.12 + //! replace with Tooltip class or use the own tooltip widget's members + Gtk::Tooltips tooltips; + //! The canvas interface being watched etl::loose_handle canvas_interface_; @@ -123,7 +128,9 @@ public: void set_canvas_interface(etl::loose_handle h); //! Performs the keyframe movement. Returns true if it was sucessful - bool perform_move_kf(); + //! @return true: if success otherwise false + //! |delta=false: permorm normal move. true: perform delta movement + bool perform_move_kf(bool delta);