Fix reference of track after free() (#4795).
[ardour.git] / gtk2_ardour / canvas-flag.h
index c48f78b3581b24cb108760ea9ae2c17996c268d8..ef78221803a5eb120122441d64fb802320184533 100644 (file)
@@ -1,59 +1,51 @@
 #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 "ardour/midi_model.h"
 
 #include "simplerect.h"
 #include "simpleline.h"
-#include "interactive-item.h"
 
 class MidiRegionView;
 
 namespace Gnome {
 namespace Canvas {
 
-class CanvasFlag : public Group, public InteractiveItem
+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
-       )       : Group(parent, x, y)
-       , _text(0)
-       , _height(height)
-       , _outline_color_rgba(outline_color_rgba)
-       , _fill_color_rgba(fill_color_rgba)
-       , _region(region)
-       , _line(0)
-       , _rect(0)
-       {}
-                       
+       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(string& a_text);
+       virtual void set_text(const std::string& a_text);
+        virtual void set_height (double);
 
 protected:
-       InteractiveText*                  _text;
-       double                            _height;
-       guint                             _outline_color_rgba;
-       guint                             _fill_color_rgba;
-       MidiRegionView&                   _region;
-       
+       Text*            _text;
+       double           _height;
+       guint            _outline_color_rgba;
+       guint            _fill_color_rgba;
+       MidiRegionView&  _region;
+
 private:
        void delete_allocated_objects();
-       
-       SimpleLine*                       _line;
-       InteractiveRect*                  _rect;
+
+       SimpleLine*      _line;
+       SimpleRect*      _rect;
 };