X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Finstance.cpp;h=1516eb0e1845e49362a2c4d68fff04073e8e76b7;hb=464e1f22b4481c2e6a08c601ef9b4ca0531ab267;hp=d809e07fc0964563ac3032dc90267c6bb4c085b9;hpb=b0e6b42b160ad12943369c14180115a7003c4161;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/instance.cpp b/synfig-studio/trunk/src/gtkmm/instance.cpp index d809e07..1516eb0 100644 --- a/synfig-studio/trunk/src/gtkmm/instance.cpp +++ b/synfig-studio/trunk/src/gtkmm/instance.cpp @@ -6,7 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley -** Copyright (c) 2007 Chris Moore +** Copyright (c) 2007, 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -42,6 +42,7 @@ #include #include "toolbox.h" #include "onemoment.h" +#include #include "autorecover.h" #include @@ -54,6 +55,7 @@ #include "iconcontroller.h" #include #include +#include #include "general.h" @@ -203,6 +205,12 @@ studio::Instance::save_as(const synfig::String &file_name) return false; } +void +studio::Instance::open() +{ + App::dialog_open(get_file_name()); +} + Instance::Status studio::Instance::save() { @@ -256,6 +264,9 @@ studio::Instance::dialog_save_as() } } + if (get_file_name().find(DEFAULT_FILENAME_PREFIX) != 0) + filename = absolute_path(filename); + // show the canvas' name if it has one, else its ID while (App::dialog_save_file((_("Choose a Filename to Save As") + String(" (") + @@ -308,7 +319,10 @@ studio::Instance::dialog_save_as() } if(save_as(filename)) + { + synfig::set_file_version(ReleaseVersion(RELEASE_VERSION_END-1)); return true; + } App::dialog_error_blocking("SaveAs - Error","Unable to save to '" + filename + "'"); } @@ -1061,15 +1075,23 @@ Instance::make_param_menu(Gtk::Menu *menu,synfig::Canvas::Handle canvas, synfiga try { + // try to find a waypoint at the current time - if we + // can't, we don't want the menu entry - an exception is thrown WaypointList::iterator iter(value_node->find(canvas->get_time())); + std::set > waypoint_set; + waypoint_set.insert(*iter); + parammenu.items().push_back(Gtk::Menu_Helpers::MenuElem(_("Edit Waypoint"), sigc::bind( sigc::bind( sigc::bind( - sigc::mem_fun(*find_canvas_view(canvas),&studio::CanvasView::on_waypoint_clicked), + sigc::bind( + sigc::mem_fun(*find_canvas_view(canvas),&studio::CanvasView::on_waypoint_clicked_canvasview), + synfig::Waypoint::SIDE_UNSPECIFIED + ), -1 ), - *iter + waypoint_set ), value_desc )