X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=4ad8b5998adf477abf4ac2343c1967675ce2fb87;hp=d850e321fe4fdcf0572065e268d6393fa3af8982;hb=34ec096859764f71c210ec7c271fcac2b96374cc;hpb=0dda6fe595932b2e340930104fad8ac4fc574895 diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp index d850e321..4ad8b599 100644 --- a/pv/view/rowitem.cpp +++ b/pv/view/rowitem.cpp @@ -1,7 +1,7 @@ /* * This file is part of the PulseView project. * - * Copyright (C) 2013 Joel Holdsworth + * Copyright (C) 2015 Joel Holdsworth * * 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 @@ -18,74 +18,11 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include - -#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; -} - -RowItemOwner* RowItem::owner() const -{ - return _owner; -} - -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(); -} - -QPoint RowItem::point() const -{ - return QPoint(0, 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; -} - void RowItem::hover_point_changed() { }