remove AU GUI debugging test in which arrow keys could be used to change GUI size
[ardour.git] / gtk2_ardour / canvas-sysex.cc
index 1e110e52fa3ac3f737af582b71d4548af93a123f..667b493d5c4f0411ce92db00bcd529cb63c33ad2 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2009 Paul Davis
+    Author: Hans Baier
+
+    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.
+*/
+
 #include <iostream>
 
 #include "ardour_ui.h"
 using namespace Gnome::Canvas;
 using namespace std;
 
-template<typename Time>
-CanvasSysEx<Time>::CanvasSysEx(
-               MidiRegionView&                       region,
-               Group&                                parent,
-               string&                               text,
-               double                                height,
-               double                                x,
-               double                                y
-               )
+CanvasSysEx::CanvasSysEx(
+               MidiRegionView& region,
+               Group&          parent,
+               string&         text,
+               double          height,
+               double          x,
+               double          y)
        : CanvasFlag(
-                       region, 
-                       parent, 
-                       height, 
-                       ARDOUR_UI::config()->canvasvar_MidiSysExOutline.get(), 
+                       region,
+                       parent,
+                       height,
+                       ARDOUR_UI::config()->canvasvar_MidiSysExOutline.get(),
                        ARDOUR_UI::config()->canvasvar_MidiSysExFill.get(),
                        x,
-                       y
-               )
+                       y)
 {
        set_text(text);
 }
 
-template<typename Time>
-CanvasSysEx<Time>::~CanvasSysEx()
+CanvasSysEx::~CanvasSysEx()
 {
 }
 
-template<typename Time>
 bool
-CanvasSysEx<Time>::on_event(GdkEvent* ev)
+CanvasSysEx::on_event(GdkEvent* ev)
 {
        switch (ev->type) {
        case GDK_BUTTON_PRESS:
@@ -44,20 +58,19 @@ CanvasSysEx<Time>::on_event(GdkEvent* ev)
                        return true;
                }
                break;
-               
+
        case GDK_SCROLL:
                if (ev->scroll.direction == GDK_SCROLL_UP) {
                        return true;
                } else if (ev->scroll.direction == GDK_SCROLL_DOWN) {
                        return true;
-               } 
+               }
                break;
-               
+
        default:
                break;
        }
-       
+
        return false;
 }
 
-template class CanvasSysEx<double>;