summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext/choice.h
blob: 19984fb294caa6ef4aee42fd53baa6ee61b1bf0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef __pbd_gtkmm_choice_h__
#define __pbd_gtkmm_choice_h__

#include <gtkmm/dialog.h>
#include <gtkmm/image.h>
#include <gtkmm/stock.h>
#include <gtkmm/box.h>
#include <string>
#include <vector>

namespace Gtkmm2ext {

class Choice : public Gtk::Dialog
{
  public:
	Choice (std::string prompt, std::vector<std::string> choices, bool center = true);
	virtual ~Choice ();

  protected:
	void on_realize ();
};

} /* namespace */

#endif  // __pbd_gtkmm_choice_h__