2007-12-20 18:25:19 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_gtk_track_meter_h__
|
|
|
|
#define __ardour_gtk_track_meter_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/frame.h>
|
|
|
|
#include <gtkmm/eventbox.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/table.h>
|
|
|
|
#include <gtkmm/drawingarea.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2010-03-18 22:49:01 -04:00
|
|
|
#include "ardour/chan_count.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
#include "ardour/session_handle.h"
|
2007-12-20 18:25:19 -05:00
|
|
|
|
|
|
|
#include <gtkmm2ext/click_box.h>
|
|
|
|
#include <gtkmm2ext/focus_entry.h>
|
|
|
|
#include <gtkmm2ext/slider_controller.h>
|
|
|
|
|
|
|
|
#include "enums.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
2009-05-04 13:05:55 -04:00
|
|
|
class PeakMeter;
|
2007-12-20 18:25:19 -05:00
|
|
|
}
|
|
|
|
namespace Gtkmm2ext {
|
|
|
|
class FastMeter;
|
|
|
|
}
|
|
|
|
namespace Gtk {
|
|
|
|
class Menu;
|
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
class LevelMeter : public Gtk::HBox, public ARDOUR::SessionHandlePtr
|
2007-12-20 18:25:19 -05:00
|
|
|
{
|
|
|
|
public:
|
2009-12-17 13:24:23 -05:00
|
|
|
LevelMeter (ARDOUR::Session*);
|
2007-12-20 18:25:19 -05:00
|
|
|
~LevelMeter ();
|
|
|
|
|
2009-05-16 22:08:13 -04:00
|
|
|
virtual void set_meter (ARDOUR::PeakMeter* meter);
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
void update_gain_sensitive ();
|
|
|
|
|
2008-04-11 10:06:50 -04:00
|
|
|
float update_meters ();
|
2007-12-20 18:25:19 -05:00
|
|
|
void update_meters_falloff ();
|
|
|
|
void clear_meters ();
|
|
|
|
void hide_meters ();
|
2008-04-11 10:06:50 -04:00
|
|
|
void setup_meters (int len=0, int width=3);
|
2007-12-20 18:25:19 -05:00
|
|
|
|
2011-11-13 10:12:34 -05:00
|
|
|
/** Emitted in the GUI thread when a button is pressed over the meter */
|
|
|
|
PBD::Signal1<bool, GdkEventButton *> ButtonPress;
|
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
private:
|
2009-05-04 13:05:55 -04:00
|
|
|
ARDOUR::PeakMeter* _meter;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
Width _width;
|
2007-12-20 18:25:19 -05:00
|
|
|
|
|
|
|
struct MeterInfo {
|
|
|
|
Gtkmm2ext::FastMeter *meter;
|
2009-05-04 13:05:55 -04:00
|
|
|
gint16 width;
|
2010-03-10 12:31:16 -05:00
|
|
|
int length;
|
2009-05-04 13:05:55 -04:00
|
|
|
bool packed;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
|
|
|
MeterInfo() {
|
2007-12-20 18:25:19 -05:00
|
|
|
meter = 0;
|
|
|
|
width = 0;
|
2010-03-10 12:31:16 -05:00
|
|
|
length = 0;
|
2007-12-20 18:25:19 -05:00
|
|
|
packed = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-04 13:05:55 -04:00
|
|
|
guint16 regular_meter_width;
|
|
|
|
int meter_length;
|
|
|
|
static const guint16 thin_meter_width = 2;
|
|
|
|
std::vector<MeterInfo> meters;
|
|
|
|
float max_peak;
|
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection _configuration_connection;
|
|
|
|
PBD::ScopedConnection _parameter_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
void hide_all_meters ();
|
2011-11-13 10:12:34 -05:00
|
|
|
bool meter_button_press (GdkEventButton *);
|
|
|
|
bool meter_button_release (GdkEventButton *);
|
2007-12-20 18:25:19 -05:00
|
|
|
|
2009-05-15 21:22:43 -04:00
|
|
|
void parameter_changed (std::string);
|
2009-05-04 13:05:55 -04:00
|
|
|
void configuration_changed (ARDOUR::ChanCount in, ARDOUR::ChanCount out);
|
2007-12-20 18:25:19 -05:00
|
|
|
|
|
|
|
void on_theme_changed ();
|
|
|
|
bool style_changed;
|
|
|
|
bool color_changed;
|
|
|
|
void color_handler ();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_track_meter_h__ */
|
|
|
|
|