From b20265774e354ca052c4e5365161d93b2fe387e0 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 5 Oct 2013 12:24:08 +0100 Subject: [PATCH] Added pv::widgets::ColourPopup --- pv/widgets/colourpopup.cpp | 51 +++++++++++++++++++++++++++++++++++ pv/widgets/colourpopup.h | 55 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 106 insertions(+) create mode 100644 pv/widgets/colourpopup.cpp create mode 100644 pv/widgets/colourpopup.h diff --git a/pv/widgets/colourpopup.cpp b/pv/widgets/colourpopup.cpp new file mode 100644 index 00000000..816a4c50 --- /dev/null +++ b/pv/widgets/colourpopup.cpp @@ -0,0 +1,51 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2013 Joel Holdsworth + * + * 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 index 00000000..4f5c52e3 --- /dev/null +++ b/pv/widgets/colourpopup.h @@ -0,0 +1,55 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2013 Joel Holdsworth + * + * 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 + +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 -- 2.30.2