summaryrefslogtreecommitdiff
path: root/gtk2_ardour/tempo_lines.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-23 15:00:25 +0000
committerDavid Robillard <d@drobilla.net>2008-09-23 15:00:25 +0000
commitd97fa52d4464e61fbfdba4412cf0dde254cb61c2 (patch)
tree5632ad5de2ba4deb524c1023f115dbe164e7af62 /gtk2_ardour/tempo_lines.h
parent867193acce129cbb6a235c4e748bfddab329525a (diff)
Separate tempo lines stuff ala 3.0.
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3796 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/tempo_lines.h')
-rw-r--r--gtk2_ardour/tempo_lines.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/gtk2_ardour/tempo_lines.h b/gtk2_ardour/tempo_lines.h
new file mode 100644
index 0000000000..375ae9342b
--- /dev/null
+++ b/gtk2_ardour/tempo_lines.h
@@ -0,0 +1,48 @@
+/*
+ Copyright (C) 2000-2007 Paul Davis
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#ifndef __ardour_tempo_lines_h__
+#define __ardour_tempo_lines_h__
+
+#include <vector>
+#include <ardour/tempo.h>
+#include "canvas.h"
+#include "simpleline.h"
+
+class TempoLines {
+public:
+ TempoLines(ArdourCanvas::Canvas& canvas, ArdourCanvas::Group* group)
+ : _canvas(canvas)
+ , _group(group)
+ {}
+
+ ArdourCanvas::SimpleLine* get_line();
+
+ void draw(ARDOUR::TempoMap::BBTPointList& points, double frames_per_unit);
+ void hide();
+
+private:
+ typedef std::vector<ArdourCanvas::SimpleLine*> Lines;
+ Lines _free_lines;
+ Lines _used_lines;
+
+ ArdourCanvas::Canvas& _canvas;
+ ArdourCanvas::Group* _group;
+};
+
+#endif /* __ardour_tempo_lines_h__ */