Ardour  9.0-pre0-822-g12e3bc5c20
ardour_dropdown.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Paul Davis <paul@linuxaudiosystems.com>
3  * Copyright (C) 2017-2018 Robin Gareus <robin@gareus.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 #ifndef _WIDGETS_ARDOUR_DROPDOWN_H_
21 #define _WIDGETS_ARDOUR_DROPDOWN_H_
22 
23 #include <list>
24 #include <stdint.h>
25 
26 #include <ytkmm/action.h>
27 #include <ytkmm/menu.h>
28 #include <ytkmm/menuitem.h>
29 
30 #include "widgets/ardour_button.h"
31 #include "widgets/visibility.h"
32 
33 namespace ArdourWidgets {
34 
36 {
37 public:
38 
39  ArdourDropdown (Element e = default_elements);
40  virtual ~ArdourDropdown ();
41 
42  bool on_button_press_event (GdkEventButton*);
43  bool on_scroll_event (GdkEventScroll*);
44  void menu_size_request(Gtk::Requisition*);
45 
46  void clear_items ();
47  void AddMenuElem (Gtk::Menu_Helpers::Element e);
48 
50 
51  Gtk::Menu_Helpers::MenuList& items () { return _menu.items (); }
52  Gtk::Menu& menu () { return _menu; }
53 
54  void append_text_item (std::string const& text);
55  void set_active (std::string const& text);
56 
57 protected:
58  void default_text_handler (std::string const&);
59 
60 private:
61  Gtk::Menu _menu;
62 
64 };
65 
66 } /* end namespace */
67 
68 #endif
void AddMenuElem(Gtk::Menu_Helpers::Element e)
void default_text_handler(std::string const &)
void append_text_item(std::string const &text)
bool on_button_press_event(GdkEventButton *)
void menu_size_request(Gtk::Requisition *)
Gtk::Menu_Helpers::MenuList & items()
void set_active(std::string const &text)
bool on_scroll_event(GdkEventScroll *)
ArdourDropdown(Element e=default_elements)
#define LIBWIDGETS_API