"treadmill" design for new faders, for real
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / choice.h
1 #ifndef __pbd_gtkmm_choice_h__
2 #define __pbd_gtkmm_choice_h__
3
4 #include <gtkmm/dialog.h>
5 #include <gtkmm/image.h>
6 #include <gtkmm/stock.h>
7 #include <gtkmm/box.h>
8 #include <string>
9 #include <vector>
10
11 namespace Gtkmm2ext {
12
13 class Choice : public Gtk::Dialog
14 {
15   public:
16         Choice (std::string prompt, std::vector<std::string> choices, bool center = true);
17         virtual ~Choice ();
18
19   protected:
20         void on_realize ();
21 };
22
23 } /* namespace */
24
25 #endif  // __pbd_gtkmm_choice_h__