2008-01-13 12:45:17 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008-2009 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2010-2012 Paul Davis <paul@linuxaudiosystems.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.
|
|
|
|
*/
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
#ifndef __ardour_piano_roll_header_h__
|
|
|
|
#define __ardour_piano_roll_header_h__
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
#include <gtkmm/drawingarea.h>
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class MidiTrack;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MidiTimeAxisView;
|
|
|
|
class MidiStreamView;
|
2012-01-19 21:54:23 -05:00
|
|
|
class PublicEditor;
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
class PianoRollHeader : public Gtk::DrawingArea {
|
|
|
|
public:
|
|
|
|
PianoRollHeader(MidiStreamView&);
|
|
|
|
|
|
|
|
bool on_expose_event (GdkEventExpose*);
|
|
|
|
bool on_motion_notify_event (GdkEventMotion*);
|
|
|
|
bool on_button_press_event (GdkEventButton*);
|
|
|
|
bool on_button_release_event (GdkEventButton*);
|
|
|
|
bool on_scroll_event (GdkEventScroll*);
|
|
|
|
bool on_enter_notify_event (GdkEventCrossing*);
|
|
|
|
bool on_leave_notify_event (GdkEventCrossing*);
|
|
|
|
|
|
|
|
void on_size_request(Gtk::Requisition*);
|
|
|
|
void on_size_allocate(Gtk::Allocation& a);
|
|
|
|
|
|
|
|
void note_range_changed();
|
2015-08-14 21:08:55 -04:00
|
|
|
void set_note_highlight (uint8_t note);
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
struct Color {
|
|
|
|
Color();
|
|
|
|
Color(double _r, double _g, double _b);
|
|
|
|
inline void set(const Color& c);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
double r;
|
|
|
|
double g;
|
|
|
|
double b;
|
|
|
|
};
|
|
|
|
|
2012-01-19 21:54:23 -05:00
|
|
|
sigc::signal<void,uint8_t> SetNoteSelection;
|
2010-01-07 14:15:33 -05:00
|
|
|
sigc::signal<void,uint8_t> AddNoteSelection;
|
|
|
|
sigc::signal<void,uint8_t> ToggleNoteSelection;
|
|
|
|
sigc::signal<void,uint8_t> ExtendNoteSelection;
|
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
private:
|
|
|
|
static Color white;
|
|
|
|
static Color white_highlight;
|
|
|
|
static Color white_shade_light;
|
|
|
|
static Color white_shade_dark;
|
|
|
|
static Color black;
|
|
|
|
static Color black_highlight;
|
|
|
|
static Color black_shade_light;
|
|
|
|
static Color black_shade_dark;
|
|
|
|
|
|
|
|
PianoRollHeader(const PianoRollHeader&);
|
|
|
|
|
|
|
|
enum ItemType {
|
|
|
|
BLACK_SEPARATOR,
|
|
|
|
BLACK_MIDDLE_SEPARATOR,
|
|
|
|
BLACK,
|
|
|
|
WHITE_SEPARATOR,
|
|
|
|
WHITE_RECT,
|
|
|
|
WHITE_CF,
|
|
|
|
WHITE_EB,
|
|
|
|
WHITE_DGA
|
|
|
|
};
|
|
|
|
|
|
|
|
void invalidate_note_range(int lowest, int highest);
|
|
|
|
|
|
|
|
void get_path(ItemType, int note, double x[], double y[]);
|
|
|
|
|
|
|
|
void send_note_on(uint8_t note);
|
|
|
|
void send_note_off(uint8_t note);
|
|
|
|
|
2011-03-09 13:13:12 -05:00
|
|
|
void reset_clicked_note(uint8_t, bool invalidate = true);
|
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
MidiStreamView& _view;
|
|
|
|
|
2008-05-24 12:07:33 -04:00
|
|
|
uint8_t _event[3];
|
2008-01-13 12:45:17 -05:00
|
|
|
|
|
|
|
Cairo::RefPtr<Cairo::Context> cc;
|
|
|
|
bool _active_notes[128];
|
|
|
|
uint8_t _highlighted_note;
|
|
|
|
uint8_t _clicked_note;
|
|
|
|
double _grab_y;
|
2008-02-10 13:16:25 -05:00
|
|
|
bool _dragging;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-13 12:45:17 -05:00
|
|
|
double _note_height;
|
|
|
|
double _black_note_width;
|
2012-01-19 21:54:23 -05:00
|
|
|
|
|
|
|
PublicEditor& editor() const;
|
2008-01-13 12:45:17 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_piano_roll_header_h__ */
|