Gtkmm2ext::Choice now inherits from Gtk::Dialog; embed/import rate mismatch dialog no longer hangs in recursive Main::run() call

git-svn-id: svn://localhost/trunk/ardour2@414 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-03-21 21:08:24 +00:00
parent d63c0fa328
commit 004a49b0c7
8 changed files with 52 additions and 97 deletions

View file

@ -18,6 +18,7 @@
$Id$
*/
#include <gtkmm/label.h>
#include <gtkmm2ext/choice.h>
using namespace std;
@ -25,39 +26,27 @@ using namespace Gtkmm2ext;
using namespace sigc;
using namespace Gtk;
Choice::Choice (string prompt,
vector<string> choices)
: Gtk::Window (WINDOW_TOPLEVEL),
prompt_label (prompt)
Choice::Choice (string prompt, vector<string> choices)
{
int n;
vector<string>::iterator i;
set_position (Gtk::WIN_POS_CENTER);
set_name ("ChoiceWindow");
add (packer);
packer.set_spacing (10);
packer.set_border_width (10);
packer.pack_start (prompt_label);
packer.pack_start (button_packer);
prompt_label.set_name ("ChoicePrompt");
Label* label = manage (new Label (prompt));
label->show ();
get_vbox()->pack_start (*label);
for (n = 0, i = choices.begin(); i != choices.end(); ++i, ++n) {
Button *button = manage (new Gtk::Button (*i));
button->set_name ("ChoiceButton");
button_packer.set_spacing (5);
button_packer.set_homogeneous (true);
button_packer.pack_start (*button, false, true);
Button* button;
button->signal_clicked().connect (bind (mem_fun (*this, &Choice::_choice_made), n));
buttons.push_back (button);
button = add_button (*i, RESPONSE_ACCEPT);
button->signal_button_release_event().connect (bind (mem_fun (*this, &Choice::choice_made), n), false);
}
signal_delete_event().connect(mem_fun(*this, &Choice::closed));
packer.show_all ();
which_choice = -1;
}
@ -72,21 +61,12 @@ Choice::~Choice ()
{
}
void
Choice::_choice_made (int nbutton)
bool
Choice::choice_made (GdkEventButton* ev, int nbutton)
{
which_choice = nbutton;
choice_made (which_choice);
chosen ();
}
gint
Choice::closed (GdkEventAny *ev)
{
which_choice = -1;
choice_made (which_choice);
chosen ();
return TRUE;
response (RESPONSE_ACCEPT);
return true;
}
int

View file

@ -1,42 +1,26 @@
#ifndef __pbd_gtkmm_choice_h__
#define __pbd_gtkmm_choice_h__
#include <gtkmm.h>
#include <gtkmm/dialog.h>
#include <string>
#include <vector>
namespace Gtkmm2ext {
class Choice : public Gtk::Window
class Choice : public Gtk::Dialog
{
public:
Choice (std::string prompt, std::vector<std::string> choices);
virtual ~Choice ();
/* This signal will be raised when a choice
is made or the choice window is deleted.
If the choice was to cancel, or the window
was deleted, then the argument will be -1.
Otherwise, it will be choice selected
of those presented, starting at zero.
*/
sigc::signal<void,int> choice_made;
sigc::signal<void> chosen;
int get_choice ();
protected:
void on_realize ();
private:
Gtk::VBox packer;
Gtk::Label prompt_label;
Gtk::HBox button_packer;
std::vector<Gtk::Button*> buttons;
int which_choice;
void _choice_made (int nbutton);
gint closed (GdkEventAny *);
bool choice_made (GdkEventButton* ev, int nbutton);
};
} /* namespace */