crossfade hack and slash. removed overlap checks, overlap mode, default length,...
[ardour.git] / gtk2_ardour / tempo_lines.h
index 375ae9342bd36b56785baaa201e74b5488c3ec5a..1ab71e0681e1194e42ca85f0dbc080935b1a1b0c 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2000-2007 Paul Davis 
+    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
 #ifndef __ardour_tempo_lines_h__
 #define __ardour_tempo_lines_h__
 
-#include <vector>
-#include <ardour/tempo.h>
+#include <map>
+#include <boost/pool/pool.hpp>
+#include <boost/pool/pool_alloc.hpp>
+#include "ardour/tempo.h"
 #include "canvas.h"
 #include "simpleline.h"
 
+typedef boost::fast_pool_allocator<
+               std::pair<const double, ArdourCanvas::SimpleLine*>,
+               boost::default_user_allocator_new_delete,
+               boost::details::pool::null_mutex,
+               8192>
+       MapAllocator;
+
 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);
+       TempoLines(ArdourCanvas::Canvas& canvas, ArdourCanvas::Group* group, double screen_height);
+
+       void tempo_map_changed();
+
+       void draw(const ARDOUR::TempoMap::BBTPointList::const_iterator& begin, 
+                 const ARDOUR::TempoMap::BBTPointList::const_iterator& end, 
+                 double frames_per_unit);
+
+       void show();
        void hide();
 
 private:
-       typedef std::vector<ArdourCanvas::SimpleLine*> Lines;
-       Lines _free_lines;
-       Lines _used_lines;
+       typedef std::map<double, ArdourCanvas::SimpleLine*, std::less<double>, MapAllocator> Lines;
+       Lines _lines;
 
        ArdourCanvas::Canvas& _canvas;
        ArdourCanvas::Group*  _group;
+       double                _clean_left;
+       double                _clean_right;
+       double                _height;
 };
 
 #endif /* __ardour_tempo_lines_h__ */