2013-04-05 17:16:33 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2013-2014 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2017 Nick Mainsbridge <mainsbridge@gmail.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.
|
|
|
|
*/
|
2013-04-05 17:16:33 -04:00
|
|
|
|
|
|
|
#ifndef __SYSEX_H__
|
|
|
|
#define __SYSEX_H__
|
|
|
|
|
2017-02-01 11:34:21 -05:00
|
|
|
#include "midi_region_view.h"
|
2013-04-05 17:16:33 -04:00
|
|
|
|
|
|
|
namespace ArdourCanvas {
|
|
|
|
class Flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SysEx
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SysEx (
|
2017-02-01 11:34:21 -05:00
|
|
|
MidiRegionView& region,
|
|
|
|
ArdourCanvas::Container* parent,
|
|
|
|
std::string& text,
|
|
|
|
double height,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
ARDOUR::MidiModel::SysExPtr sysex);
|
2013-04-05 17:16:33 -04:00
|
|
|
|
|
|
|
~SysEx ();
|
|
|
|
|
|
|
|
void hide ();
|
|
|
|
void show ();
|
|
|
|
|
2017-02-01 12:39:32 -05:00
|
|
|
void set_height (ArdourCanvas::Distance h) { _flag->set_height (h); }
|
|
|
|
|
|
|
|
ArdourCanvas::Item& item() const { return *_flag; }
|
2013-04-05 17:16:33 -04:00
|
|
|
|
2015-10-05 10:17:49 -04:00
|
|
|
private:
|
2013-04-05 17:16:33 -04:00
|
|
|
bool event_handler (GdkEvent* ev);
|
2016-10-07 12:38:00 -04:00
|
|
|
SysEx(const SysEx& rhs){}
|
2013-04-05 17:16:33 -04:00
|
|
|
ArdourCanvas::Flag* _flag;
|
2017-02-01 11:34:21 -05:00
|
|
|
ARDOUR::MidiModel::SysExPtr _sysex;
|
2013-04-05 17:16:33 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __SYSEX_H__ */
|