mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
add option to show/hide region names
This commit is contained in:
parent
b1587940e4
commit
8463fb728f
10 changed files with 50 additions and 3 deletions
|
|
@ -3677,6 +3677,14 @@ RCOptionEditor::RCOptionEditor ()
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_color_regions_using_track_color)
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_color_regions_using_track_color)
|
||||||
));
|
));
|
||||||
|
|
||||||
|
add_option (_("Appearance/Editor"),
|
||||||
|
new BoolOption (
|
||||||
|
"show-region-names",
|
||||||
|
_("Show Region Names"),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_show_region_name),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_name)
|
||||||
|
));
|
||||||
|
|
||||||
#ifndef MIXBUS // hide this setting in Mixbus. Always on, 4px
|
#ifndef MIXBUS // hide this setting in Mixbus. Always on, 4px
|
||||||
ComboOption<uint32_t>* gap = new ComboOption<uint32_t> (
|
ComboOption<uint32_t>* gap = new ComboOption<uint32_t> (
|
||||||
"vertical-region-gap",
|
"vertical-region-gap",
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ RegionView::RegionView (ArdourCanvas::Container* parent,
|
||||||
bool automation)
|
bool automation)
|
||||||
: TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
|
: TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
|
||||||
(automation ? TimeAxisViewItem::ShowFrame :
|
(automation ? TimeAxisViewItem::ShowFrame :
|
||||||
TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
|
TimeAxisViewItem::Visibility ((UIConfiguration::instance().get_show_region_name() ? TimeAxisViewItem::ShowNameText : 0) |
|
||||||
TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
|
TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
|
||||||
, _region (r)
|
, _region (r)
|
||||||
, sync_mark(0)
|
, sync_mark(0)
|
||||||
|
|
@ -959,3 +959,17 @@ RegionView::snap_sample_to_sample (sampleoffset_t x, bool ensure_snap) const
|
||||||
/* back to region relative, keeping the relevant divisor */
|
/* back to region relative, keeping the relevant divisor */
|
||||||
return MusicSample (sample.sample - _region->position(), sample.division);
|
return MusicSample (sample.sample - _region->position(), sample.division);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
RegionView::update_visibility ()
|
||||||
|
{
|
||||||
|
/* currently only the name visibility can be changed dynamically */
|
||||||
|
|
||||||
|
if (UIConfiguration::instance().get_show_region_name()) {
|
||||||
|
visibility = Visibility (visibility | ShowNameText);
|
||||||
|
} else {
|
||||||
|
visibility = Visibility (visibility & ~ShowNameText);
|
||||||
|
}
|
||||||
|
|
||||||
|
manage_name_text ();
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -128,6 +128,8 @@ public:
|
||||||
|
|
||||||
ARDOUR::MusicSample snap_sample_to_sample (ARDOUR::sampleoffset_t, bool ensure_snap = false) const;
|
ARDOUR::MusicSample snap_sample_to_sample (ARDOUR::sampleoffset_t, bool ensure_snap = false) const;
|
||||||
|
|
||||||
|
void update_visibility ();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
/** Allows derived types to specify their visibility requirements
|
/** Allows derived types to specify their visibility requirements
|
||||||
|
|
|
||||||
|
|
@ -724,3 +724,14 @@ StreamView::setup_new_rec_layer_time (boost::shared_ptr<Region> region)
|
||||||
_new_rec_layer_time = max_samplepos;
|
_new_rec_layer_time = max_samplepos;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
StreamView::parameter_handler (string const & what)
|
||||||
|
{
|
||||||
|
std::cerr << "SV ph for " << what << std::endl;
|
||||||
|
if (what == "show-region-name") {
|
||||||
|
for (RegionViewList::iterator i = region_views.begin (); i != region_views.end (); ++i) {
|
||||||
|
(*i)->update_visibility ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,8 @@ public:
|
||||||
/** Emitted when the height of regions has changed */
|
/** Emitted when the height of regions has changed */
|
||||||
sigc::signal<void> ContentsHeightChanged;
|
sigc::signal<void> ContentsHeightChanged;
|
||||||
|
|
||||||
|
virtual void parameter_handler (std::string const &);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
StreamView (RouteTimeAxisView&, ArdourCanvas::Container* canvas_group = 0);
|
StreamView (RouteTimeAxisView&, ArdourCanvas::Container* canvas_group = 0);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1199,6 +1199,10 @@ TimeAxisView::parameter_changed (string const & p)
|
||||||
show_selection (_editor.get_selection().time);
|
show_selection (_editor.get_selection().time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (view()) {
|
||||||
|
view()->parameter_handler (what);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @return Pair: TimeAxisView, layer index.
|
/** @return Pair: TimeAxisView, layer index.
|
||||||
|
|
|
||||||
|
|
@ -306,6 +306,8 @@ protected:
|
||||||
void color_handler ();
|
void color_handler ();
|
||||||
void parameter_changed (std::string const &);
|
void parameter_changed (std::string const &);
|
||||||
|
|
||||||
|
virtual void parameter_handler (std::string const &);
|
||||||
|
|
||||||
void conditionally_add_to_selection ();
|
void conditionally_add_to_selection ();
|
||||||
|
|
||||||
void build_size_menu ();
|
void build_size_menu ();
|
||||||
|
|
|
||||||
|
|
@ -870,7 +870,7 @@ TimeAxisViewItem::manage_name_text ()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!wide_enough_for_name || !high_enough_for_name) {
|
if (!(visibility & ShowNameText) || (!wide_enough_for_name || !high_enough_for_name)) {
|
||||||
name_text->hide ();
|
name_text->hide ();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -152,6 +152,8 @@ public:
|
||||||
FullWidthNameHighlight = 0x80
|
FullWidthNameHighlight = 0x80
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtual void update_visibility () {}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
TimeAxisViewItem (const std::string &, ArdourCanvas::Item&, TimeAxisView&, double, uint32_t fill_color,
|
TimeAxisViewItem (const std::string &, ArdourCanvas::Item&, TimeAxisView&, double, uint32_t fill_color,
|
||||||
samplepos_t, samplecnt_t, bool recording = false, bool automation = false, Visibility v = Visibility (0));
|
samplepos_t, samplecnt_t, bool recording = false, bool automation = false, Visibility v = Visibility (0));
|
||||||
|
|
@ -237,10 +239,11 @@ protected:
|
||||||
bool _dragging;
|
bool _dragging;
|
||||||
double _width;
|
double _width;
|
||||||
|
|
||||||
|
void manage_name_text ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void parameter_changed (std::string);
|
void parameter_changed (std::string);
|
||||||
void manage_name_highlight ();
|
void manage_name_highlight ();
|
||||||
void manage_name_text ();
|
|
||||||
|
|
||||||
}; /* class TimeAxisViewItem */
|
}; /* class TimeAxisViewItem */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -118,3 +118,4 @@ UI_CONFIG_VARIABLE (bool, snap_to_grid, "snap-to-grid", true)
|
||||||
UI_CONFIG_VARIABLE (bool, show_grids_ruler, "show-grids-ruler", true)
|
UI_CONFIG_VARIABLE (bool, show_grids_ruler, "show-grids-ruler", true)
|
||||||
UI_CONFIG_VARIABLE (bool, rulers_follow_grid, "rulers-follow-grid", false)
|
UI_CONFIG_VARIABLE (bool, rulers_follow_grid, "rulers-follow-grid", false)
|
||||||
UI_CONFIG_VARIABLE (bool, grid_follows_internal, "grid-follows-internal", false) //this feature is deprecated, default it FALSE for now; remove it in v6
|
UI_CONFIG_VARIABLE (bool, grid_follows_internal, "grid-follows-internal", false) //this feature is deprecated, default it FALSE for now; remove it in v6
|
||||||
|
UI_CONFIG_VARIABLE (bool, show_region_name, "show-region-name", true)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue