incomplete merge of master into windows (requires upcoming changes to master to be...
[ardour.git] / gtk2_ardour / canvas-flag.h
1 /*
2     Copyright (C) 2012 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef CANVASFLAG_H_
21 #define CANVASFLAG_H_
22
23 #include <string>
24 #include <libgnomecanvasmm/pixbuf.h>
25 #include <libgnomecanvasmm/group.h>
26 #include <libgnomecanvasmm/widget.h>
27
28 #include "simplerect.h"
29 #include "simpleline.h"
30 #include "canvas.h"
31
32 class MidiRegionView;
33
34 namespace Gnome {
35 namespace Canvas {
36
37 class CanvasFlag : public Group
38 {
39 public:
40         CanvasFlag (MidiRegionView& region,
41                     Group&          parent,
42                     double         height,
43                     guint           outline_color_rgba = 0xc0c0c0ff,
44                     guint           fill_color_rgba = 0x07070707,
45                     double         x = 0.0,
46                     double         y = 0.0);
47
48         virtual ~CanvasFlag();
49
50         virtual void set_text(const std::string& a_text);
51         virtual void set_height (double);
52
53         int width () const { return name_pixbuf_width + 10.0; }
54
55 protected:
56         ArdourCanvas::Pixbuf* _name_pixbuf;
57         double           _height;
58         guint            _outline_color_rgba;
59         guint            _fill_color_rgba;
60         MidiRegionView&  _region;
61         int name_pixbuf_width;
62
63 private:
64         void delete_allocated_objects();
65
66         SimpleLine*      _line;
67         SimpleRect*      _rect;
68 };
69
70
71 } // namespace Canvas
72 } // namespace Gnome
73
74 #endif /*CANVASFLAG_H_*/