2 * This file is part of the PulseView project.
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
21 #include "selectableitem.hpp"
25 #include <QApplication>
32 const int SelectableItem::HighlightRadius = 6;
34 SelectableItem::SelectableItem() :
35 context_parent_(NULL),
37 drag_point_(INT_MIN, INT_MIN)
41 bool SelectableItem::selected() const
46 void SelectableItem::select(bool select)
51 bool SelectableItem::dragging() const
53 return drag_point_.x() != INT_MIN && drag_point_.y() != INT_MIN;
56 QPoint SelectableItem::drag_point() const
61 void SelectableItem::drag()
63 drag_point_ = point();
66 void SelectableItem::drag_release()
68 drag_point_ = QPoint(INT_MIN, INT_MIN);
71 QMenu* SelectableItem::create_context_menu(QWidget *parent)
73 context_parent_ = parent;
74 return new QMenu(parent);
77 void SelectableItem::delete_pressed()
81 QPen SelectableItem::highlight_pen()
83 return QPen(QApplication::palette().brush(
84 QPalette::Highlight), HighlightRadius,
85 Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin);
88 QColor SelectableItem::select_text_colour(QColor background)
90 return (background.lightness() > 64) ? Qt::black : Qt::white;