X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Frowitem.cpp;h=2353dd92e6ea2c9d23ec56e059054fcfa37faa4b;hb=HEAD;hp=38a6d43703883697c8ce838238ec1ab4377a334f;hpb=eae6e30af53f6b3e42dc5be212c82870078276b0;p=pulseview.git diff --git a/pv/view/rowitem.cpp b/pv/view/rowitem.cpp deleted file mode 100644 index 38a6d437..00000000 --- a/pv/view/rowitem.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/* - * This file is part of the PulseView project. - * - * Copyright (C) 2013 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 - * 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 - */ - -#include - -#include "view.h" - -#include "rowitem.h" - -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; -} - -void RowItem::hover_point_changed() -{ -} - -} // namespace view -} // namespace pv