c1de612c9f95b395118ba25e4ca9a5440f862875
[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 void
268 ARDOUR_UI_UTILS::set_color_from_rgb (Gdk::Color& c, uint32_t rgb)
269 {
270         /* Gdk::Color color ranges are 16 bit, so scale from 8 bit by
271            multiplying by 256.
272         */
273         c.set_rgb ((rgb >> 16)*256, ((rgb & 0xff00) >> 8)*256, (rgb & 0xff)*256);
274 }
275
276 void
277 ARDOUR_UI_UTILS::set_color_from_rgba (Gdk::Color& c, uint32_t rgba)
278 {
279         /* Gdk::Color color ranges are 16 bit, so scale from 8 bit by
280            multiplying by 256.
281         */
282         c.set_rgb ((rgba >> 24)*256, ((rgba & 0xff0000) >> 16)*256, ((rgba & 0xff00) >> 8)*256);
283 }
284
285 uint32_t
286 ARDOUR_UI_UTILS::gdk_color_to_rgba (Gdk::Color const& c)
287 {
288         /* since alpha value is not available from a Gdk::Color, it is
289            hardcoded as 0xff (aka 255 or 1.0)
290         */
291
292         const uint32_t r = c.get_red_p () * 255.0;
293         const uint32_t g = c.get_green_p () * 255.0;
294         const uint32_t b = c.get_blue_p () * 255.0;
295         const uint32_t a = 0xff;
296
297         return RGBA_TO_UINT (r,g,b,a);
298 }
299
300
301 bool
302 ARDOUR_UI_UTILS::relay_key_press (GdkEventKey* ev, Gtk::Window* win)
303 {
304         return ARDOUR_UI::instance()->key_event_handler (ev, win);
305 }
306
307 bool
308 ARDOUR_UI_UTILS::emulate_key_event (unsigned int keyval)
309 {
310         GdkDisplay  *display = gtk_widget_get_display (GTK_WIDGET(ARDOUR_UI::instance()->main_window().gobj()));
311         GdkKeymap   *keymap  = gdk_keymap_get_for_display (display);
312         GdkKeymapKey *keymapkey = NULL;
313         gint n_keys;
314
315         if (!gdk_keymap_get_entries_for_keyval(keymap, keyval, &keymapkey, &n_keys)) return false;
316         if (n_keys !=1) { g_free(keymapkey); return false;}
317
318         Gtk::Window& main_window (ARDOUR_UI::instance()->main_window());
319
320         GdkEventKey ev;
321         ev.type = GDK_KEY_PRESS;
322         ev.window = main_window.get_window()->gobj();
323         ev.send_event = FALSE;
324         ev.time = 0;
325         ev.state = 0;
326         ev.keyval = keyval;
327         ev.length = 0;
328         ev.string = const_cast<gchar*> ("");
329         ev.hardware_keycode = keymapkey[0].keycode;
330         ev.group = keymapkey[0].group;
331         g_free(keymapkey);
332
333         relay_key_press (&ev, &main_window);
334         ev.type = GDK_KEY_RELEASE;
335         return relay_key_press(&ev, &main_window);
336 }
337
338 string
339 ARDOUR_UI_UTILS::show_gdk_event_state (int state)
340 {
341         string s;
342         if (state & GDK_SHIFT_MASK) {
343                 s += "+SHIFT";
344         }
345         if (state & GDK_LOCK_MASK) {
346                 s += "+LOCK";
347         }
348         if (state & GDK_CONTROL_MASK) {
349                 s += "+CONTROL";
350         }
351         if (state & GDK_MOD1_MASK) {
352                 s += "+MOD1";
353         }
354         if (state & GDK_MOD2_MASK) {
355                 s += "+MOD2";
356         }
357         if (state & GDK_MOD3_MASK) {
358                 s += "+MOD3";
359         }
360         if (state & GDK_MOD4_MASK) {
361                 s += "+MOD4";
362         }
363         if (state & GDK_MOD5_MASK) {
364                 s += "+MOD5";
365         }
366         if (state & GDK_BUTTON1_MASK) {
367                 s += "+BUTTON1";
368         }
369         if (state & GDK_BUTTON2_MASK) {
370                 s += "+BUTTON2";
371         }
372         if (state & GDK_BUTTON3_MASK) {
373                 s += "+BUTTON3";
374         }
375         if (state & GDK_BUTTON4_MASK) {
376                 s += "+BUTTON4";
377         }
378         if (state & GDK_BUTTON5_MASK) {
379                 s += "+BUTTON5";
380         }
381         if (state & GDK_SUPER_MASK) {
382                 s += "+SUPER";
383         }
384         if (state & GDK_HYPER_MASK) {
385                 s += "+HYPER";
386         }
387         if (state & GDK_META_MASK) {
388                 s += "+META";
389         }
390         if (state & GDK_RELEASE_MASK) {
391                 s += "+RELEASE";
392         }
393
394         return s;
395 }
396
397 Glib::RefPtr<Gdk::Pixbuf>
398 ARDOUR_UI_UTILS::get_xpm (std::string name)
399 {
400         if (!xpm_map[name]) {
401
402                 Searchpath spath(ARDOUR::ardour_data_search_path());
403
404                 spath.add_subdirectory_to_paths("pixmaps");
405
406                 std::string data_file_path;
407
408                 if(!find_file (spath, name, data_file_path)) {
409                         fatal << string_compose (_("cannot find XPM file for %1"), name) << endmsg;
410                 }
411
412                 try {
413                         xpm_map[name] =  Gdk::Pixbuf::create_from_file (data_file_path);
414                 } catch(const Glib::Error& e)   {
415                         warning << "Caught Glib::Error: " << e.what() << endmsg;
416                 }
417         }
418
419         return xpm_map[name];
420 }
421
422 void
423 ARDOUR_UI_UTILS::get_color_themes (map<std::string,std::string>& themes)
424 {
425         Searchpath spath(ARDOUR::theme_search_path());
426
427         for (vector<string>::iterator s = spath.begin(); s != spath.end(); ++s) {
428
429                 vector<string> entries;
430
431                 find_files_matching_pattern (entries, *s, string ("*") + UIConfiguration::color_file_suffix);
432
433                 for (vector<string>::iterator e = entries.begin(); e != entries.end(); ++e) {
434
435                         XMLTree tree;
436
437                         tree.read ((*e).c_str());
438                         XMLNode* root = tree.root();
439
440                         if (!root || root->name() != X_("Ardour")) {
441                                 continue;
442                         }
443
444                         XMLProperty const* prop = root->property (X_("theme-name"));
445
446                         if (!prop) {
447                                 continue;
448                         }
449
450                         themes.insert (make_pair (prop->value(), Glib::filename_to_utf8 (basename_nosuffix(*e))));
451                 }
452         }
453 }
454
455 vector<string>
456 ARDOUR_UI_UTILS::get_icon_sets ()
457 {
458         Searchpath spath(ARDOUR::ardour_data_search_path());
459         spath.add_subdirectory_to_paths ("icons");
460         vector<string> r;
461
462         r.push_back (_("default"));
463
464         for (vector<string>::iterator s = spath.begin(); s != spath.end(); ++s) {
465
466                 vector<string> entries;
467
468                 get_paths (entries, *s, false, false);
469
470                 for (vector<string>::iterator e = entries.begin(); e != entries.end(); ++e) {
471                         if (Glib::file_test (*e, Glib::FILE_TEST_IS_DIR)) {
472                                 r.push_back (Glib::filename_to_utf8 (Glib::path_get_basename(*e)));
473                         }
474                 }
475         }
476
477         return r;
478 }
479
480 std::string
481 ARDOUR_UI_UTILS::get_icon_path (const char* cname, string icon_set, bool is_image)
482 {
483         std::string data_file_path;
484         string name = cname;
485
486         if (is_image) {
487                 name += X_(".png");
488         }
489
490         Searchpath spath(ARDOUR::ardour_data_search_path());
491
492         if (!icon_set.empty() && icon_set != _("default")) {
493
494                 /* add "icons/icon_set" but .. not allowed to add both of these at once */
495                 spath.add_subdirectory_to_paths ("icons");
496                 spath.add_subdirectory_to_paths (icon_set);
497
498                 find_file (spath, name, data_file_path);
499         } else {
500                 spath.add_subdirectory_to_paths ("icons");
501                 find_file (spath, name, data_file_path);
502         }
503
504         if (data_file_path.empty()) {
505                 Searchpath rc (ARDOUR::ardour_data_search_path());
506                 rc.add_subdirectory_to_paths ("resources");
507                 find_file (rc, name, data_file_path);
508         }
509
510         if (is_image && data_file_path.empty()) {
511
512                 if (!icon_set.empty() && icon_set != _("default")) {
513                         warning << string_compose (_("icon \"%1\" not found for icon set \"%2\", fallback to default"), cname, icon_set) << endmsg;
514                 }
515
516                 Searchpath def (ARDOUR::ardour_data_search_path());
517                 def.add_subdirectory_to_paths ("icons");
518
519                 if (!find_file (def, name, data_file_path)) {
520                         fatal << string_compose (_("cannot find icon image for %1 using %2"), name, spath.to_string()) << endmsg;
521                         abort(); /*NOTREACHED*/
522                 }
523         }
524
525         return data_file_path;
526 }
527
528 Glib::RefPtr<Gdk::Pixbuf>
529 ARDOUR_UI_UTILS::get_icon (const char* cname, string icon_set)
530 {
531         Glib::RefPtr<Gdk::Pixbuf> img;
532         try {
533                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname, icon_set));
534         } catch (const Gdk::PixbufError &e) {
535                 cerr << "Caught PixbufError: " << e.what() << endl;
536         } catch (...) {
537                 error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
538         }
539
540         return img;
541 }
542
543 namespace ARDOUR_UI_UTILS {
544 Glib::RefPtr<Gdk::Pixbuf>
545 get_icon (const char* cname)
546 {
547         Glib::RefPtr<Gdk::Pixbuf> img;
548         try {
549                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname));
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
560 string
561 ARDOUR_UI_UTILS::longest (vector<string>& strings)
562 {
563         if (strings.empty()) {
564                 return string ("");
565         }
566
567         vector<string>::iterator longest = strings.begin();
568         string::size_type longest_length = (*longest).length();
569
570         vector<string>::iterator i = longest;
571         ++i;
572
573         while (i != strings.end()) {
574
575                 string::size_type len = (*i).length();
576
577                 if (len > longest_length) {
578                         longest = i;
579                         longest_length = len;
580                 }
581
582                 ++i;
583         }
584
585         return *longest;
586 }
587
588 bool
589 ARDOUR_UI_UTILS::key_is_legal_for_numeric_entry (guint keyval)
590 {
591         /* we assume that this does not change over the life of the process
592          */
593
594         static int comma_decimal = -1;
595
596         switch (keyval) {
597         case GDK_period:
598         case GDK_comma:
599                 if (comma_decimal < 0) {
600                         std::lconv* lc = std::localeconv();
601                         if (strchr (lc->decimal_point, ',') != 0) {
602                                 comma_decimal = 1;
603                         } else {
604                                 comma_decimal = 0;
605                         }
606                 }
607                 break;
608         default:
609                 break;
610         }
611
612         switch (keyval) {
613         case GDK_decimalpoint:
614         case GDK_KP_Separator:
615                 return true;
616
617         case GDK_period:
618                 if (comma_decimal) {
619                         return false;
620                 } else {
621                         return true;
622                 }
623                 break;
624         case GDK_comma:
625                 if (comma_decimal) {
626                         return true;
627                 } else {
628                         return false;
629                 }
630                 break;
631         case GDK_minus:
632         case GDK_plus:
633         case GDK_0:
634         case GDK_1:
635         case GDK_2:
636         case GDK_3:
637         case GDK_4:
638         case GDK_5:
639         case GDK_6:
640         case GDK_7:
641         case GDK_8:
642         case GDK_9:
643         case GDK_KP_Add:
644         case GDK_KP_Subtract:
645         case GDK_KP_Decimal:
646         case GDK_KP_0:
647         case GDK_KP_1:
648         case GDK_KP_2:
649         case GDK_KP_3:
650         case GDK_KP_4:
651         case GDK_KP_5:
652         case GDK_KP_6:
653         case GDK_KP_7:
654         case GDK_KP_8:
655         case GDK_KP_9:
656         case GDK_Return:
657         case GDK_BackSpace:
658         case GDK_Delete:
659         case GDK_KP_Enter:
660         case GDK_Home:
661         case GDK_End:
662         case GDK_Left:
663         case GDK_Right:
664                 return true;
665
666         default:
667                 break;
668         }
669
670         return false;
671 }
672
673 void
674 ARDOUR_UI_UTILS::resize_window_to_proportion_of_monitor (Gtk::Window* window, int max_width, int max_height)
675 {
676         Glib::RefPtr<Gdk::Screen> screen = window->get_screen ();
677         Gdk::Rectangle monitor_rect;
678         screen->get_monitor_geometry (0, monitor_rect);
679
680         int const w = std::min (int (monitor_rect.get_width() * 0.8), max_width);
681         int const h = std::min (int (monitor_rect.get_height() * 0.8), max_height);
682
683         window->resize (w, h);
684 }
685
686
687 /** Replace _ with __ in a string; for use with menu item text to make underscores displayed correctly */
688 string
689 ARDOUR_UI_UTILS::escape_underscores (string const & s)
690 {
691         string o;
692         string::size_type const N = s.length ();
693
694         for (string::size_type i = 0; i < N; ++i) {
695                 if (s[i] == '_') {
696                         o += "__";
697                 } else {
698                         o += s[i];
699                 }
700         }
701
702         return o;
703 }
704
705 Gdk::Color
706 ARDOUR_UI_UTILS::unique_random_color (list<Gdk::Color>& used_colors)
707 {
708         Gdk::Color newcolor;
709
710         while (1) {
711
712                 double h, s, v;
713
714                 h = fmod (random(), 360.0);
715                 s = (random() % 65535) / 65535.0;
716                 v = (random() % 65535) / 65535.0;
717
718                 s = min (0.5, s); /* not too saturated */
719                 v = max (0.9, v);  /* not too bright */
720                 newcolor.set_hsv (h, s, v);
721
722                 if (used_colors.size() == 0) {
723                         used_colors.push_back (newcolor);
724                         return newcolor;
725                 }
726
727                 for (list<Gdk::Color>::iterator i = used_colors.begin(); i != used_colors.end(); ++i) {
728                   Gdk::Color c = *i;
729                         float rdelta, bdelta, gdelta;
730
731                         rdelta = newcolor.get_red() - c.get_red();
732                         bdelta = newcolor.get_blue() - c.get_blue();
733                         gdelta = newcolor.get_green() - c.get_green();
734
735                         if (sqrt (rdelta*rdelta + bdelta*bdelta + gdelta*gdelta) > 25.0) {
736                                 /* different enough */
737                                 used_colors.push_back (newcolor);
738                                 return newcolor;
739                         }
740                 }
741
742                 /* XXX need throttle here to make sure we don't spin for ever */
743         }
744 }
745
746 string
747 ARDOUR_UI_UTILS::rate_as_string (float r)
748 {
749         char buf[32];
750         if (fmod (r, 1000.0f)) {
751                 snprintf (buf, sizeof (buf), "%.1f kHz", r/1000.0);
752         } else {
753                 snprintf (buf, sizeof (buf), "%.0f kHz", r/1000.0);
754         }
755         return buf;
756 }
757
758 bool
759 ARDOUR_UI_UTILS::windows_overlap (Gtk::Window *a, Gtk::Window *b)
760 {
761
762         if (!a || !b) {
763                 return false;
764         }
765         if (a->get_screen() == b->get_screen()) {
766                 gint ex, ey, ew, eh;
767                 gint mx, my, mw, mh;
768
769                 a->get_position (ex, ey);
770                 a->get_size (ew, eh);
771                 b->get_position (mx, my);
772                 b->get_size (mw, mh);
773
774                 GdkRectangle e;
775                 GdkRectangle m;
776                 GdkRectangle r;
777
778                 e.x = ex;
779                 e.y = ey;
780                 e.width = ew;
781                 e.height = eh;
782
783                 m.x = mx;
784                 m.y = my;
785                 m.width = mw;
786                 m.height = mh;
787
788                 if (gdk_rectangle_intersect (&e, &m, &r)) {
789                         return true;
790                 }
791         }
792         return false;
793 }
794
795 bool
796 ARDOUR_UI_UTILS::overwrite_file_dialog (Gtk::Window& parent, string title, string text)
797 {
798         ArdourDialog dialog (parent, title, true);
799         Label label (text);
800
801         dialog.get_vbox()->pack_start (label, true, true);
802         dialog.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
803         dialog.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
804         dialog.show_all ();
805
806         switch (dialog.run()) {
807         case RESPONSE_ACCEPT:
808                 return true;
809         case RESPONSE_CANCEL:
810         default:
811                 return false;
812         }
813 }