2011-11-18 16:56:01 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2002-2011 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>
|
|
|
|
#include <sigc++/bind.h>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/doi.h>
|
|
|
|
|
|
|
|
#include "ardour_window.h"
|
2013-05-02 21:13:36 -04:00
|
|
|
#include "ardour_ui.h"
|
2011-11-18 16:56:01 -05:00
|
|
|
#include "keyboard.h"
|
2013-05-05 15:07:52 -04:00
|
|
|
#include "utils.h"
|
2011-11-18 16:56:01 -05:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
|
|
|
|
ArdourWindow::ArdourWindow (string title)
|
|
|
|
: Window ()
|
2013-03-25 20:04:36 -04:00
|
|
|
, VisibilityTracker (*((Gtk::Window*)this))
|
2011-11-18 16:56:01 -05:00
|
|
|
{
|
|
|
|
set_title (title);
|
|
|
|
init ();
|
2013-05-02 18:13:35 -04:00
|
|
|
set_position (Gtk::WIN_POS_MOUSE);
|
2011-11-18 16:56:01 -05:00
|
|
|
}
|
|
|
|
|
2012-05-02 16:29:46 -04:00
|
|
|
ArdourWindow::ArdourWindow (Gtk::Window& parent, string /*title*/)
|
2011-11-18 16:56:01 -05:00
|
|
|
: Window ()
|
2013-03-25 20:04:36 -04:00
|
|
|
, VisibilityTracker (*((Gtk::Window*)this))
|
2011-11-18 16:56:01 -05:00
|
|
|
{
|
|
|
|
init ();
|
2011-12-26 18:17:33 -05:00
|
|
|
set_transient_for (parent);
|
2011-11-18 16:56:01 -05:00
|
|
|
set_position (Gtk::WIN_POS_CENTER_ON_PARENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
ArdourWindow::~ArdourWindow ()
|
|
|
|
{
|
2013-05-07 22:09:16 -04:00
|
|
|
WM::Manager::instance().remove (proxy);
|
2011-11-18 16:56:01 -05:00
|
|
|
}
|
|
|
|
|
2013-05-06 10:55:40 -04:00
|
|
|
bool
|
|
|
|
ArdourWindow::on_key_press_event (GdkEventKey* ev)
|
|
|
|
{
|
|
|
|
return relay_key_press (ev, this);
|
|
|
|
}
|
|
|
|
|
2011-11-18 16:56:01 -05:00
|
|
|
bool
|
|
|
|
ArdourWindow::on_enter_notify_event (GdkEventCrossing *ev)
|
|
|
|
{
|
|
|
|
Keyboard::the_keyboard().enter_window (ev, this);
|
|
|
|
return Window::on_enter_notify_event (ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ArdourWindow::on_leave_notify_event (GdkEventCrossing *ev)
|
|
|
|
{
|
|
|
|
Keyboard::the_keyboard().leave_window (ev, this);
|
|
|
|
return Window::on_leave_notify_event (ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ArdourWindow::on_unmap ()
|
|
|
|
{
|
|
|
|
Keyboard::the_keyboard().leave_window (0, this);
|
|
|
|
Window::on_unmap ();
|
|
|
|
}
|
|
|
|
|
2013-05-05 16:10:54 -04:00
|
|
|
bool
|
|
|
|
ArdourWindow::on_delete_event (GdkEventAny*)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-18 16:56:01 -05:00
|
|
|
void
|
|
|
|
ArdourWindow::init ()
|
|
|
|
{
|
|
|
|
set_border_width (10);
|
2013-05-02 10:10:05 -04:00
|
|
|
|
|
|
|
/* ArdourWindows are not dialogs (they have no "OK" or "Close" button) but
|
|
|
|
they should be considered part of the same "window level" as a dialog. This
|
|
|
|
works on X11 and Quartz, in that:
|
|
|
|
|
|
|
|
(a) utility & dialog windows are considered to be part of the same level
|
|
|
|
(b) they will float above normal windows without any particular effort
|
2013-05-02 21:13:36 -04:00
|
|
|
(c) present()-ing them will make a utility float over a dialog or
|
|
|
|
vice versa.
|
2013-05-02 10:10:05 -04:00
|
|
|
*/
|
|
|
|
|
2013-05-07 18:09:12 -04:00
|
|
|
if (ARDOUR_UI::instance()->config()->all_floating_windows_are_dialogs.get()) {
|
|
|
|
set_type_hint (Gdk::WINDOW_TYPE_HINT_DIALOG);
|
|
|
|
} else {
|
|
|
|
set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
|
|
|
|
}
|
|
|
|
|
2013-05-07 22:09:16 -04:00
|
|
|
Gtk::Window* parent = WM::Manager::instance().transient_parent();
|
2013-05-07 18:09:12 -04:00
|
|
|
|
|
|
|
if (parent) {
|
|
|
|
set_transient_for (*parent);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:13:36 -04:00
|
|
|
ARDOUR_UI::CloseAllDialogs.connect (sigc::mem_fun (*this, &ArdourWindow::hide));
|
2013-05-07 22:09:16 -04:00
|
|
|
|
|
|
|
proxy = new WM::ProxyTemporary (get_title(), this);
|
|
|
|
WM::Manager::instance().register_window (proxy);
|
2011-11-18 16:56:01 -05:00
|
|
|
}
|
2013-03-25 20:04:36 -04:00
|
|
|
|