]> sigrok.org Git - pulseview.git/blobdiff - pv/view/marginwidget.cpp
Change namespace for the trace view and implement ViewBase
[pulseview.git] / pv / view / marginwidget.cpp
index 2ef262762cc0c13a7683b0aa7379099e3fca2502..4c3728710551bfceef85fad0234bffc51f44a119 100644 (file)
 using std::shared_ptr;
 
 namespace pv {
-namespace view {
+namespace views {
+namespace TraceView {
 
 MarginWidget::MarginWidget(View &parent) :
-       QWidget(&parent),
-       view_(parent),
-       dragging_(false)
+       ViewWidget(parent)
 {
        setAttribute(Qt::WA_NoSystemBackground, true);
-       setFocusPolicy(Qt::ClickFocus);
-       setMouseTracking(true);
+}
+
+void MarginWidget::item_clicked(const shared_ptr<ViewItem> &item)
+{
+       if (item && item->enabled())
+               show_popup(item);
 }
 
 void MarginWidget::show_popup(const shared_ptr<ViewItem> &item)
@@ -49,12 +52,6 @@ void MarginWidget::show_popup(const shared_ptr<ViewItem> &item)
                p->show();
 }
 
-void MarginWidget::leaveEvent(QEvent*)
-{
-       mouse_point_ = QPoint(-1, -1);
-       update();
-}
-
 void MarginWidget::contextMenuEvent(QContextMenuEvent *event)
 {
        const shared_ptr<ViewItem> r = get_mouse_over_item(mouse_point_);
@@ -66,13 +63,18 @@ void MarginWidget::contextMenuEvent(QContextMenuEvent *event)
                menu->exec(event->globalPos());
 }
 
-void MarginWidget::clear_selection()
+void MarginWidget::keyPressEvent(QKeyEvent *event)
 {
-       const auto items = this->items();
-       for (auto &i : items)
-               i->select(false);
-       update();
+       assert(event);
+
+       if (event->key() == Qt::Key_Delete) {
+               const auto items = this->items();
+               for (auto &i : items)
+                       if (i->selected())
+                               i->delete_pressed();
+       }
 }
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv