fix bigclockwindow's lack of hiding, set ArdourWindow to just-hide-on-delete and...
[ardour.git] / gtk2_ardour / ardour_window.cc
1 /*
2     Copyright (C) 2002-2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <sigc++/bind.h>
22
23 #include <gtkmm2ext/doi.h>
24
25 #include "ardour_window.h"
26 #include "ardour_ui.h"
27 #include "keyboard.h"
28 #include "utils.h"
29
30 using namespace std;
31 using namespace Gtk;
32 using namespace Gtkmm2ext;
33
34 ArdourWindow::ArdourWindow (string title)
35         : Window ()
36         , VisibilityTracker (*((Gtk::Window*)this))
37 {
38         set_title (title);
39         init ();
40         set_position (Gtk::WIN_POS_MOUSE);
41 }
42
43 ArdourWindow::ArdourWindow (Gtk::Window& parent, string /*title*/)
44         : Window ()
45         , VisibilityTracker (*((Gtk::Window*)this))
46 {
47         init ();
48         set_transient_for (parent);
49         set_position (Gtk::WIN_POS_CENTER_ON_PARENT);
50 }
51
52 ArdourWindow::~ArdourWindow ()
53 {
54 }
55
56 bool
57 ArdourWindow::on_enter_notify_event (GdkEventCrossing *ev)
58 {
59         Keyboard::the_keyboard().enter_window (ev, this);
60         return Window::on_enter_notify_event (ev);
61 }
62
63 bool
64 ArdourWindow::on_leave_notify_event (GdkEventCrossing *ev)
65 {
66         Keyboard::the_keyboard().leave_window (ev, this);
67         return Window::on_leave_notify_event (ev);
68 }
69
70 void
71 ArdourWindow::on_unmap ()
72 {
73         Keyboard::the_keyboard().leave_window (0, this);
74         Window::on_unmap ();
75 }
76
77 void
78 ArdourWindow::init ()
79 {
80         set_border_width (10);
81
82         /* ArdourWindows are not dialogs (they have no "OK" or "Close" button) but
83            they should be considered part of the same "window level" as a dialog. This
84            works on X11 and Quartz, in that:
85            
86            (a) utility & dialog windows are considered to be part of the same level
87            (b) they will float above normal windows without any particular effort
88            (c) present()-ing them will make a utility float over a dialog or
89                vice versa.
90         */
91
92         set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
93
94         signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), this));
95
96         ARDOUR_UI::CloseAllDialogs.connect (sigc::mem_fun (*this, &ArdourWindow::hide));
97 }
98