From 8bb0e18f3f3a8840c181043586be820068540e14 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 12 Dec 2021 14:00:19 +0100 Subject: [PATCH] Fix merge-conflict and clang-format in previous commit --- gtk2_ardour/audio_clip_editor.cc | 46 ++++++++++++++++++++++++-------- gtk2_ardour/audio_clip_editor.h | 3 +++ 2 files changed, 38 insertions(+), 11 deletions(-) diff --git a/gtk2_ardour/audio_clip_editor.cc b/gtk2_ardour/audio_clip_editor.cc index 10bcf9c56f..3e5e9dbf4c 100644 --- a/gtk2_ardour/audio_clip_editor.cc +++ b/gtk2_ardour/audio_clip_editor.cc @@ -64,7 +64,7 @@ Glib::RefPtr ClipEditorBox::clip_editor_actions; void ClipEditorBox::init () { - Bindings* bindings = Bindings::get_bindings (X_ ("Clip Editing")); + Bindings* bindings = Bindings::get_bindings (X_("Clip Editing")); register_clip_editor_actions (bindings); @@ -74,7 +74,7 @@ ClipEditorBox::init () void ClipEditorBox::register_clip_editor_actions (Bindings* clip_editor_bindings) { - clip_editor_actions = ActionManager::create_action_group (clip_editor_bindings, X_ ("ClipEditing")); + clip_editor_actions = ActionManager::create_action_group (clip_editor_bindings, X_("ClipEditing")); /* two versions to allow same action for Delete and Backspace */ @@ -82,6 +82,30 @@ ClipEditorBox::register_clip_editor_actions (Bindings* clip_editor_bindings) // ActionManager::register_action (clip_editor_actions, X_("zoom-in"), _("Zoom In"), sigc::mem_fun (*this, &ClipEditorBox::zoom_out)); } +class ClipBBTMetric : public ArdourCanvas::Ruler::Metric +{ +public: + ClipBBTMetric () + { + units_per_pixel = 1; + } + + void get_marks (std::vector& marks, int64_t lower, int64_t upper, int maxchars) const + { + ArdourCanvas::Ruler::Mark mark; + + std::cerr << "get marks between " << lower << " .. " << upper << std::endl; + + for (int64_t n = lower; n < upper; n += 4000) { + mark.style = ArdourCanvas::Ruler::Mark::Major; + mark.label = string_compose ("%1", n); + mark.position = n / 100; + marks.push_back (mark); + std::cerr << "mark at " << mark.label << " @ " << mark.position << std::endl; + } + } +}; + AudioClipEditor::AudioClipEditor () : _spp (0) , scroll_fraction (0) @@ -269,17 +293,17 @@ AudioClipEditor::LineDrag::motion (GdkEventMotion* ev) void AudioClipEditor::set_colors () { - set_background_color (UIConfiguration::instance ().color (X_ ("theme:bg"))); + set_background_color (UIConfiguration::instance ().color (X_("theme:bg"))); - frame->set_outline_color (UIConfiguration::instance ().color (X_ ("neutral:midground"))); + frame->set_outline_color (UIConfiguration::instance ().color (X_("neutral:midground"))); - start_line->set_outline_color (UIConfiguration::instance ().color (X_ ("theme:contrasting clock"))); - end_line->set_outline_color (UIConfiguration::instance ().color (X_ ("theme:contrasting alt"))); - loop_line->set_outline_color (UIConfiguration::instance ().color (X_ ("theme:contrasting selection"))); + start_line->set_outline_color (UIConfiguration::instance ().color (X_("theme:contrasting clock"))); + end_line->set_outline_color (UIConfiguration::instance ().color (X_("theme:contrasting alt"))); + loop_line->set_outline_color (UIConfiguration::instance ().color (X_("theme:contrasting selection"))); - scroll_bar_trough->set_fill_color (UIConfiguration::instance ().color (X_ ("theme:bg"))); - scroll_bar_trough->set_outline_color (UIConfiguration::instance ().color (X_ ("theme:contrasting less"))); - scroll_bar_handle->set_fill_color (UIConfiguration::instance ().color (X_ ("theme:contrasting clock"))); + scroll_bar_trough->set_fill_color (UIConfiguration::instance ().color (X_("theme:bg"))); + scroll_bar_trough->set_outline_color (UIConfiguration::instance ().color (X_("theme:contrasting less"))); + scroll_bar_handle->set_fill_color (UIConfiguration::instance ().color (X_("theme:contrasting clock"))); set_waveform_colors (); } @@ -487,7 +511,7 @@ AudioClipEditor::event_handler (GdkEvent* ev) AudioClipEditorBox::AudioClipEditorBox () { - _header_label.set_text (_ ("AUDIO Region Trimmer:")); + _header_label.set_text (_("AUDIO Region Trimmer:")); _header_label.set_alignment (0.0, 0.5); zoom_in_button.set_icon (ArdourIcon::ZoomIn); diff --git a/gtk2_ardour/audio_clip_editor.h b/gtk2_ardour/audio_clip_editor.h index 805b9e4f81..a01b190a5a 100644 --- a/gtk2_ardour/audio_clip_editor.h +++ b/gtk2_ardour/audio_clip_editor.h @@ -113,6 +113,9 @@ private: ArdourCanvas::Line* loop_line; ArdourCanvas::Rectangle* scroll_bar_trough; ArdourCanvas::Rectangle* scroll_bar_handle; + ArdourCanvas::Container* ruler_container; + ArdourCanvas::Ruler* ruler; + ArdourCanvas::Ruler::Metric* clip_metric; std::vector waves; double non_wave_height; samplepos_t left_origin;