the big rework of window management. probably not complete at thsi point, but this...
[ardour.git] / gtk2_ardour / big_clock_window.cc
1 /*
2     Copyright (C) 20002-2013 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 <algorithm>
21 #include <string>
22
23 #include "ardour_ui.h"
24 #include "audio_clock.h"
25 #include "big_clock_window.h"
26 #include "public_editor.h"
27 #include "utils.h"
28
29 #include "i18n.h"
30
31 using std::min;
32 using std::string;
33
34 BigClockWindow::BigClockWindow (AudioClock& c) 
35         : ArdourWindow (_("Big Clock"))
36         , clock (c)
37         , resize_in_progress (false)
38         , original_height (0)
39         , original_width (0)
40         , original_font_size (0)
41 {
42         ARDOUR_UI::Clock.connect (sigc::mem_fun (clock, &AudioClock::set));
43
44         clock.set_corner_radius (0.0);
45         clock.mode_changed.connect (sigc::mem_fun (*this, &BigClockWindow::reset_aspect_ratio));
46
47         set_keep_above (true);
48         set_border_width (0);
49         add (clock);
50         clock.show_all ();
51 }
52
53 void
54 BigClockWindow::on_unmap ()
55 {
56         PublicEditor::instance().reset_focus ();
57 }
58
59 bool
60 BigClockWindow::on_key_press_event (GdkEventKey* ev)
61 {
62         return relay_key_press (ev, this);
63 }
64
65 void
66 BigClockWindow::on_realize ()
67 {
68         int x, y, w, d, h;
69
70         ArdourWindow::on_realize ();
71
72         get_window()->set_decorations (Gdk::DECOR_BORDER|Gdk::DECOR_RESIZEH);
73         get_window()->get_geometry (x, y, w, h, d);
74
75         reset_aspect_ratio ();
76
77         original_height = h;
78         original_width = w;
79
80         Pango::FontDescription fd (clock.get_style()->get_font());
81         original_font_size = fd.get_size ();
82
83         if (!fd.get_size_is_absolute ()) {
84                 original_font_size /= PANGO_SCALE;
85         }
86 }
87
88 void
89 BigClockWindow::on_size_allocate (Gtk::Allocation& alloc)
90 {
91         ArdourWindow::on_size_allocate (alloc);
92
93         if (!resize_in_progress) {
94                 Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &BigClockWindow::text_resizer), 0, 0));
95                 resize_in_progress = true;
96         }
97 }
98
99 void
100 BigClockWindow::reset_aspect_ratio ()
101 {
102         Gtk::Requisition req;
103
104         clock.size_request (req);
105
106         float aspect = req.width/(float)req.height;
107         Gdk::Geometry geom;
108
109         geom.min_aspect = aspect;
110         geom.max_aspect = aspect;
111         
112         set_geometry_hints (clock, geom, Gdk::HINT_ASPECT);
113 }
114
115 bool
116 BigClockWindow::text_resizer (int, int)
117 {
118         resize_in_progress = false;
119
120         Glib::RefPtr<Gdk::Window> win = get_window();
121         Pango::FontDescription fd (clock.get_style()->get_font());
122         int current_size = fd.get_size ();
123         int x, y, w, h, d;
124
125         if (!fd.get_size_is_absolute ()) {
126                 current_size /= PANGO_SCALE;
127         }
128
129         win->get_geometry (x, y, w, h, d);
130
131         double scale  = min (((double) w / (double) original_width),
132                              ((double) h / (double) original_height));
133
134         int size = (int) lrintf (original_font_size * scale);
135
136         if (size != current_size) {
137
138                 string family = fd.get_family();
139                 char buf[family.length()+16];
140                 snprintf (buf, family.length()+16, "%s %d", family.c_str(), size);
141
142                 try {
143                         Pango::FontDescription fd (buf);
144                         Glib::RefPtr<Gtk::RcStyle> rcstyle = clock.get_modifier_style ();
145                         rcstyle->set_font (fd);
146                         clock.modify_style (rcstyle);
147                 }
148
149                 catch (...) {
150                         /* oh well, do nothing */
151                 }
152         }
153
154         return false;
155 }
156