X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimeitem.cpp;h=33fe73106035211f95890af7550063da8b2a73db;hp=dabdd5f137fc45c39e204d354e831554afcc421a;hb=00f6bae935837b38b0d03a5928ba8175d460413f;hpb=ad341c3a893c66cfd59ac66eedb1de405ed0dbbb diff --git a/pv/view/timeitem.cpp b/pv/view/timeitem.cpp index dabdd5f1..33fe7310 100644 --- a/pv/view/timeitem.cpp +++ b/pv/view/timeitem.cpp @@ -14,18 +14,26 @@ * 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 + * along with this program; if not, see . */ #include "timeitem.hpp" +#include "view.hpp" namespace pv { -namespace view { +namespace views { +namespace TraceView { TimeItem::TimeItem(View &view) : view_(view) { } -} // namespace view +void TimeItem::drag_by(const QPoint &delta) +{ + set_time(view_.offset() + (drag_point_.x() + delta.x() - 0.5) * + view_.scale()); +} + +} // namespace TraceView +} // namespace views } // namespace pv