]> sigrok.org Git - pulseview.git/commitdiff
Added pv::view::MarginWidget as a common base class of Header and Ruler
authorJoel Holdsworth <redacted>
Sun, 12 May 2013 20:35:37 +0000 (21:35 +0100)
committerJoel Holdsworth <redacted>
Sun, 19 May 2013 08:46:00 +0000 (09:46 +0100)
CMakeLists.txt
pv/view/header.cpp
pv/view/header.h
pv/view/marginwidget.cpp [new file with mode: 0644]
pv/view/marginwidget.h [new file with mode: 0644]
pv/view/ruler.cpp
pv/view/ruler.h

index 60644e16bbc2a9b4aa7fff8b83c6cc7e1f0b5727..d835927ebb504a0696d07b5a0b84b5f49fa1015d 100644 (file)
@@ -126,6 +126,7 @@ set(pulseview_SOURCES
        pv/view/cursor.cpp
        pv/view/cursorpair.cpp
        pv/view/header.cpp
+       pv/view/marginwidget.cpp
        pv/view/logicsignal.cpp
        pv/view/ruler.cpp
        pv/view/selectableitem.cpp
@@ -145,6 +146,7 @@ set(pulseview_HEADERS
        pv/toolbars/samplingbar.h
        pv/view/cursor.h
        pv/view/header.h
+       pv/view/marginwidget.h
        pv/view/ruler.h
        pv/view/selectableitem.h
        pv/view/signal.h
index 6d016fe0b441aa832a504e64704fd564ac67d59c..8fb5b4bd3c126a104b2f37d133ceb65405ddb380 100644 (file)
@@ -43,8 +43,7 @@ namespace pv {
 namespace view {
 
 Header::Header(View &parent) :
-       QWidget(&parent),
-       _view(parent),
+       MarginWidget(parent),
        _action_set_name(new QAction(tr("Set &Name..."), this)),
        _action_set_colour(new QAction(tr("Set &Colour..."), this))
 {
index 8e180b8a086cfb6a4e02179726b5ad665089b806..504011b6a63a348763be0495c9f5b305b4339c66 100644 (file)
@@ -27,7 +27,7 @@
 #include <list>
 #include <utility>
 
-#include <QWidget>
+#include "marginwidget.h"
 
 namespace pv {
 namespace view {
@@ -35,7 +35,7 @@ namespace view {
 class Signal;
 class View;
 
-class Header : public QWidget
+class Header : public MarginWidget
 {
        Q_OBJECT
 
@@ -71,8 +71,6 @@ signals:
        void signals_moved();
 
 private:
-       View &_view;
-
        QPoint _mouse_point;
        QPoint _mouse_down_point;
 
diff --git a/pv/view/marginwidget.cpp b/pv/view/marginwidget.cpp
new file mode 100644 (file)
index 0000000..539551d
--- /dev/null
@@ -0,0 +1,35 @@
+/*
+ * 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 "view.h"
+
+#include "marginwidget.h"
+
+namespace pv {
+namespace view {
+
+MarginWidget::MarginWidget(View &parent) :
+       QWidget(&parent),
+       _view(parent)
+{
+}
+
+} // namespace view
+} // namespace pv
diff --git a/pv/view/marginwidget.h b/pv/view/marginwidget.h
new file mode 100644 (file)
index 0000000..239692c
--- /dev/null
@@ -0,0 +1,45 @@
+/*
+ * 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
+ */
+
+#ifndef PULSEVIEW_PV_MARGINWIDGET_H
+#define PULSEVIEW_PV_MARGINWIDGET_H
+
+#include <QWidget>
+
+namespace pv {
+namespace view {
+
+class View;
+
+class MarginWidget : public QWidget
+{
+       Q_OBJECT
+
+public:
+       MarginWidget(pv::view::View &parent);
+
+protected:
+       pv::view::View &_view;
+};
+
+} // namespace view
+} // namespace pv
+
+#endif // PULSEVIEW_PV_MARGINWIDGET_H
index d323f9be0525be8c5e39f3621d6c4ca9f05e0f5b..654e6f45caea7652ae3ff5246492606833d42e82 100644 (file)
@@ -49,8 +49,7 @@ const int Ruler::FirstSIPrefixPower = -15;
 const int Ruler::HoverArrowSize = 5;
 
 Ruler::Ruler(View &parent) :
-       QWidget(&parent),
-       _view(parent),
+       MarginWidget(parent),
        _grabbed_marker(NULL)
 {
        setMouseTracking(true);
index 689b073cede32e81af7e43e901057c2c93e515bf..461ec05cfbd0e7ef97bb44de2ca0f579543b0424 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef PULSEVIEW_PV_VIEW_RULER_H
 #define PULSEVIEW_PV_VIEW_RULER_H
 
-#include <QWidget>
+#include "marginwidget.h"
 
 namespace pv {
 namespace view {
@@ -29,7 +29,7 @@ namespace view {
 class TimeMarker;
 class View;
 
-class Ruler : public QWidget
+class Ruler : public MarginWidget
 {
        Q_OBJECT
 
@@ -65,8 +65,6 @@ private slots:
        void hover_point_changed();
 
 private:
-       View &_view;
-
        TimeMarker *_grabbed_marker;
 };