Ardour  9.0-pre0-1051-g8dd89616e1
rta_window.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2025 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 #pragma once
19 
20 #include <glibmm/thread.h>
21 
22 #include <ytkmm/box.h>
23 #include <ytkmm/drawingarea.h>
24 
25 #include "ardour/ardour.h"
26 #include "ardour/dsp_filter.h"
27 #include "ardour/session_handle.h"
28 #include "ardour/types.h"
29 
30 #include "widgets/ardour_button.h"
32 
33 #include "ardour_window.h"
34 
35 class RTAWindow : public ArdourWindow
36 {
37 public:
39 
41  XMLNode& get_state () const;
42 
43 private:
44  void on_map ();
45  void on_unmap ();
46 
48  void update_title ();
51 
55 
60 
63 
64  void pause_toggled ();
65 
66  enum DragStatus {
70  DragRange
71  };
72 
73  const float _dB_range = 86; // +6 .. -80 dB
74  const float _dB_span = 24;
75  const float _dB_min = -80;
76 
84  Cairo::RefPtr<Cairo::ImageSurface> _grid;
85  bool _visible;
86  std::vector<std::string> _speed_strings;
87  std::vector<std::string> _warp_strings;
88  std::map<int, float> _xpos;
92  int _margin;
93  int _min_dB;
94  int _max_dB;
97  float _dragstart_y;
99  int _cursor_x;
101 
103 };
const float _dB_range
Definition: rta_window.h:73
PBD::ScopedConnectionList _rta_connections
Definition: rta_window.h:102
void set_session(ARDOUR::Session *)
std::vector< std::string > _speed_strings
Definition: rta_window.h:86
bool darea_button_press_event(GdkEventButton *)
Gtk::Label _pointer_info
Definition: rta_window.h:80
bool _visible
Definition: rta_window.h:85
Cairo::RefPtr< Cairo::ImageSurface > _grid
Definition: rta_window.h:84
ArdourWidgets::ArdourDropdown _warp_dropdown
Definition: rta_window.h:83
Gtk::HBox _ctrlbox
Definition: rta_window.h:78
void pause_toggled()
const float _dB_min
Definition: rta_window.h:75
bool _hovering_dB
Definition: rta_window.h:95
Gtkmm2ext::Color _textc
Definition: rta_window.h:91
int _min_dB
Definition: rta_window.h:93
const float _dB_span
Definition: rta_window.h:74
int _max_dB
Definition: rta_window.h:94
void session_going_away()
int _cursor_y
Definition: rta_window.h:100
std::map< int, float > _xpos
Definition: rta_window.h:88
Gtkmm2ext::Color _basec
Definition: rta_window.h:89
int _cursor_x
Definition: rta_window.h:99
Gtk::VBox _vpacker
Definition: rta_window.h:77
XMLNode & get_state() const
bool darea_expose_event(GdkEventExpose *)
bool darea_button_release_event(GdkEventButton *)
void darea_size_request(Gtk::Requisition *)
int _margin
Definition: rta_window.h:92
bool darea_motion_notify_event(GdkEventMotion *)
void rta_settings_changed()
void set_rta_speed(ARDOUR::DSP::PerceptualAnalyzer::Speed)
float _dragstart_y
Definition: rta_window.h:97
DragStatus _dragging_dB
Definition: rta_window.h:96
float _dragstart_dB
Definition: rta_window.h:98
void update_title()
void set_rta_warp(ARDOUR::DSP::PerceptualAnalyzer::Warp)
Gtkmm2ext::Color _gridc
Definition: rta_window.h:90
ArdourWidgets::ArdourDropdown _speed_dropdown
Definition: rta_window.h:82
void on_theme_changed()
void darea_size_allocate(Gtk::Allocation &)
void on_unmap()
This is a default handler for the signal signal_unmap().
ArdourWidgets::ArdourButton _pause
Definition: rta_window.h:81
std::vector< std::string > _warp_strings
Definition: rta_window.h:87
Gtk::DrawingArea _darea
Definition: rta_window.h:79
void on_map()
This is a default handler for the signal signal_map().
bool darea_leave_notify_event(GdkEventCrossing *)
Definition: xml++.h:114
uint32_t Color
Definition: colors.h:33