ardour/gtk2_ardour/audio_clip_editor.h

136 lines
3.1 KiB
C
Raw Normal View History

/*
* Copyright (C) 2021 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2021 Ben Loftis <ben@harrisonconsoles.com>
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __audio_region_trimmer_box_h__
#define __audio_region_trimmer_box_h__
#include <map>
#include <gtkmm/box.h>
#include <gtkmm/label.h>
#include <gtkmm/table.h>
#include "ardour/ardour.h"
#include "ardour/types.h"
#include "ardour/session_handle.h"
#include "gtkmm2ext/cairo_packer.h"
#include "canvas/canvas.h"
2021-12-10 11:47:56 -05:00
#include "canvas/container.h"
#include "canvas/rectangle.h"
2021-12-10 11:47:56 -05:00
#include "canvas/line.h"
#include "audio_clock.h"
namespace ARDOUR {
class Session;
class Location;
}
namespace ArdourCanvas {
class Text;
class Polygon;
};
namespace ArdourWaveView {
class WaveView;
}
class ClipEditorBox : public Gtk::VBox, public ARDOUR::SessionHandlePtr
{
public:
ClipEditorBox () {}
~ClipEditorBox () {}
virtual void set_region (boost::shared_ptr<ARDOUR::Region>) =0;
};
class AudioClipEditor : public ArdourCanvas::GtkCanvas
{
public:
AudioClipEditor ();
~AudioClipEditor ();
void set_region (boost::shared_ptr<ARDOUR::AudioRegion>);
void on_size_allocate (Gtk::Allocation&);
private:
ArdourCanvas::Rectangle* frame;
2021-12-10 11:47:56 -05:00
ArdourCanvas::Container* waves_container;
ArdourCanvas::Container* line_container;
ArdourCanvas::Line* start_line;
ArdourCanvas::Line* end_line;
ArdourCanvas::Line* loop_line;
std::vector<ArdourWaveView::WaveView *> waves;
double spp;
enum LineType {
StartLine,
EndLine,
LoopLine,
};
bool event_handler (GdkEvent* ev);
bool line_event_handler (GdkEvent* ev, ArdourCanvas::Line*);
void drop_waves ();
void set_wave_heights (int);
void set_wave_spp (ARDOUR::samplecnt_t);
void set_waveform_colors ();
2021-12-10 11:47:56 -05:00
void set_colors ();
class LineDrag {
public:
LineDrag (AudioClipEditor&, ArdourCanvas::Line&);
void begin (GdkEventButton*);
void end (GdkEventButton*);
void motion (GdkEventMotion*);
private:
AudioClipEditor& editor;
ArdourCanvas::Line& line;
};
friend class LineDrag;
LineDrag* _current_drag;
};
class AudioClipEditorBox : public ClipEditorBox
{
public:
AudioClipEditorBox ();
~AudioClipEditorBox ();
void set_region (boost::shared_ptr<ARDOUR::Region>);
void region_changed (const PBD::PropertyChange& what_changed);
private:
Gtk::Label _header_label;
Gtk::Table table;
AudioClipEditor *editor;
PBD::ScopedConnection state_connection;
boost::shared_ptr<ARDOUR::Region> _region;
};
#endif /* __audio_region_trimmer_box_h__ */