Fix a tiny memory leak, add_instant_xml() copies the node
[ardour.git] / gtk2_ardour / big_clock_window.cc
index 70bad5c0460370531e0d25554d07f8c9a5890b0e..58c63989d8f81eb6776dcf38d96e5a2d2c41cefc 100644 (file)
 #include <string>
 #include <vector>
 
+#include "gtkmm2ext/utils.h"
+
 #include "ardour_ui.h"
 #include "audio_clock.h"
 #include "big_clock_window.h"
 #include "public_editor.h"
 #include "utils.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using std::min;
 using std::string;
 using namespace ARDOUR_UI_UTILS;
 
-BigClockWindow::BigClockWindow (AudioClock& c) 
+BigClockWindow::BigClockWindow (AudioClock& c)
        : ArdourWindow (_("Big Clock"))
        , clock (c)
 {
-       ARDOUR_UI::Clock.connect (sigc::mem_fun (clock, &AudioClock::set));
+       ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (clock, &AudioClock::set), false, 0));
 
        clock.set_corner_radius (0.0);
 
@@ -47,6 +49,7 @@ BigClockWindow::BigClockWindow (AudioClock& c)
        clock.show_all ();
 
        clock.size_request (default_size);
+
        clock.signal_size_allocate().connect (sigc::mem_fun (*this, &BigClockWindow::clock_size_reallocated));
 }
 
@@ -54,8 +57,7 @@ void
 BigClockWindow::on_unmap ()
 {
        ArdourWindow::on_unmap ();
-
-       PublicEditor::instance().reset_focus ();
+       ARDOUR_UI::instance()->reset_focus (this);
 }
 
 bool
@@ -68,9 +70,19 @@ void
 BigClockWindow::on_realize ()
 {
        ArdourWindow::on_realize ();
-       /* (try to) ensure that resizing is possible.
-        */
-       get_window()->set_decorations (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH);
+       /* (try to) ensure that resizing is possible and the window can be moved (and closed) */
+       get_window()->set_decorations (Gdk::DECOR_BORDER | Gdk::DECOR_RESIZEH | Gdk::DECOR_TITLE | Gdk::DECOR_MENU);
+
+       /* try to force a fixed aspect ratio so that we don't distort the font */
+       float aspect = default_size.width/(float)default_size.height;
+       Gdk::Geometry geom;
+
+       geom.min_aspect = aspect;
+       geom.max_aspect = aspect;
+       geom.min_width = -1; /* use requisition */
+       geom.min_height = -1; /* use requisition */
+
+       get_window()->set_geometry_hints (geom, Gdk::WindowHints (Gdk::HINT_ASPECT|Gdk::HINT_MIN_SIZE));
 }
 
 void