]> sigrok.org Git - pulseview.git/blobdiff - pv/view/decodesignal.h
Added missing includes and defintions
[pulseview.git] / pv / view / decodesignal.h
index e52c7947c1259571d3f997acb3c0812ba3953197..f9113f5bee99298ef5951aafc97657d59d0d7c58 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_DECODESIGNAL_H
-#define PULSEVIEW_PV_DECODESIGNAL_H
+#ifndef PULSEVIEW_PV_VIEW_DECODESIGNAL_H
+#define PULSEVIEW_PV_VIEW_DECODESIGNAL_H
 
 #include "trace.h"
 
 #include <boost/shared_ptr.hpp>
 
 namespace pv {
+
+namespace data {
+class Decoder;
+}
+
 namespace view {
 
 class DecodeSignal : public Trace
 {
-public:
-       DecodeSignal(pv::SigSession &session, srd_decoder *const dec);
+       Q_OBJECT
+
+private:
+       static const QColor DecodeColours[4];
 
-       void init_context_bar_actions(QWidget *parent);
+public:
+       DecodeSignal(pv::SigSession &session,
+               boost::shared_ptr<pv::data::Decoder> decoder, int index);
 
        bool enabled() const;
 
+       void set_view(pv::view::View *view);
+
        /**
-        * Paints the trace with a QPainter
+        * Paints the background layer of the trace with a QPainter
+        * @param p the QPainter to paint into.
+        * @param left the x-coordinate of the left edge of the signal.
+        * @param right the x-coordinate of the right edge of the signal.
+        **/
+       void paint_back(QPainter &p, int left, int right);
+
+       /**
+        * Paints the mid-layer of 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);
+       void paint_mid(QPainter &p, int left, int right);
+
+       QMenu* create_context_menu(QWidget *parent);
 
-       const std::list<QAction*> get_context_bar_actions();
+       void delete_pressed();
 
 private:
 
@@ -60,11 +76,18 @@ private:
         **/
        int get_nominal_offset(const QRect &rect) const;
 
+private slots:
+       void on_new_decode_data();
+
+       void on_delete();
+
 private:
-       srd_decoder *const _decoder;
+       boost::shared_ptr<pv::data::Decoder> _decoder;
+
+       uint64_t _decode_start, _decode_end;
 };
 
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_DECODESIGNAL_H
+#endif // PULSEVIEW_PV_VIEW_DECODESIGNAL_H