Paul Davis
3e966771d0
git-svn-id: svn://localhost/ardour2/branches/3.0@7186 d708f5d6-7413-0410-9779-e7cbd77b26cf
55 lines
1.1 KiB
C++
55 lines
1.1 KiB
C++
#ifndef CANVASFLAG_H_
|
|
#define CANVASFLAG_H_
|
|
|
|
#include <string>
|
|
#include <libgnomecanvasmm/group.h>
|
|
#include <libgnomecanvasmm/widget.h>
|
|
#include <libgnomecanvasmm/text.h>
|
|
|
|
#include "ardour/midi_model.h"
|
|
|
|
#include "simplerect.h"
|
|
#include "simpleline.h"
|
|
|
|
class MidiRegionView;
|
|
|
|
namespace Gnome {
|
|
namespace Canvas {
|
|
|
|
class CanvasFlag : public Group
|
|
{
|
|
public:
|
|
CanvasFlag(MidiRegionView& region,
|
|
Group& parent,
|
|
double height,
|
|
guint outline_color_rgba = 0xc0c0c0ff,
|
|
guint fill_color_rgba = 0x07070707,
|
|
double x = 0.0,
|
|
double y = 0.0);
|
|
|
|
virtual ~CanvasFlag();
|
|
|
|
virtual bool on_event(GdkEvent* ev);
|
|
|
|
void set_text(const std::string& a_text);
|
|
|
|
protected:
|
|
Text* _text;
|
|
double _height;
|
|
guint _outline_color_rgba;
|
|
guint _fill_color_rgba;
|
|
MidiRegionView& _region;
|
|
|
|
private:
|
|
void delete_allocated_objects();
|
|
|
|
SimpleLine* _line;
|
|
SimpleRect* _rect;
|
|
};
|
|
|
|
|
|
} // namespace Canvas
|
|
} // namespace Gnome
|
|
|
|
#endif /*CANVASFLAG_H_*/
|