a few more Location related lua bindings
[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);
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                         themes.insert (make_pair (prop->value(), Glib::filename_to_utf8 (basename_nosuffix(*e))));
407                 }
408         }
409 }
410
411 vector<string>
412 ARDOUR_UI_UTILS::get_icon_sets ()
413 {
414         Searchpath spath(ARDOUR::ardour_data_search_path());
415         spath.add_subdirectory_to_paths ("icons");
416         vector<string> r;
417
418         r.push_back (_("default"));
419
420         for (vector<string>::iterator s = spath.begin(); s != spath.end(); ++s) {
421
422                 vector<string> entries;
423
424                 get_paths (entries, *s, false, false);
425
426                 for (vector<string>::iterator e = entries.begin(); e != entries.end(); ++e) {
427                         if (Glib::file_test (*e, Glib::FILE_TEST_IS_DIR)) {
428                                 r.push_back (Glib::filename_to_utf8 (Glib::path_get_basename(*e)));
429                         }
430                 }
431         }
432
433         return r;
434 }
435
436 std::string
437 ARDOUR_UI_UTILS::get_icon_path (const char* cname, string icon_set, bool is_image)
438 {
439         std::string data_file_path;
440         string name = cname;
441
442         if (is_image) {
443                 name += X_(".png");
444         }
445
446         Searchpath spath(ARDOUR::ardour_data_search_path());
447
448         if (!icon_set.empty() && icon_set != _("default")) {
449
450                 /* add "icons/icon_set" but .. not allowed to add both of these at once */
451                 spath.add_subdirectory_to_paths ("icons");
452                 spath.add_subdirectory_to_paths (icon_set);
453
454                 find_file (spath, name, data_file_path);
455         } else {
456                 spath.add_subdirectory_to_paths ("icons");
457                 find_file (spath, name, data_file_path);
458         }
459
460         if (data_file_path.empty()) {
461                 Searchpath rc (ARDOUR::ardour_data_search_path());
462                 rc.add_subdirectory_to_paths ("resources");
463                 find_file (rc, name, data_file_path);
464         }
465
466         if (is_image && data_file_path.empty()) {
467
468                 if (!icon_set.empty() && icon_set != _("default")) {
469                         warning << string_compose (_("icon \"%1\" not found for icon set \"%2\", fallback to default"), cname, icon_set) << endmsg;
470                 }
471
472                 Searchpath def (ARDOUR::ardour_data_search_path());
473                 def.add_subdirectory_to_paths ("icons");
474
475                 if (!find_file (def, name, data_file_path)) {
476                         fatal << string_compose (_("cannot find icon image for %1 using %2"), name, spath.to_string()) << endmsg;
477                         abort(); /*NOTREACHED*/
478                 }
479         }
480
481         return data_file_path;
482 }
483
484 Glib::RefPtr<Gdk::Pixbuf>
485 ARDOUR_UI_UTILS::get_icon (const char* cname, string icon_set)
486 {
487         Glib::RefPtr<Gdk::Pixbuf> img;
488         try {
489                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname, icon_set));
490         } catch (const Gdk::PixbufError &e) {
491                 cerr << "Caught PixbufError: " << e.what() << endl;
492         } catch (...) {
493                 error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
494         }
495
496         return img;
497 }
498
499 namespace ARDOUR_UI_UTILS {
500 Glib::RefPtr<Gdk::Pixbuf>
501 get_icon (const char* cname)
502 {
503         Glib::RefPtr<Gdk::Pixbuf> img;
504         try {
505                 img = Gdk::Pixbuf::create_from_file (get_icon_path (cname));
506         } catch (const Gdk::PixbufError &e) {
507                 cerr << "Caught PixbufError: " << e.what() << endl;
508         } catch (...) {
509                 error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
510         }
511
512         return img;
513 }
514 }
515
516 string
517 ARDOUR_UI_UTILS::longest (vector<string>& strings)
518 {
519         if (strings.empty()) {
520                 return string ("");
521         }
522
523         vector<string>::iterator longest = strings.begin();
524         string::size_type longest_length = (*longest).length();
525
526         vector<string>::iterator i = longest;
527         ++i;
528
529         while (i != strings.end()) {
530
531                 string::size_type len = (*i).length();
532
533                 if (len > longest_length) {
534                         longest = i;
535                         longest_length = len;
536                 }
537
538                 ++i;
539         }
540
541         return *longest;
542 }
543
544 bool
545 ARDOUR_UI_UTILS::key_is_legal_for_numeric_entry (guint keyval)
546 {
547         /* we assume that this does not change over the life of the process
548          */
549
550         static int comma_decimal = -1;
551
552         switch (keyval) {
553         case GDK_period:
554         case GDK_comma:
555                 if (comma_decimal < 0) {
556                         std::lconv* lc = std::localeconv();
557                         if (strchr (lc->decimal_point, ',') != 0) {
558                                 comma_decimal = 1;
559                         } else {
560                                 comma_decimal = 0;
561                         }
562                 }
563                 break;
564         default:
565                 break;
566         }
567
568         switch (keyval) {
569         case GDK_decimalpoint:
570         case GDK_KP_Separator:
571                 return true;
572
573         case GDK_period:
574                 if (comma_decimal) {
575                         return false;
576                 } else {
577                         return true;
578                 }
579                 break;
580         case GDK_comma:
581                 if (comma_decimal) {
582                         return true;
583                 } else {
584                         return false;
585                 }
586                 break;
587         case GDK_minus:
588         case GDK_plus:
589         case GDK_0:
590         case GDK_1:
591         case GDK_2:
592         case GDK_3:
593         case GDK_4:
594         case GDK_5:
595         case GDK_6:
596         case GDK_7:
597         case GDK_8:
598         case GDK_9:
599         case GDK_KP_Add:
600         case GDK_KP_Subtract:
601         case GDK_KP_Decimal:
602         case GDK_KP_0:
603         case GDK_KP_1:
604         case GDK_KP_2:
605         case GDK_KP_3:
606         case GDK_KP_4:
607         case GDK_KP_5:
608         case GDK_KP_6:
609         case GDK_KP_7:
610         case GDK_KP_8:
611         case GDK_KP_9:
612         case GDK_Return:
613         case GDK_BackSpace:
614         case GDK_Delete:
615         case GDK_KP_Enter:
616         case GDK_Home:
617         case GDK_End:
618         case GDK_Left:
619         case GDK_Right:
620                 return true;
621
622         default:
623                 break;
624         }
625
626         return false;
627 }
628
629 void
630 ARDOUR_UI_UTILS::resize_window_to_proportion_of_monitor (Gtk::Window* window, int max_width, int max_height)
631 {
632         Glib::RefPtr<Gdk::Screen> screen = window->get_screen ();
633         Gdk::Rectangle monitor_rect;
634         screen->get_monitor_geometry (0, monitor_rect);
635
636         int const w = std::min (int (monitor_rect.get_width() * 0.8), max_width);
637         int const h = std::min (int (monitor_rect.get_height() * 0.8), max_height);
638
639         window->resize (w, h);
640 }
641
642
643 /** Replace _ with __ in a string; for use with menu item text to make underscores displayed correctly */
644 string
645 ARDOUR_UI_UTILS::escape_underscores (string const & s)
646 {
647         string o;
648         string::size_type const N = s.length ();
649
650         for (string::size_type i = 0; i < N; ++i) {
651                 if (s[i] == '_') {
652                         o += "__";
653                 } else {
654                         o += s[i];
655                 }
656         }
657
658         return o;
659 }
660
661 Gdk::Color
662 ARDOUR_UI_UTILS::unique_random_color (list<Gdk::Color>& used_colors)
663 {
664         Gdk::Color newcolor;
665
666         while (1) {
667
668                 double h, s, v;
669
670                 h = fmod (random(), 360.0);
671                 s = (random() % 65535) / 65535.0;
672                 v = (random() % 65535) / 65535.0;
673
674                 s = min (0.5, s); /* not too saturated */
675                 v = max (0.9, v);  /* not too bright */
676                 newcolor.set_hsv (h, s, v);
677
678                 if (used_colors.size() == 0) {
679                         used_colors.push_back (newcolor);
680                         return newcolor;
681                 }
682
683                 for (list<Gdk::Color>::iterator i = used_colors.begin(); i != used_colors.end(); ++i) {
684                   Gdk::Color c = *i;
685                         float rdelta, bdelta, gdelta;
686
687                         rdelta = newcolor.get_red() - c.get_red();
688                         bdelta = newcolor.get_blue() - c.get_blue();
689                         gdelta = newcolor.get_green() - c.get_green();
690
691                         if (sqrt (rdelta*rdelta + bdelta*bdelta + gdelta*gdelta) > 25.0) {
692                                 /* different enough */
693                                 used_colors.push_back (newcolor);
694                                 return newcolor;
695                         }
696                 }
697
698                 /* XXX need throttle here to make sure we don't spin for ever */
699         }
700 }
701
702 string
703 ARDOUR_UI_UTILS::rate_as_string (float r)
704 {
705         char buf[32];
706         if (fmod (r, 1000.0f)) {
707                 snprintf (buf, sizeof (buf), "%.1f kHz", r/1000.0);
708         } else {
709                 snprintf (buf, sizeof (buf), "%.0f kHz", r/1000.0);
710         }
711         return buf;
712 }
713
714 bool
715 ARDOUR_UI_UTILS::windows_overlap (Gtk::Window *a, Gtk::Window *b)
716 {
717
718         if (!a || !b) {
719                 return false;
720         }
721         if (a->get_screen() == b->get_screen()) {
722                 gint ex, ey, ew, eh;
723                 gint mx, my, mw, mh;
724
725                 a->get_position (ex, ey);
726                 a->get_size (ew, eh);
727                 b->get_position (mx, my);
728                 b->get_size (mw, mh);
729
730                 GdkRectangle e;
731                 GdkRectangle m;
732                 GdkRectangle r;
733
734                 e.x = ex;
735                 e.y = ey;
736                 e.width = ew;
737                 e.height = eh;
738
739                 m.x = mx;
740                 m.y = my;
741                 m.width = mw;
742                 m.height = mh;
743
744                 if (gdk_rectangle_intersect (&e, &m, &r)) {
745                         return true;
746                 }
747         }
748         return false;
749 }
750
751 bool
752 ARDOUR_UI_UTILS::overwrite_file_dialog (Gtk::Window& parent, string title, string text)
753 {
754         ArdourDialog dialog (parent, title, true);
755         Label label (text);
756
757         dialog.get_vbox()->pack_start (label, true, true);
758         dialog.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
759         dialog.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
760         dialog.show_all ();
761
762         switch (dialog.run()) {
763         case RESPONSE_ACCEPT:
764                 return true;
765         case RESPONSE_CANCEL:
766         default:
767                 return false;
768         }
769 }
770
771 bool
772 ARDOUR_UI_UTILS::running_from_source_tree ()
773 {
774         gchar const *x = g_getenv ("ARDOUR_THEMES_PATH");
775         return x && (string (x).find ("gtk2_ardour") != string::npos);
776 }