new color utility functions to convert between uint32_t and Gdk::Color
[ardour.git] / gtk2_ardour / utils.cc
1 /*
2     Copyright (C) 2003 Paul Davis
3
4     This program is free software; you an 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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <cstdlib>
25 #include <clocale>
26 #include <cstring>
27 #include <cctype>
28 #include <cmath>
29 #include <list>
30 #include <sys/stat.h>
31 #include <gtkmm/rc.h>
32 #include <gtkmm/window.h>
33 #include <gtkmm/combo.h>
34 #include <gtkmm/label.h>
35 #include <gtkmm/paned.h>
36 #include <gtk/gtkpaned.h>
37 #include <boost/algorithm/string.hpp>
38
39 #include "pbd/basename.h"
40 #include "pbd/file_utils.h"
41 #include "pbd/stacktrace.h"
42
43 #include <gtkmm2ext/utils.h>
44
45 #include "ardour/filesystem_paths.h"
46 #include "ardour/search_paths.h"
47
48 #include "canvas/item.h"
49 #include "canvas/utils.h"
50
51 #include "debug.h"
52 #include "public_editor.h"
53 #include "keyboard.h"
54 #include "utils.h"
55 #include "i18n.h"
56 #include "rgb_macros.h"
57 #include "gui_thread.h"
58 #include "ui_config.h"
59 #include "ardour_dialog.h"
60 #include "ardour_ui.h"
61
62 using namespace std;
63 using namespace Gtk;
64 using namespace Glib;
65 using namespace PBD;
66 using Gtkmm2ext::Keyboard;
67
68 namespace ARDOUR_UI_UTILS {
69         sigc::signal<void>  DPIReset;
70 }
71
72 #ifdef PLATFORM_WINDOWS
73 #define random() rand()
74 #endif
75
76
77 /** Add an element to a menu, settings its sensitivity.
78  * @param m Menu to add to.
79  * @param e Element to add.
80  * @param s true to make sensitive, false to make insensitive
81  */
82 void
83 ARDOUR_UI_UTILS::add_item_with_sensitivity (Menu_Helpers::MenuList& m, Menu_Helpers::MenuElem e, bool s)
84 {
85         m.push_back (e);
86         if (!s) {
87                 m.back().set_sensitive (false);
88         }
89 }
90
91
92 gint
93 ARDOUR_UI_UTILS::just_hide_it (GdkEventAny */*ev*/, Gtk::Window *win)
94 {
95         win->hide ();
96         return 0;
97 }
98
99 /* xpm2rgb copied from nixieclock, which bore the legend:
100
101     nixieclock - a nixie desktop timepiece
102     Copyright (C) 2000 Greg Ercolano, erco@3dsite.com
103
104     and was released under the GPL.
105 */
106
107 unsigned char*
108 ARDOUR_UI_UTILS::xpm2rgb (const char** xpm, uint32_t& w, uint32_t& h)
109 {
110         static long vals[256], val;
111         uint32_t t, x, y, colors, cpp;
112         unsigned char c;
113         unsigned char *savergb, *rgb;
114
115         // PARSE HEADER
116
117         if ( sscanf(xpm[0], "%u%u%u%u", &w, &h, &colors, &cpp) != 4 ) {
118                 error << string_compose (_("bad XPM header %1"), xpm[0])
119                       << endmsg;
120                 return 0;
121         }
122
123         savergb = rgb = (unsigned char*) malloc (h * w * 3);
124
125         // LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION
126         for (t = 0; t < colors; ++t) {
127                 sscanf (xpm[t+1], "%c c #%lx", &c, &val);
128                 vals[c] = val;
129         }
130
131         // COLORMAP -> RGB CONVERSION
132         //    Get low 3 bytes from vals[]
133         //
134
135         const char *p;
136         for (y = h-1; y > 0; --y) {
137
138                 for (p = xpm[1+colors+(h-y-1)], x = 0; x < w; x++, rgb += 3) {
139                         val = vals[(int)*p++];
140                         *(rgb+2) = val & 0xff; val >>= 8;  // 2:B
141                         *(rgb+1) = val & 0xff; val >>= 8;  // 1:G
142                         *(rgb+0) = val & 0xff;             // 0:R
143                 }
144         }
145
146         return (savergb);
147 }
148
149 unsigned char*
150 ARDOUR_UI_UTILS::xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h)
151 {
152         static long vals[256], val;
153         uint32_t t, x, y, colors, cpp;
154         unsigned char c;
155         unsigned char *savergb, *rgb;
156         char transparent;
157
158         // PARSE HEADER
159
160         if ( sscanf(xpm[0], "%u%u%u%u", &w, &h, &colors, &cpp) != 4 ) {
161                 error << string_compose (_("bad XPM header %1"), xpm[0])
162                       << endmsg;
163                 return 0;
164         }
165
166         savergb = rgb = (unsigned char*) malloc (h * w * 4);
167
168         // LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION
169
170         if (strstr (xpm[1], "None")) {
171                 sscanf (xpm[1], "%c", &transparent);
172                 t = 1;
173         } else {
174                 transparent = 0;
175                 t = 0;
176         }
177
178         for (; t < colors; ++t) {
179                 sscanf (xpm[t+1], "%c c #%lx", &c, &val);
180                 vals[c] = val;
181         }
182
183         // COLORMAP -> RGB CONVERSION
184         //    Get low 3 bytes from vals[]
185         //
186
187         const char *p;
188         for (y = h-1; y > 0; --y) {
189
190                 char alpha;
191
192                 for (p = xpm[1+colors+(h-y-1)], x = 0; x < w; x++, rgb += 4) {
193
194                         if (transparent && (*p++ == transparent)) {
195                                 alpha = 0;
196                                 val = 0;
197                         } else {
198                                 alpha = 255;
199                                 val = vals[(int)*p];
200                         }
201
202                         *(rgb+3) = alpha;                  // 3: alpha
203                         *(rgb+2) = val & 0xff; val >>= 8;  // 2:B
204                         *(rgb+1) = val & 0xff; val >>= 8;  // 1:G
205                         *(rgb+0) = val & 0xff;             // 0:R
206                 }
207         }
208
209         return (savergb);
210 }
211
212 /** Returns a Pango::FontDescription given a string describing the font.
213  *
214  * If the returned FontDescription does not specify a family, then
215  * the family is set to "Sans". This mirrors GTK's behaviour in
216  * gtkstyle.c.
217  *
218  * Some environments will force Pango to specify the family
219  * even if it was not specified in the string describing the font.
220  * Such environments should be left unaffected by this function,
221  * since the font family will be left alone.
222  *
223  * There may be other similar font specification enforcement
224  * that we might add here later.
225  */
226 Pango::FontDescription
227 ARDOUR_UI_UTILS::sanitized_font (std::string const& name)
228 {
229         Pango::FontDescription fd (name);
230
231         if (fd.get_family().empty()) {
232                 fd.set_family ("Sans");
233         }
234
235         return fd;
236 }
237
238 Pango::FontDescription
239 ARDOUR_UI_UTILS::get_font_for_style (string widgetname)
240 {
241         Gtk::Window window (WINDOW_TOPLEVEL);
242         Gtk::Label foobar;
243         Glib::RefPtr<Gtk::Style> style;
244
245         window.add (foobar);
246         foobar.set_name (widgetname);
247         foobar.ensure_style();
248
249         style = foobar.get_style ();
250
251         Glib::RefPtr<const Pango::Layout> layout = foobar.get_layout();
252
253         PangoFontDescription *pfd = const_cast<PangoFontDescription *> (pango_layout_get_font_description(const_cast<PangoLayout *>(layout->gobj())));
254
255         if (!pfd) {
256
257                 /* layout inherited its font description from a PangoContext */
258
259                 PangoContext* ctxt = (PangoContext*) pango_layout_get_context (const_cast<PangoLayout*>(layout->gobj()));
260                 pfd =  pango_context_get_font_description (ctxt);
261                 return Pango::FontDescription (pfd); /* make a copy */
262         }
263
264         return Pango::FontDescription (pfd); /* make a copy */
265 }
266
267 Gdk::Color
268 ARDOUR_UI_UTILS::gdk_color_from_rgb (uint32_t rgb)
269 {
270         Gdk::Color c;
271         set_color_from_rgb (c, rgb);
272         return c;
273 }
274
275 Gdk::Color
276 ARDOUR_UI_UTILS::gdk_color_from_rgba (uint32_t rgba)
277 {
278         Gdk::Color c;
279         set_color_from_rgb (c, rgba);
280         return c;
281 }
282
283 void
284 ARDOUR_UI_UTILS::set_color_from_rgb (Gdk::Color& c, uint32_t rgb)
285 {
286         /* Gdk::Color color ranges are 16 bit, so scale from 8 bit by
287            multiplying by 256.
288         */
289         c.set_rgb ((rgb >> 16)*256, ((rgb & 0xff00) >> 8)*256, (rgb & 0xff)*256);
290 }
291
292 void
293 ARDOUR_UI_UTILS::set_color_from_rgba (Gdk::Color& c, uint32_t rgba)
294 {
295         /* Gdk::Color color ranges are 16 bit, so scale from 8 bit by
296            multiplying by 256.
297         */
298         c.set_rgb ((rgba >> 24)*256, ((rgba & 0xff0000) >> 16)*256, ((rgba & 0xff00) >> 8)*256);
299 }
300
301 uint32_t
302 ARDOUR_UI_UTILS::gdk_color_to_rgba (Gdk::Color const& c)
303 {
304         /* since alpha value is not available from a Gdk::Color, it is
305            hardcoded as 0xff (aka 255 or 1.0)
306         */
307
308         const uint32_t r = c.get_red_p () * 255.0;
309         const uint32_t g = c.get_green_p () * 255.0;
310         const uint32_t b = c.get_blue_p () * 255.0;
311         const uint32_t a = 0xff;
312
313         return RGBA_TO_UINT (r,g,b,a);
314 }
315
316
317 bool
318 ARDOUR_UI_UTILS::relay_key_press (GdkEventKey* ev, Gtk::Window* win)
319 {
320         return ARDOUR_UI::instance()->key_event_handler (ev, win);
321 }
322
323 bool
324 ARDOUR_UI_UTILS::emulate_key_event (unsigned int keyval)
325 {
326         GdkDisplay  *display = gtk_widget_get_display (GTK_WIDGET(ARDOUR_UI::instance()->main_window().gobj()));
327         GdkKeymap   *keymap  = gdk_keymap_get_for_display (display);
328         GdkKeymapKey *keymapkey = NULL;
329         gint n_keys;
330
331         if (!gdk_keymap_get_entries_for_keyval(keymap, keyval, &keymapkey, &n_keys)) return false;
332         if (n_keys !=1) { g_free(keymapkey); return false;}
333
334         Gtk::Window& main_window (ARDOUR_UI::instance()->main_window());
335
336         GdkEventKey ev;
337         ev.type = GDK_KEY_PRESS;
338         ev.window = main_window.get_window()->gobj();
339         ev.send_event = FALSE;
340         ev.time = 0;
341         ev.state = 0;
342         ev.keyval = keyval;
343         ev.length = 0;
344         ev.string = const_cast<gchar*> ("");
345         ev.hardware_keycode = keymapkey[0].keycode;
346         ev.group = keymapkey[0].group;
347         g_free(keymapkey);
348
349         relay_key_press (&ev, &main_window);
350         ev.type = GDK_KEY_RELEASE;
351         return relay_key_press(&ev, &main_window);
352 }
353
354 string
355 ARDOUR_UI_UTILS::show_gdk_event_state (int state)
356 {
357         string s;
358         if (state & GDK_SHIFT_MASK) {
359                 s += "+SHIFT";
360         }
361         if (state & GDK_LOCK_MASK) {
362                 s += "+LOCK";
363         }
364         if (state & GDK_CONTROL_MASK) {
365                 s += "+CONTROL";
366         }
367         if (state & GDK_MOD1_MASK) {
368                 s += "+MOD1";
369         }
370         if (state & GDK_MOD2_MASK) {
371                 s += "+MOD2";
372         }
373         if (state & GDK_MOD3_MASK) {
374                 s += "+MOD3";
375         }
376         if (state & GDK_MOD4_MASK) {
377                 s += "+MOD4";
378         }
379         if (state & GDK_MOD5_MASK) {
380                 s += "+MOD5";
381         }
382         if (state & GDK_BUTTON1_MASK) {
383                 s += "+BUTTON1";
384         }
385         if (state & GDK_BUTTON2_MASK) {
386                 s += "+BUTTON2";
387         }
388         if (state & GDK_BUTTON3_MASK) {
389                 s += "+BUTTON3";
390         }
391         if (state & GDK_BUTTON4_MASK) {
392                 s += "+BUTTON4";
393         }
394         if (state & GDK_BUTTON5_MASK) {
395                 s += "+BUTTON5";
396         }
397         if (state & GDK_SUPER_MASK) {
398                 s += "+SUPER";
399         }
400         if (state & GDK_HYPER_MASK) {
401                 s += "+HYPER";
402         }
403         if (state & GDK_META_MASK) {
404                 s += "+META";
405         }
406         if (state & GDK_RELEASE_MASK) {
407                 s += "+RELEASE";
408         }
409
410         return s;
411 }
412
413 Glib::RefPtr<Gdk::Pixbuf>
414 ARDOUR_UI_UTILS::get_xpm (std::string name)
415 {
416         if (!xpm_map[name]) {
417
418                 Searchpath spath(ARDOUR::ardour_data_search_path());
419
420                 spath.add_subdirectory_to_paths("pixmaps");
421
422                 std::string data_file_path;
423
424                 if(!find_file (spath, name, data_file_path)) {
425                         fatal << string_compose (_("cannot find XPM file for %1"), name) << endmsg;
426                 }
427
428                 try {
429                         xpm_map[name] =  Gdk::Pixbuf::create_from_file (data_file_path);
430                 } catch(const Glib::Error& e)   {
431                         warning << "Caught Glib::Error: " << e.what() << endmsg;
432                 }
433         }
434
435         return xpm_map[name];
436 }
437
438 void
439 ARDOUR_UI_UTILS::get_color_themes (map<std::string,std::string>& themes)
440 {
441         Searchpath spath(ARDOUR::theme_search_path());
442
443         for (vector<string>::iterator s = spath.begin(); s != spath.end(); ++s) {
444
445                 vector<string> entries;
446
447                 find_files_matching_pattern (entries, *s, string ("*") + UIConfiguration::color_file_suffix);
448
449                 for (vector<string>::iterator e = entries.begin(); e != entries.end(); ++e) {
450
451                         XMLTree tree;
452
453                         tree.read ((*e).c_str());
454                         XMLNode* root = tree.root();
455
456                         if (!root || root->name() != X_("Ardour")) {
457                                 continue;
458                         }
459
460                         XMLProperty const* prop = root->property (X_("theme-name"));
461
462                         if (!prop) {
463                                 continue;
464                         }
465
466                         themes.insert (make_pair (prop->value(), Glib::filename_to_utf8 (basename_nosuffix(*e))));
467                 }
468         }
469 }
470
471 vector<string>
472 ARDOUR_UI_UTILS::get_icon_sets ()
473 {
474         Searchpath spath(ARDOUR::ardour_data_search_path());
475         spath.add_subdirectory_to_paths ("icons");
476         vector<string> r;
477
478         r.push_back (_("default"));
479
480         for (vector<string>::iterator s = spath.begin(); s != spath.end(); ++s) {
481
482                 vector<string> entries;
483
484                 get_paths (entries, *s, false, false);
485
486                 for (vector<string>::iterator e = entries.begin(); e != entries.end(); ++e) {
487                         if (Glib::file_test (*e, Glib::FILE_TEST_IS_DIR)) {
488                                 r.push_back (Glib::filename_to_utf8 (Glib::path_get_basename(*e)));
489                         }
490                 }
491         }
492
493         return r;
494 }
495
496 std::string
497 ARDOUR_UI_UTILS::get_icon_path (const char* cname, string icon_set, bool is_image)
498 {
499         std::string data_file_path;
500         string name = cname;
501
502         if (is_image) {
503                 name += X_(".png");
504         }
505
506         Searchpath spath(ARDOUR::ardour_data_search_path());
507
508         if (!icon_set.empty() && icon_set != _("default")) {
509
510                 /* add "icons/icon_set" but .. not allowed to add both of these at once */
511                 spath.add_subdirectory_to_paths ("icons");
512                 spath.add_subdirectory_to_paths (icon_set);
513
514                 find_file (spath, name, data_file_path);
515         } else {
516                 spath.add_subdirectory_to_paths ("icons");
517                 find_file (spath, name, data_file_path);
518         }
519
520         if (data_file_path.empty()) {
521                 Searchpath rc (ARDOUR::ardour_data_search_path());
522                 rc.add_subdirectory_to_paths ("resources");
523                 find_file (rc, name, data_file_path);
524         }
525
526         if (is_image && data_file_path.empty()) {
527
528                 if (!icon_set.empty() && icon_set != _("default")) {
529                         warning << string_compose (_("icon \"%1\" not found for icon set \"%2\", fallback to default"), cname, icon_set) << endmsg;
530                 }
531
532                 Searchpath def (ARDOUR::ardour_data_search_path());
533                 def.add_subdirectory_to_paths ("icons");
534
535                 if (!find_file (def, name, data_file_path)) {
536                         fatal << string_compose (_("cannot find icon image for %1 using %2"), name, spath.to_string()) << endmsg;
537                         abort(); /*NOTREACHED*/
538                 }
539         }
540
541         return data_file_path;
542 }
543
544 Glib::RefPtr<Gdk::Pixbuf>
545 ARDOUR_UI_UTILS::get_icon (const char* cname, string icon_set)
546 {
547         Glib::RefPtr<Gdk::Pixbuf> img;
548         try {
549                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname, icon_set));
550         } catch (const Gdk::PixbufError &e) {
551                 cerr << "Caught PixbufError: " << e.what() << endl;
552         } catch (...) {
553                 error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
554         }
555
556         return img;
557 }
558
559 namespace ARDOUR_UI_UTILS {
560 Glib::RefPtr<Gdk::Pixbuf>
561 get_icon (const char* cname)
562 {
563         Glib::RefPtr<Gdk::Pixbuf> img;
564         try {
565                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname));
566         } catch (const Gdk::PixbufError &e) {
567                 cerr << "Caught PixbufError: " << e.what() << endl;
568         } catch (...) {
569                 error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
570         }
571
572         return img;
573 }
574 }
575
576 string
577 ARDOUR_UI_UTILS::longest (vector<string>& strings)
578 {
579         if (strings.empty()) {
580                 return string ("");
581         }
582
583         vector<string>::iterator longest = strings.begin();
584         string::size_type longest_length = (*longest).length();
585
586         vector<string>::iterator i = longest;
587         ++i;
588
589         while (i != strings.end()) {
590
591                 string::size_type len = (*i).length();
592
593                 if (len > longest_length) {
594                         longest = i;
595                         longest_length = len;
596                 }
597
598                 ++i;
599         }
600
601         return *longest;
602 }
603
604 bool
605 ARDOUR_UI_UTILS::key_is_legal_for_numeric_entry (guint keyval)
606 {
607         /* we assume that this does not change over the life of the process
608          */
609
610         static int comma_decimal = -1;
611
612         switch (keyval) {
613         case GDK_period:
614         case GDK_comma:
615                 if (comma_decimal < 0) {
616                         std::lconv* lc = std::localeconv();
617                         if (strchr (lc->decimal_point, ',') != 0) {
618                                 comma_decimal = 1;
619                         } else {
620                                 comma_decimal = 0;
621                         }
622                 }
623                 break;
624         default:
625                 break;
626         }
627
628         switch (keyval) {
629         case GDK_decimalpoint:
630         case GDK_KP_Separator:
631                 return true;
632
633         case GDK_period:
634                 if (comma_decimal) {
635                         return false;
636                 } else {
637                         return true;
638                 }
639                 break;
640         case GDK_comma:
641                 if (comma_decimal) {
642                         return true;
643                 } else {
644                         return false;
645                 }
646                 break;
647         case GDK_minus:
648         case GDK_plus:
649         case GDK_0:
650         case GDK_1:
651         case GDK_2:
652         case GDK_3:
653         case GDK_4:
654         case GDK_5:
655         case GDK_6:
656         case GDK_7:
657         case GDK_8:
658         case GDK_9:
659         case GDK_KP_Add:
660         case GDK_KP_Subtract:
661         case GDK_KP_Decimal:
662         case GDK_KP_0:
663         case GDK_KP_1:
664         case GDK_KP_2:
665         case GDK_KP_3:
666         case GDK_KP_4:
667         case GDK_KP_5:
668         case GDK_KP_6:
669         case GDK_KP_7:
670         case GDK_KP_8:
671         case GDK_KP_9:
672         case GDK_Return:
673         case GDK_BackSpace:
674         case GDK_Delete:
675         case GDK_KP_Enter:
676         case GDK_Home:
677         case GDK_End:
678         case GDK_Left:
679         case GDK_Right:
680                 return true;
681
682         default:
683                 break;
684         }
685
686         return false;
687 }
688
689 void
690 ARDOUR_UI_UTILS::resize_window_to_proportion_of_monitor (Gtk::Window* window, int max_width, int max_height)
691 {
692         Glib::RefPtr<Gdk::Screen> screen = window->get_screen ();
693         Gdk::Rectangle monitor_rect;
694         screen->get_monitor_geometry (0, monitor_rect);
695
696         int const w = std::min (int (monitor_rect.get_width() * 0.8), max_width);
697         int const h = std::min (int (monitor_rect.get_height() * 0.8), max_height);
698
699         window->resize (w, h);
700 }
701
702
703 /** Replace _ with __ in a string; for use with menu item text to make underscores displayed correctly */
704 string
705 ARDOUR_UI_UTILS::escape_underscores (string const & s)
706 {
707         string o;
708         string::size_type const N = s.length ();
709
710         for (string::size_type i = 0; i < N; ++i) {
711                 if (s[i] == '_') {
712                         o += "__";
713                 } else {
714                         o += s[i];
715                 }
716         }
717
718         return o;
719 }
720
721 Gdk::Color
722 ARDOUR_UI_UTILS::unique_random_color (list<Gdk::Color>& used_colors)
723 {
724         Gdk::Color newcolor;
725
726         while (1) {
727
728                 double h, s, v;
729
730                 h = fmod (random(), 360.0);
731                 s = (random() % 65535) / 65535.0;
732                 v = (random() % 65535) / 65535.0;
733
734                 s = min (0.5, s); /* not too saturated */
735                 v = max (0.9, v);  /* not too bright */
736                 newcolor.set_hsv (h, s, v);
737
738                 if (used_colors.size() == 0) {
739                         used_colors.push_back (newcolor);
740                         return newcolor;
741                 }
742
743                 for (list<Gdk::Color>::iterator i = used_colors.begin(); i != used_colors.end(); ++i) {
744                   Gdk::Color c = *i;
745                         float rdelta, bdelta, gdelta;
746
747                         rdelta = newcolor.get_red() - c.get_red();
748                         bdelta = newcolor.get_blue() - c.get_blue();
749                         gdelta = newcolor.get_green() - c.get_green();
750
751                         if (sqrt (rdelta*rdelta + bdelta*bdelta + gdelta*gdelta) > 25.0) {
752                                 /* different enough */
753                                 used_colors.push_back (newcolor);
754                                 return newcolor;
755                         }
756                 }
757
758                 /* XXX need throttle here to make sure we don't spin for ever */
759         }
760 }
761
762 string
763 ARDOUR_UI_UTILS::rate_as_string (float r)
764 {
765         char buf[32];
766         if (fmod (r, 1000.0f)) {
767                 snprintf (buf, sizeof (buf), "%.1f kHz", r/1000.0);
768         } else {
769                 snprintf (buf, sizeof (buf), "%.0f kHz", r/1000.0);
770         }
771         return buf;
772 }
773
774 bool
775 ARDOUR_UI_UTILS::windows_overlap (Gtk::Window *a, Gtk::Window *b)
776 {
777
778         if (!a || !b) {
779                 return false;
780         }
781         if (a->get_screen() == b->get_screen()) {
782                 gint ex, ey, ew, eh;
783                 gint mx, my, mw, mh;
784
785                 a->get_position (ex, ey);
786                 a->get_size (ew, eh);
787                 b->get_position (mx, my);
788                 b->get_size (mw, mh);
789
790                 GdkRectangle e;
791                 GdkRectangle m;
792                 GdkRectangle r;
793
794                 e.x = ex;
795                 e.y = ey;
796                 e.width = ew;
797                 e.height = eh;
798
799                 m.x = mx;
800                 m.y = my;
801                 m.width = mw;
802                 m.height = mh;
803
804                 if (gdk_rectangle_intersect (&e, &m, &r)) {
805                         return true;
806                 }
807         }
808         return false;
809 }
810
811 bool
812 ARDOUR_UI_UTILS::overwrite_file_dialog (Gtk::Window& parent, string title, string text)
813 {
814         ArdourDialog dialog (parent, title, true);
815         Label label (text);
816
817         dialog.get_vbox()->pack_start (label, true, true);
818         dialog.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
819         dialog.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
820         dialog.show_all ();
821
822         switch (dialog.run()) {
823         case RESPONSE_ACCEPT:
824                 return true;
825         case RESPONSE_CANCEL:
826         default:
827                 return false;
828         }
829 }