2010-05-05 16:29:46 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2010-2011 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2011 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2010-05-05 16:29:46 -04:00
|
|
|
|
|
|
|
#ifndef __gtk2_ardour_led_h__
|
|
|
|
#define __gtk2_ardour_led_h__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2011-12-07 08:57:45 -05:00
|
|
|
#include "gtkmm2ext/cairo_widget.h"
|
2010-05-05 16:29:46 -04:00
|
|
|
|
|
|
|
class LED : public CairoWidget
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2010-05-05 16:29:46 -04:00
|
|
|
LED ();
|
|
|
|
virtual ~LED ();
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2011-10-27 16:10:49 -04:00
|
|
|
void set_diameter (float);
|
2010-05-05 16:29:46 -04:00
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
protected:
|
2017-03-20 12:11:56 -04:00
|
|
|
void render (Cairo::RefPtr<Cairo::Context> const&, cairo_rectangle_t*);
|
2011-10-27 16:10:49 -04:00
|
|
|
void on_size_request (Gtk::Requisition* req);
|
|
|
|
void on_realize ();
|
2010-05-06 14:40:37 -04:00
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2011-10-27 16:10:49 -04:00
|
|
|
float _diameter;
|
|
|
|
float _red;
|
|
|
|
float _green;
|
|
|
|
float _blue;
|
|
|
|
bool _fixed_diameter;
|
2010-05-06 14:40:37 -04:00
|
|
|
|
2011-10-27 16:10:49 -04:00
|
|
|
void set_colors_from_style ();
|
2010-05-05 16:29:46 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk2_ardour_led_h__ */
|