X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fwidgets%2Fcolourbutton.hpp;fp=pv%2Fwidgets%2Fcolourbutton.hpp;h=0000000000000000000000000000000000000000;hp=9dbb2b27e2076baca4bbf77de14fcce1a8ec49c0;hb=641574bcc118be0b6dc3a65039ab3497f9d7241a;hpb=5e685656d6686eb66a39450d1b324f6382fc60c5 diff --git a/pv/widgets/colourbutton.hpp b/pv/widgets/colourbutton.hpp deleted file mode 100644 index 9dbb2b2..0000000 --- a/pv/widgets/colourbutton.hpp +++ /dev/null @@ -1,67 +0,0 @@ -/* - * 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, see . - */ - -#ifndef PULSEVIEW_PV_WIDGETS_COLOURBUTTON_HPP -#define PULSEVIEW_PV_WIDGETS_COLOURBUTTON_HPP - -#include - -#include "colourpopup.hpp" - -namespace pv { -namespace widgets { - -class ColourButton : public QPushButton -{ - Q_OBJECT; - -private: - static const int SwatchMargin; - -public: - ColourButton(int rows, int cols, QWidget *parent); - - ColourPopup& popup(); - - const QColor& colour() const; - - void set_colour(QColor colour); - - void set_palette(const QColor *const palette); - -private: - void paintEvent(QPaintEvent *event); - -private Q_SLOTS: - void on_clicked(bool); - - void on_selected(int row, int col); - -Q_SIGNALS: - void selected(const QColor &colour); - -private: - ColourPopup popup_; - QColor cur_colour_; -}; - -} // namespace widgets -} // namespace pv - -#endif // PULSEVIEW_PV_WIDGETS_COLOURBUTTON_HPP