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