]> sigrok.org Git - pulseview.git/blobdiff - pv/view/rowitem.cpp
Change namespace for the trace view and implement ViewBase
[pulseview.git] / pv / view / rowitem.cpp
index 38a6d43703883697c8ce838238ec1ab4377a334f..f41ea52e4ebe0b6086becb1c42d1ec49b8ce3c4b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the PulseView project.
  *
- * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
+ * Copyright (C) 2015 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
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#include <assert.h>
-
-#include "view.h"
-
-#include "rowitem.h"
+#include "rowitem.hpp"
 
 namespace pv {
-namespace view {
-
-RowItem::RowItem() :
-       _owner(NULL),
-       _v_offset(0)
-{
-}
-
-int RowItem::v_offset() const
-{
-       return _v_offset;
-}
-
-void RowItem::set_v_offset(int v_offset)
-{
-       _v_offset = v_offset;
-}
-
-void RowItem::set_owner(RowItemOwner *owner)
-{
-       assert((_owner && !owner) || (!_owner && owner));
-       _owner = owner;
-}
-
-int RowItem::get_y() const
-{
-       assert(_owner);
-       return _v_offset + _owner->owner_v_offset();
-}
-
-void RowItem::paint_back(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_mid(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
-
-void RowItem::paint_fore(QPainter &p, int left, int right)
-{
-       (void)p;
-       (void)left;
-       (void)right;
-}
+namespace views {
+namespace TraceView {
 
 void RowItem::hover_point_changed()
 {
 }
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv