Only list hidden plugins with "Show hidden only"
[ardour.git] / gtk2_ardour / ardour_gauge.h
1 /*
2  * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #ifndef __gtkardour_gauge_h__
20 #define __gtkardour_gauge_h__
21
22 #include <pangomm.h>
23
24 #include "gtkmm2ext/cairo_widget.h"
25
26 class ArdourGauge : public CairoWidget
27 {
28 public:
29         ArdourGauge (std::string const& max_text = "00.0%");
30         virtual ~ArdourGauge ();
31
32 protected:
33
34         enum Status {
35                 Level_OK,   /* green */
36                 Level_WARN, /* yellow */
37                 Level_CRIT  /* red */
38         };
39
40         /* gauge's background, indicate alarming conditions eg. xrun */
41         virtual bool alert () const { return false; }
42         /* guage inidicator color */
43         virtual Status indicator () const = 0;
44         /* gauge level 0 <= level <= 1 */
45         virtual float level () const = 0;
46
47         virtual std::string tooltip_text () = 0;
48
49         void update ();
50         void update (std::string const &);
51
52 private:
53         void on_size_request (Gtk::Requisition*);
54         void render (Cairo::RefPtr<Cairo::Context> const&, cairo_rectangle_t*);
55
56         Glib::RefPtr<Pango::Layout> _layout;
57 };
58
59 #endif