summaryrefslogtreecommitdiff
path: root/src/canvastoolranges.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/canvastoolranges.h')
-rw-r--r--src/canvastoolranges.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/canvastoolranges.h b/src/canvastoolranges.h
new file mode 100644
index 0000000..164532a
--- /dev/null
+++ b/src/canvastoolranges.h
@@ -0,0 +1,105 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/***************************************************************************
+ * canvastoolranges.h
+ *
+ * Thu Jul 28 20:16:59 CEST 2011
+ * Copyright 2011 Bent Bisballe Nyeng
+ * deva@aasimon.org
+ ****************************************************************************/
+
+/*
+ * This file is part of DrumGizmo.
+ *
+ * DrumGizmo 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.
+ *
+ * DrumGizmo 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 DrumGizmo; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+#pragma once
+
+#include "canvastool.h"
+
+#include <QColor>
+
+#include "canvas.h"
+
+#include "range.h"
+
+class Instrument;
+
+class CanvasToolRanges
+ : public CanvasTool
+{
+ Q_OBJECT
+public:
+ CanvasToolRanges(Instrument& instrument,
+ Canvas* canvas, Ranges& ranges,
+ Ranges& ranges_preview);
+
+ QString name() { return tr("Ranges"); }
+ bool mouseMoveEvent(QMouseEvent* event);
+ bool mousePressEvent(QMouseEvent* event);
+ bool mouseReleaseEvent(QMouseEvent* event);
+ void paintEvent(QPaintEvent* event, QPainter& painter);
+ void keyReleaseEvent(QKeyEvent* event);
+
+ //Ranges ranges();
+
+ void setPositionData(const float* positionData1,
+ size_t positionSize1,
+ const float* positionData2,
+ size_t positionSize2);
+
+signals:
+ //void rangesChanged(Ranges ranges);
+ //void activeRangeChanged(sel_id_t id);
+
+public slots:
+ void autoCreateRanges();
+ void autoCreateRangesPreview();
+ void clearRanges();
+ void noiseFloorChanged(int t);
+ void holdChanged(int h);
+ void fadeoutChanged(int f);
+ void setShowPreview(bool show_preview);
+
+private:
+ void doAutoCreateRanges(bool preview);
+
+ Instrument& instrument;
+
+ bool range_is_moving_left;
+ bool range_is_moving_right;
+
+ Canvas* canvas;
+
+ double noise_floor;
+ double fadeout;
+ int hold;
+
+ QColor colSelBg;
+ QColor colSel;
+ QColor colActiveSelBg;
+ QColor colActiveSel;
+ QColor colPreviewSelBg;
+ QColor colPreviewSel;
+
+ Ranges& ranges;
+ Ranges& ranges_preview;
+
+ bool show_preview;
+
+ const float* positionData1{};
+ size_t positionSize1{};
+ const float* positionData2{};
+ size_t positionSize2{};
+};