2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
2008-12-12 09:43:24 -05:00
|
|
|
#include <sigc++/bind.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/doi.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "ardour_ui.h"
|
2008-02-02 12:22:04 -05:00
|
|
|
#include "splash.h"
|
2008-12-12 09:43:24 -05:00
|
|
|
#include "public_editor.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
2008-12-12 09:43:24 -05:00
|
|
|
using namespace Gtk;
|
2009-12-04 17:51:32 -05:00
|
|
|
using namespace Gtkmm2ext;
|
2008-12-12 09:43:24 -05:00
|
|
|
|
|
|
|
sigc::signal<void> ArdourDialog::CloseAllDialogs;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-02 14:18:26 -05:00
|
|
|
ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
|
|
|
|
: Dialog (title, modal, use_seperator)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-09-17 04:44:51 -04:00
|
|
|
init ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
ArdourDialog::ArdourDialog (Gtk::Window& parent, string title, bool modal, bool use_seperator)
|
|
|
|
: Dialog (title, parent, modal, use_seperator)
|
|
|
|
{
|
2008-09-17 04:44:51 -04:00
|
|
|
init ();
|
2007-10-11 18:07:47 -04:00
|
|
|
set_position (Gtk::WIN_POS_CENTER_ON_PARENT);
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
ArdourDialog::~ArdourDialog ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
bool
|
2005-09-25 22:48:59 -04:00
|
|
|
ArdourDialog::on_enter_notify_event (GdkEventCrossing *ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2005-12-24 13:25:26 -05:00
|
|
|
Keyboard::the_keyboard().enter_window (ev, this);
|
2005-11-22 23:13:32 -05:00
|
|
|
return false;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
bool
|
2005-09-25 22:48:59 -04:00
|
|
|
ArdourDialog::on_leave_notify_event (GdkEventCrossing *ev)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2005-12-24 13:25:26 -05:00
|
|
|
Keyboard::the_keyboard().leave_window (ev, this);
|
2005-11-22 23:13:32 -05:00
|
|
|
return false;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
void
|
|
|
|
ArdourDialog::on_unmap ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
Keyboard::the_keyboard().leave_window (0, this);
|
2005-09-26 10:33:53 -04:00
|
|
|
Dialog::on_unmap ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-02-02 12:22:04 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ArdourDialog::on_show ()
|
|
|
|
{
|
|
|
|
// never allow the splash screen to obscure any dialog
|
|
|
|
|
|
|
|
Splash* spl = Splash::instance();
|
|
|
|
|
|
|
|
if (spl) {
|
|
|
|
spl->pop_back ();
|
|
|
|
}
|
|
|
|
|
|
|
|
Dialog::on_show ();
|
|
|
|
}
|
2008-09-17 04:44:51 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
void
|
2008-12-12 09:43:24 -05:00
|
|
|
ArdourDialog::init ()
|
2008-09-17 04:44:51 -04:00
|
|
|
{
|
|
|
|
set_type_hint(Gdk::WINDOW_TYPE_HINT_DIALOG);
|
|
|
|
set_border_width (10);
|
2009-12-11 18:29:48 -05:00
|
|
|
CloseAllDialogs.connect (sigc::bind (sigc::mem_fun (*this, &ArdourDialog::response), RESPONSE_CANCEL));
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ArdourDialog::on_key_press_event (GdkEventKey* key)
|
|
|
|
{
|
|
|
|
return Gtk::Dialog::on_key_press_event (key);
|
2008-09-17 04:44:51 -04:00
|
|
|
}
|