]> sigrok.org Git - pulseview.git/blame - pv/view/rowitem.cpp
LogicSignal: Check the TRIGGER_MATCH key before listing
[pulseview.git] / pv / view / rowitem.cpp
CommitLineData
23935421
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <assert.h>
22
2acdb232 23#include "view.hpp"
23935421 24
2acdb232 25#include "rowitem.hpp"
23935421
JH
26
27namespace pv {
28namespace view {
29
30RowItem::RowItem() :
8dbbc7f0
JH
31 owner_(NULL),
32 layout_v_offset_(0),
33 visual_v_offset_(0),
34 v_offset_animation_(this, "visual_v_offset")
23935421
JH
35{
36}
37
be9e7b4b 38int RowItem::layout_v_offset() const
23935421 39{
8dbbc7f0 40 return layout_v_offset_;
23935421
JH
41}
42
be9e7b4b 43void RowItem::set_layout_v_offset(int v_offset)
23935421 44{
8dbbc7f0 45 if (layout_v_offset_ == v_offset)
be9e7b4b
JH
46 return;
47
8dbbc7f0 48 layout_v_offset_ = v_offset;
32218d3e 49
8dbbc7f0
JH
50 if (owner_)
51 owner_->extents_changed(false, true);
be9e7b4b
JH
52}
53
54int RowItem::visual_v_offset() const
55{
8dbbc7f0 56 return visual_v_offset_;
be9e7b4b
JH
57}
58
59void RowItem::set_visual_v_offset(int v_offset)
60{
8dbbc7f0 61 visual_v_offset_ = v_offset;
32218d3e 62
8dbbc7f0 63 if (owner_)
6e2c3c85 64 owner_->row_item_appearance_changed(true, true);
be9e7b4b
JH
65}
66
67void RowItem::force_to_v_offset(int v_offset)
68{
8dbbc7f0
JH
69 v_offset_animation_.stop();
70 layout_v_offset_ = visual_v_offset_ = v_offset;
f15bb3bc
JH
71
72 if (owner_) {
73 owner_->row_item_appearance_changed(true, true);
74 owner_->extents_changed(false, true);
75 }
23935421
JH
76}
77
7ff0145f
JH
78void RowItem::animate_to_layout_v_offset()
79{
8dbbc7f0
JH
80 if (visual_v_offset_ == layout_v_offset_ ||
81 (v_offset_animation_.endValue() == layout_v_offset_ &&
82 v_offset_animation_.state() == QAbstractAnimation::Running))
7ff0145f
JH
83 return;
84
8dbbc7f0
JH
85 v_offset_animation_.setDuration(100);
86 v_offset_animation_.setStartValue(visual_v_offset_);
87 v_offset_animation_.setEndValue(layout_v_offset_);
88 v_offset_animation_.setEasingCurve(QEasingCurve::OutQuad);
89 v_offset_animation_.start();
7ff0145f
JH
90}
91
bd9a1f17
JH
92RowItemOwner* RowItem::owner() const
93{
8dbbc7f0 94 return owner_;
bd9a1f17
JH
95}
96
eae6e30a 97void RowItem::set_owner(RowItemOwner *owner)
23935421 98{
8dbbc7f0
JH
99 assert(owner_ || owner);
100 v_offset_animation_.stop();
7ff0145f 101
8dbbc7f0
JH
102 if (owner_) {
103 const int owner_offset = owner_->owner_visual_v_offset();
104 layout_v_offset_ += owner_offset;
105 visual_v_offset_ += owner_offset;
7ff0145f 106 }
be9e7b4b 107
8dbbc7f0 108 owner_ = owner;
7ff0145f 109
8dbbc7f0
JH
110 if (owner_) {
111 const int owner_offset = owner_->owner_visual_v_offset();
112 layout_v_offset_ -= owner_offset;
113 visual_v_offset_ -= owner_offset;
7ff0145f 114 }
23935421
JH
115}
116
be9e7b4b 117int RowItem::get_visual_y() const
23935421 118{
8dbbc7f0
JH
119 assert(owner_);
120 return visual_v_offset_ + owner_->owner_visual_v_offset();
23935421
JH
121}
122
23e75650
JH
123void RowItem::drag_by(const QPoint &delta)
124{
125 force_to_v_offset(drag_point_.y() + delta.y() -
126 owner_->owner_visual_v_offset());
127}
128
be717066 129QPoint RowItem::point(const QRect &rect) const
0dda6fe5 130{
c3bb03ff 131 return QPoint(rect.right(), get_visual_y());
0dda6fe5
JH
132}
133
23935421
JH
134void RowItem::hover_point_changed()
135{
136}
137
138} // namespace view
139} // namespace pv