]> sigrok.org Git - pulseview.git/commitdiff
Added pv::widgets::ColourPopup
authorJoel Holdsworth <redacted>
Sat, 5 Oct 2013 11:24:08 +0000 (12:24 +0100)
committerJoel Holdsworth <redacted>
Sun, 13 Oct 2013 10:05:23 +0000 (11:05 +0100)
pv/widgets/colourpopup.cpp [new file with mode: 0644]
pv/widgets/colourpopup.h [new file with mode: 0644]

diff --git a/pv/widgets/colourpopup.cpp b/pv/widgets/colourpopup.cpp
new file mode 100644 (file)
index 0000000..816a4c5
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * 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 "colourpopup.h"
+
+namespace pv {
+namespace widgets {
+
+ColourPopup::ColourPopup(int rows, int cols, QWidget *parent) :
+       Popup(parent),
+       _well_array(rows, cols, this),
+       _layout(this)
+{
+       _layout.addWidget(&_well_array);
+       setLayout(&_layout);
+
+       connect(&_well_array, SIGNAL(selected(int, int)),
+               this, SIGNAL(selected(int, int)));
+       connect(&_well_array, SIGNAL(selected(int, int)),
+               this, SLOT(colour_selected(int, int)));
+}
+
+QWellArray& ColourPopup::well_array()
+{
+       return _well_array;
+}
+
+void ColourPopup::colour_selected(int, int)
+{
+       close();
+}
+
+} // widgets
+} // pv
diff --git a/pv/widgets/colourpopup.h b/pv/widgets/colourpopup.h
new file mode 100644 (file)
index 0000000..4f5c52e
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+ * 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_WIDGETS_COLOURPOPUP_H
+#define PULSEVIEW_PV_WIDGETS_COLOURPOPUP_H
+
+#include "popup.h"
+#include "wellarray.h"
+
+#include <QVBoxLayout>
+
+namespace pv {
+namespace widgets {
+
+class ColourPopup : public Popup
+{
+       Q_OBJECT
+
+public:
+       ColourPopup(int rows, int cols, QWidget *partent);
+
+       QWellArray& well_array();
+
+signals:
+       void selected(int row, int col);
+
+private slots:
+       void colour_selected(int, int);
+
+private:
+       QWellArray _well_array;
+       QVBoxLayout _layout;
+};
+
+} // widgets
+} // pv
+
+#endif // PULSEVIEW_PV_WIDGETS_COLOURPOPUP_H