MainClock: rename fake setter to change_display_delta_mode
We would like to introduce an actual setter, but the most appropriate name for it was used by something else: the high level callback invoked when selecting the menu item.
This commit is contained in:
parent
8f5b7aff3a
commit
75f6b8fb66
@ -73,17 +73,17 @@ MainClock::build_ops_menu ()
|
|||||||
mode = UIConfiguration::instance().get_secondary_clock_delta_mode ();
|
mode = UIConfiguration::instance().get_secondary_clock_delta_mode ();
|
||||||
}
|
}
|
||||||
|
|
||||||
ops_items.push_back (RadioMenuElem (group, _("Display absolute time"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), NoDelta)));
|
ops_items.push_back (RadioMenuElem (group, _("Display absolute time"), sigc::bind (sigc::mem_fun (*this, &MainClock::change_display_delta_mode), NoDelta)));
|
||||||
if (mode == NoDelta) {
|
if (mode == NoDelta) {
|
||||||
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
||||||
i->set_active (true);
|
i->set_active (true);
|
||||||
}
|
}
|
||||||
ops_items.push_back (RadioMenuElem (group, _("Display delta to edit cursor"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), DeltaEditPoint)));
|
ops_items.push_back (RadioMenuElem (group, _("Display delta to edit cursor"), sigc::bind (sigc::mem_fun (*this, &MainClock::change_display_delta_mode), DeltaEditPoint)));
|
||||||
if (mode == DeltaEditPoint) {
|
if (mode == DeltaEditPoint) {
|
||||||
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
||||||
i->set_active (true);
|
i->set_active (true);
|
||||||
}
|
}
|
||||||
ops_items.push_back (RadioMenuElem (group, _("Display delta to origin marker"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), DeltaOriginMarker)));
|
ops_items.push_back (RadioMenuElem (group, _("Display delta to origin marker"), sigc::bind (sigc::mem_fun (*this, &MainClock::change_display_delta_mode), DeltaOriginMarker)));
|
||||||
if (mode == DeltaOriginMarker) {
|
if (mode == DeltaOriginMarker) {
|
||||||
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
|
||||||
i->set_active (true);
|
i->set_active (true);
|
||||||
@ -128,7 +128,7 @@ MainClock::set (timepos_t const & when, bool force)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
MainClock::set_display_delta_mode (ClockDeltaMode m)
|
MainClock::change_display_delta_mode (ClockDeltaMode m)
|
||||||
{
|
{
|
||||||
if (_suspend_delta_mode_signal) {
|
if (_suspend_delta_mode_signal) {
|
||||||
return;
|
return;
|
||||||
|
@ -34,7 +34,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void build_ops_menu ();
|
void build_ops_menu ();
|
||||||
void set_display_delta_mode (ARDOUR::ClockDeltaMode);
|
void change_display_delta_mode (ARDOUR::ClockDeltaMode);
|
||||||
void edit_current_tempo ();
|
void edit_current_tempo ();
|
||||||
void edit_current_meter ();
|
void edit_current_meter ();
|
||||||
void insert_new_tempo ();
|
void insert_new_tempo ();
|
||||||
|
Loading…
Reference in New Issue
Block a user