]> sigrok.org Git - pulseview.git/commitdiff
Added skeleton pv::view::DecodeSignal
authorJoel Holdsworth <redacted>
Sat, 8 Jun 2013 15:55:01 +0000 (16:55 +0100)
committerJoel Holdsworth <redacted>
Sun, 29 Sep 2013 01:34:42 +0000 (10:34 +0900)
CMakeLists.txt
pv/view/decodesignal.cpp [new file with mode: 0644]
pv/view/decodesignal.h [new file with mode: 0644]

index 58365a10d04e60b38f866e12f61670d96d366e3c..e723597044beb8c92908c8906d90f1c04de06b13 100644 (file)
@@ -127,6 +127,7 @@ set(pulseview_SOURCES
        pv/view/analogsignal.cpp
        pv/view/cursor.cpp
        pv/view/cursorpair.cpp
+       pv/view/decodesignal.cpp
        pv/view/header.cpp
        pv/view/marginwidget.cpp
        pv/view/logicsignal.cpp
diff --git a/pv/view/decodesignal.cpp b/pv/view/decodesignal.cpp
new file mode 100644 (file)
index 0000000..3e28d49
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+extern "C" {
+#include <libsigrokdecode/libsigrokdecode.h>
+}
+
+#include "decodesignal.h"
+
+using namespace boost;
+using namespace std;
+
+namespace pv {
+namespace view {
+
+DecodeSignal::DecodeSignal(pv::SigSession &session, srd_decoder *const dec) :
+       Trace(session, QString(dec->name)),
+       _decoder(dec)
+{
+       _colour = Qt::red;
+}
+
+bool DecodeSignal::enabled() const
+{
+       return true;
+}
+
+void DecodeSignal::paint(QPainter &p, int y, int left, int right,
+       double scale, double offset)
+{
+       (void)p;
+       (void)y;
+       (void)left;
+       (void)right;
+       (void)offset;
+
+       assert(scale > 0);
+}
+
+const list<QAction*> DecodeSignal::get_context_bar_actions()
+{
+       list<QAction*> actions;
+       return actions;
+}
+
+} // namespace view
+} // namespace pv
diff --git a/pv/view/decodesignal.h b/pv/view/decodesignal.h
new file mode 100644 (file)
index 0000000..7e1410e
--- /dev/null
@@ -0,0 +1,68 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#ifndef PULSEVIEW_PV_DECODESIGNAL_H
+#define PULSEVIEW_PV_DECODESIGNAL_H
+
+#include "trace.h"
+
+#include <boost/shared_ptr.hpp>
+
+namespace pv {
+namespace view {
+
+class DecodeSignal : public Trace
+{
+public:
+       DecodeSignal(pv::SigSession &session, srd_decoder *const dec);
+
+       bool enabled() const;
+
+       /**
+        * Paints the trace with a QPainter
+        * @param p the QPainter to paint into.
+        * @param y the y-coordinate to draw the signal at
+        * @param left the x-coordinate of the left edge of the signal
+        * @param right the x-coordinate of the right edge of the signal
+        * @param scale the scale in seconds per pixel.
+        * @param offset the time to show at the left hand edge of
+        *   the view in seconds.
+        **/
+       void paint(QPainter &p, int y, int left, int right,
+               double scale, double offset);
+
+       const std::list<QAction*> get_context_bar_actions();
+
+private:
+
+       /**
+        * When painting into the rectangle, calculate the y
+        * offset of the zero point.
+        **/
+       int get_nominal_offset(const QRect &rect) const;
+
+private:
+       srd_decoder *const _decoder;
+};
+
+} // namespace view
+} // namespace pv
+
+#endif // PULSEVIEW_PV_DECODESIGNAL_H