X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fstate_sketch.cpp;h=71a1ec807db190ea7b3a3461aeeb238357cb14ea;hb=c3ad95144d148602f672e95ddda1f18fc35502f8;hp=f96e4c4ed9c007433ca4deba3bfae00e4903497d;hpb=02252941b29de64037116f4d37991a38d9ff0d94;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/state_sketch.cpp b/synfig-studio/trunk/src/gtkmm/state_sketch.cpp index f96e4c4..71a1ec8 100644 --- a/synfig-studio/trunk/src/gtkmm/state_sketch.cpp +++ b/synfig-studio/trunk/src/gtkmm/state_sketch.cpp @@ -2,19 +2,20 @@ /*! \file state_sketch.cpp ** \brief Template File ** -** $Id: state_sketch.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $ +** $Id$ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -85,7 +86,7 @@ class studio::StateSketch_Context : public sigc::trackable bool prev_table_status; bool prev_workarea_layer_status_; - + Gtk::Table options_table; Gtk::Button button_clear_sketch; Gtk::Button button_undo_stroke; @@ -98,7 +99,7 @@ class studio::StateSketch_Context : public sigc::trackable void load_sketch(); void undo_stroke(); void toggle_show_sketch(); - + public: Smach::event_result event_stop_handler(const Smach::event& x); @@ -124,7 +125,7 @@ public: synfig::Time get_time()const { return get_canvas_interface()->get_time(); } synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();} WorkArea * get_work_area()const{return canvas_view_->get_work_area();} - + }; // END of class StateSketch_Context @@ -138,9 +139,9 @@ StateSketch::StateSketch(): insert(event_def(EVENT_REFRESH_DUCKS,&StateSketch_Context::event_refresh_handler)); insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DOWN,&StateSketch_Context::event_mouse_down_handler)); insert(event_def(EVENT_WORKAREA_STROKE,&StateSketch_Context::event_stroke)); - insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateSketch_Context::event_refresh_tool_options)); - insert(event_def(EVENT_YIELD_TOOL_OPTIONS,&StateSketch_Context::event_yield_tool_options)); -} + insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateSketch_Context::event_refresh_tool_options)); + insert(event_def(EVENT_YIELD_TOOL_OPTIONS,&StateSketch_Context::event_yield_tool_options)); +} StateSketch::~StateSketch() { @@ -150,7 +151,7 @@ void StateSketch_Context::save_sketch() { synfig::String filename(basename(get_canvas()->get_file_name())+".sketch"); - + while(App::dialog_save_file(_("Save Sketch"), filename)) { // If the filename still has wildcards, then we should @@ -169,7 +170,7 @@ void StateSketch_Context::load_sketch() { synfig::String filename(basename(get_canvas()->get_file_name())+".sketch"); - + while(App::dialog_open_file(_("Load Sketch"), filename)) { // If the filename still has wildcards, then we should @@ -189,7 +190,15 @@ void StateSketch_Context::clear_sketch() { get_work_area()->clear_persistant_strokes(); - get_canvas_view()->get_smach().process_event(EVENT_REFRESH); + + // if the sketch is currently shown, make sure it is updated + //! \todo is there a better way than this of getting Duckmatic to update its stroke_list_? + if (checkbutton_show_sketch.get_active()) + { + get_work_area()->set_show_persistant_strokes(false); + get_work_area()->set_show_persistant_strokes(true); + get_canvas_view()->get_smach().process_event(EVENT_REFRESH); + } } void @@ -198,7 +207,15 @@ StateSketch_Context::undo_stroke() if(!get_work_area()->persistant_stroke_list().empty()) { get_work_area()->persistant_stroke_list().pop_back(); - get_canvas_view()->get_smach().process_event(EVENT_REFRESH); + + // if the sketch is currently shown, make sure it is updated + //! \todo is there a better way than this of getting Duckmatic to update its stroke_list_? + if (checkbutton_show_sketch.get_active()) + { + get_work_area()->set_show_persistant_strokes(false); + get_work_area()->set_show_persistant_strokes(true); + get_canvas_view()->get_smach().process_event(EVENT_REFRESH); + } } } @@ -295,26 +312,26 @@ StateSketch_Context::StateSketch_Context(CanvasView* canvas_view): App::ui_manager()->add_ui_from_string(ui_info); - + checkbutton_show_sketch.set_active(get_work_area()->get_show_persistant_strokes()); - + button_clear_sketch.signal_clicked().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::clear_sketch)); button_undo_stroke.signal_clicked().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::undo_stroke)); button_save_sketch.signal_clicked().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::save_sketch)); button_load_sketch.signal_clicked().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::load_sketch)); checkbutton_show_sketch.signal_clicked().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::toggle_show_sketch)); - //options_table.attach(*manage(new Gtk::Label(_("Sketch Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - options_table.attach(checkbutton_show_sketch, 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - //options_table.attach(button_undo_stroke, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - //options_table.attach(button_clear_sketch, 0, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - //options_table.attach(button_save_sketch, 0, 1, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - //options_table.attach(button_load_sketch, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); - - + //options_table.attach(*manage(new Gtk::Label(_("Sketch Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + options_table.attach(checkbutton_show_sketch, 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + //options_table.attach(button_undo_stroke, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + //options_table.attach(button_clear_sketch, 0, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + //options_table.attach(button_save_sketch, 0, 1, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + //options_table.attach(button_load_sketch, 1, 2, 4, 5, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0); + + options_table.show_all(); refresh_tool_options(); App::dialog_tool_options->present(); - + // Turn off layer clicking get_work_area()->allow_layer_clicks=false; @@ -322,20 +339,20 @@ StateSketch_Context::StateSketch_Context(CanvasView* canvas_view): // Turn off duck clicking get_work_area()->allow_duck_clicks=false; - + // clear out the ducks //get_work_area()->clear_ducks(); - + // Refresh the work area //get_work_area()->queue_draw(); - + // Hide the tables if they are showing prev_table_status=get_canvas_view()->tables_are_visible(); //if(prev_table_status)get_canvas_view()->hide_tables(); - - // Hide the time bar - //get_canvas_view()->hide_timebar(); - + + // Disable the time bar + //get_canvas_view()->set_sensitive_timebar(false); + // Connect a signal //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateSketch_Context::on_user_click)); @@ -347,20 +364,19 @@ StateSketch_Context::~StateSketch_Context() get_canvas_view()->work_area->reset_cursor(); App::dialog_tool_options->clear(); - + // Restore layer clicking get_work_area()->allow_layer_clicks=prev_workarea_layer_status_; // Restore duck clicking get_work_area()->allow_duck_clicks=true; - // Show the time bar - if(get_canvas_view()->get_canvas()->rend_desc().get_time_start()!=get_canvas_view()->get_canvas()->rend_desc().get_time_end()) - get_canvas_view()->show_timebar(); + // Enable the time bar + //get_canvas_view()->set_sensitive_timebar(true); // Bring back the tables if they were out before if(prev_table_status)get_canvas_view()->show_tables(); - + // Refresh the work area //get_work_area()->queue_draw(); @@ -383,7 +399,7 @@ StateSketch_Context::refresh_tool_options() App::dialog_tool_options->set_name("sketch"); App::ui_manager()->insert_action_group(action_group); - App::dialog_tool_options->set_toolbar(*dynamic_cast(App::ui_manager()->get_widget("/toolbar-sketch"))); + App::dialog_tool_options->set_toolbar(*dynamic_cast(App::ui_manager()->get_widget("/toolbar-sketch"))); /* App::dialog_tool_options->add_button( @@ -432,27 +448,27 @@ StateSketch_Context::refresh_tool_options() } Smach::event_result -StateSketch_Context::event_refresh_tool_options(const Smach::event& x) +StateSketch_Context::event_refresh_tool_options(const Smach::event& /*x*/) { refresh_tool_options(); return Smach::RESULT_ACCEPT; } Smach::event_result -StateSketch_Context::event_yield_tool_options(const Smach::event& x) +StateSketch_Context::event_yield_tool_options(const Smach::event& /*x*/) { yield_tool_options(); return Smach::RESULT_ACCEPT; } Smach::event_result -StateSketch_Context::event_stop_handler(const Smach::event& x) +StateSketch_Context::event_stop_handler(const Smach::event& /*x*/) { throw Smach::egress_exception(); } Smach::event_result -StateSketch_Context::event_refresh_handler(const Smach::event& x) +StateSketch_Context::event_refresh_handler(const Smach::event& /*x*/) { return Smach::RESULT_ACCEPT; } @@ -469,11 +485,11 @@ StateSketch_Context::event_mouse_down_handler(const Smach::event& x) get_canvas_view()->get_smach().push_state(&state_stroke); return Smach::RESULT_ACCEPT; } - + case BUTTON_RIGHT: // Intercept the right-button click to short-circut the pop-up menu return Smach::RESULT_ACCEPT; - - default: + + default: return Smach::RESULT_OK; } } @@ -484,7 +500,7 @@ StateSketch_Context::event_stroke(const Smach::event& x) const EventStroke& event(*reinterpret_cast(&x)); assert(event.stroke_data); - + get_work_area()->add_persistant_stroke(event.stroke_data,synfigapp::Main::get_foreground_color()); return Smach::RESULT_ACCEPT;