}
cur_tool = tool;
- cur_tool->signal_status.connect(sigc::mem_fun(this, &Designer::manipulation_status));
- manipulation_status(cur_tool->get_status());
+ cur_tool->signal_status.connect(sigc::mem_fun(this, &Designer::tool_status));
+ tool_status(cur_tool->get_status());
mode = TOOL;
}
}
}
-void Designer::manipulation_status(const string &status)
+void Designer::tool_status(const string &status)
{
lbl_status->set_text(status);
}
-void Designer::measure_done()
-{
- mode = SELECT;
- selection_changed();
-}
-
void Designer::track_properties_response(int)
{
const set<Track *> &tracks = selection.get_objects<Track>();
R2C2::Object *pick_object(const R2C2::Vector &);
void update_track_icon(R2C2::Track3D &);
void selection_changed();
- void manipulation_status(const std::string &);
- void manipulation_done(bool);
- void measure_changed();
- void measure_done();
+ void tool_status(const std::string &);
void track_properties_response(int);
void route_name_accept(const std::string &);
void svg_export_accept(const std::string &);