]> sigrok.org Git - pulseview.git/blobdiff - pv/view/selectableitem.cpp
SelectableItem: Renamed to ViewItem
[pulseview.git] / pv / view / selectableitem.cpp
diff --git a/pv/view/selectableitem.cpp b/pv/view/selectableitem.cpp
deleted file mode 100644 (file)
index 6921f19..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- * This file is part of the PulseView project.
- *
- * Copyright (C) 2013 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
- * 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 "selectableitem.hpp"
-
-#include <climits>
-
-#include <QApplication>
-#include <QMenu>
-#include <QPalette>
-
-namespace pv {
-namespace view {
-
-const int SelectableItem::HighlightRadius = 6;
-
-SelectableItem::SelectableItem() :
-       context_parent_(NULL),
-       selected_(false),
-       drag_point_(INT_MIN, INT_MIN)
-{
-}
-
-bool SelectableItem::selected() const
-{
-       return selected_;
-}
-
-void SelectableItem::select(bool select)
-{
-       selected_ = select;
-}
-
-bool SelectableItem::dragging() const
-{
-       return drag_point_.x() != INT_MIN && drag_point_.y() != INT_MIN;
-}
-
-QPoint SelectableItem::drag_point() const
-{
-       return drag_point_;
-}
-
-void SelectableItem::drag()
-{
-       drag_point_ = point();
-}
-
-void SelectableItem::drag_release()
-{
-       drag_point_ = QPoint(INT_MIN, INT_MIN);
-}
-
-QMenu* SelectableItem::create_context_menu(QWidget *parent)
-{
-       context_parent_ = parent;
-       return new QMenu(parent);
-}
-
-void SelectableItem::delete_pressed()
-{
-}
-
-QPen SelectableItem::highlight_pen()
-{
-       return QPen(QApplication::palette().brush(
-               QPalette::Highlight), HighlightRadius,
-               Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
-}
-
-QColor SelectableItem::select_text_colour(QColor background)
-{
-       return (background.lightness() > 64) ? Qt::black : Qt::white;
-}
-
-} // namespace view
-} // namespace pv