c2210bba934714a12f58255befdd0954140e28d4
[ardour.git] / libs / gtkmm2ext / gtk_ui.cc
1 /*
2     Copyright (C) 1999-2005 Paul Barton-Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18     $Id$
19 */
20
21 #include <cmath>
22 #include <fcntl.h>
23 #include <signal.h>
24 #include <unistd.h>
25 #include <cerrno>
26 #include <climits>
27 #include <cctype>
28
29 #include <gtkmm.h>
30
31 #include "pbd/error.h"
32 #include "pbd/touchable.h"
33 #include "pbd/failed_constructor.h"
34 #include "pbd/pthread_utils.h"
35 #include "pbd/replace_all.h"
36
37 #include "gtkmm2ext/application.h"
38 #include "gtkmm2ext/bindings.h"
39 #include "gtkmm2ext/gtk_ui.h"
40 #include "gtkmm2ext/textviewer.h"
41 #include "gtkmm2ext/popup.h"
42 #include "gtkmm2ext/utils.h"
43 #include "gtkmm2ext/window_title.h"
44 #include "gtkmm2ext/actions.h"
45 #include "gtkmm2ext/activatable.h"
46 #include "gtkmm2ext/actions.h"
47 #include "gtkmm2ext/gui_thread.h"
48
49 #include "pbd/i18n.h"
50
51 using namespace Gtkmm2ext;
52 using namespace Gtk;
53 using namespace Glib;
54 using namespace PBD;
55 using std::map;
56
57 UI*   UI::theGtkUI = 0;
58
59 BaseUI::RequestType Gtkmm2ext::NullMessage = BaseUI::new_request_type();
60 BaseUI::RequestType Gtkmm2ext::ErrorMessage = BaseUI::new_request_type();
61 BaseUI::RequestType Gtkmm2ext::TouchDisplay = BaseUI::new_request_type();
62 BaseUI::RequestType Gtkmm2ext::StateChange = BaseUI::new_request_type();
63 BaseUI::RequestType Gtkmm2ext::SetTip = BaseUI::new_request_type();
64 BaseUI::RequestType Gtkmm2ext::AddIdle = BaseUI::new_request_type();
65 BaseUI::RequestType Gtkmm2ext::AddTimeout = BaseUI::new_request_type();
66
67 #include "pbd/abstract_ui.cc"  /* instantiate the template */
68
69 template class AbstractUI<Gtkmm2ext::UIRequest>;
70
71 UI::UI (string application_name, string thread_name, int *argc, char ***argv)
72         : AbstractUI<UIRequest> (thread_name)
73         , _receiver (*this)
74         , global_bindings (0)
75         , errors (0)
76 {
77         theMain = new Main (argc, argv);
78
79         pthread_set_name ("gui");
80
81         _active = false;
82
83         if (!theGtkUI) {
84                 theGtkUI = this;
85         } else {
86                 fatal << "duplicate UI requested" << endmsg;
87                 abort(); /* NOTREACHED */
88         }
89
90         /* the GUI event loop runs in the main thread of the app,
91            which is assumed to have called this.
92         */
93
94         run_loop_thread = Threads::Thread::self();
95
96         /* store "this" as the UI-for-thread of this thread, same argument
97            as for previous line.
98         */
99
100         set_event_loop_for_thread (this);
101
102         /* we will be receiving requests */
103
104         EventLoop::register_request_buffer_factory ("gui", request_buffer_factory);
105
106         /* attach our request source to the default main context */
107
108         attach_request_source ();
109
110         errors = new TextViewer (800,600);
111         errors->text().set_editable (false);
112         errors->text().set_name ("ErrorText");
113         errors->signal_unmap().connect (sigc::bind (sigc::ptr_fun (&ActionManager::uncheck_toggleaction), X_("<Actions>/Editor/toggle-log-window")));
114
115         Glib::set_application_name (application_name);
116
117         WindowTitle title(Glib::get_application_name());
118         title += _("Log");
119         errors->set_title (title.get_string());
120
121         errors->dismiss_button().set_name ("ErrorLogCloseButton");
122         errors->signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), (Window *) errors));
123         errors->set_type_hint (Gdk::WINDOW_TYPE_HINT_UTILITY);
124
125         //load_rcfile (rcfile);
126
127         /* instantiate the Application singleton */
128
129         Application::instance();
130 }
131
132 UI::~UI ()
133 {
134         _receiver.hangup ();
135         delete (errors);
136 }
137
138 bool
139 UI::caller_is_ui_thread ()
140 {
141         return Threads::Thread::self() == run_loop_thread;
142 }
143
144 int
145 UI::load_rcfile (string path, bool themechange)
146 {
147         /* Yes, pointers to Glib::RefPtr.  If these are not kept around,
148          * a segfault somewhere deep in the wonderfully robust glib will result.
149          * This does not occur if wiget.get_style is used instead of rc.get_style below,
150          * except that doesn't actually work...
151          */
152
153         static Glib::RefPtr<Style>* fatal_style   = 0;
154         static Glib::RefPtr<Style>* error_style   = 0;
155         static Glib::RefPtr<Style>* warning_style = 0;
156         static Glib::RefPtr<Style>* info_style    = 0;
157
158         if (path.length() == 0) {
159                 return -1;
160         }
161
162         if (!Glib::file_test (path, Glib::FILE_TEST_EXISTS|Glib::FILE_TEST_IS_REGULAR)) {
163                 error << "UI: couldn't find rc file \""
164                       << path
165                       << '"'
166                       << endmsg;
167                 return -1;
168         }
169
170         RC rc (path.c_str());
171         //this is buggy in gtkmm for some reason, so use C
172         //RC::reset_styles (Gtk::Settings::get_default());
173         gtk_rc_reset_styles (gtk_settings_get_default());
174
175         theme_changed.emit();
176
177         if (themechange) {
178                 return 0; //Don't continue on every time there is a theme change
179         }
180
181         /* have to pack widgets into a toplevel window so that styles will stick */
182
183         Window temp_window (WINDOW_TOPLEVEL);
184         temp_window.ensure_style ();
185
186         HBox box;
187         Label fatal_widget;
188         Label error_widget;
189         Label warning_widget;
190         Label info_widget;
191         RefPtr<Gtk::Style> style;
192         RefPtr<TextBuffer> buffer (errors->text().get_buffer());
193
194         box.pack_start (fatal_widget);
195         box.pack_start (error_widget);
196         box.pack_start (warning_widget);
197         box.pack_start (info_widget);
198
199         error_ptag = buffer->create_tag();
200         error_mtag = buffer->create_tag();
201         fatal_ptag = buffer->create_tag();
202         fatal_mtag = buffer->create_tag();
203         warning_ptag = buffer->create_tag();
204         warning_mtag = buffer->create_tag();
205         info_ptag = buffer->create_tag();
206         info_mtag = buffer->create_tag();
207
208         fatal_widget.set_name ("FatalMessage");
209         delete fatal_style;
210
211         /* This next line and the similar ones below are sketchily
212          * guessed to fix #2885.  I think maybe that problems occur
213          * because with gtk_rc_get_style (to quote its docs) "no
214          * refcount is added to the returned style".  So I've switched
215          * this to use Glib::wrap with take_copy == true, which requires
216          * all the nasty casts and calls to plain-old-C GTK.
217          *
218          * At worst I think this causes a memory leak; at least it appears
219          * to fix the bug.
220          *
221          * I could be wrong about any or all of the above.
222          */
223         fatal_style = new Glib::RefPtr<Style> (Glib::wrap (gtk_rc_get_style (reinterpret_cast<GtkWidget*> (fatal_widget.gobj())), true));
224
225         fatal_ptag->property_font_desc().set_value((*fatal_style)->get_font());
226         fatal_ptag->property_foreground_gdk().set_value((*fatal_style)->get_fg(STATE_ACTIVE));
227         fatal_ptag->property_background_gdk().set_value((*fatal_style)->get_bg(STATE_ACTIVE));
228         fatal_mtag->property_font_desc().set_value((*fatal_style)->get_font());
229         fatal_mtag->property_foreground_gdk().set_value((*fatal_style)->get_fg(STATE_NORMAL));
230         fatal_mtag->property_background_gdk().set_value((*fatal_style)->get_bg(STATE_NORMAL));
231
232         error_widget.set_name ("ErrorMessage");
233         delete error_style;
234         error_style = new Glib::RefPtr<Style> (Glib::wrap (gtk_rc_get_style (reinterpret_cast<GtkWidget*> (error_widget.gobj())), true));
235
236         error_ptag->property_font_desc().set_value((*error_style)->get_font());
237         error_ptag->property_foreground_gdk().set_value((*error_style)->get_fg(STATE_ACTIVE));
238         error_ptag->property_background_gdk().set_value((*error_style)->get_bg(STATE_ACTIVE));
239         error_mtag->property_font_desc().set_value((*error_style)->get_font());
240         error_mtag->property_foreground_gdk().set_value((*error_style)->get_fg(STATE_NORMAL));
241         error_mtag->property_background_gdk().set_value((*error_style)->get_bg(STATE_NORMAL));
242
243         warning_widget.set_name ("WarningMessage");
244         delete warning_style;
245         warning_style = new Glib::RefPtr<Style> (Glib::wrap (gtk_rc_get_style (reinterpret_cast<GtkWidget*> (warning_widget.gobj())), true));
246
247         warning_ptag->property_font_desc().set_value((*warning_style)->get_font());
248         warning_ptag->property_foreground_gdk().set_value((*warning_style)->get_fg(STATE_ACTIVE));
249         warning_ptag->property_background_gdk().set_value((*warning_style)->get_bg(STATE_ACTIVE));
250         warning_mtag->property_font_desc().set_value((*warning_style)->get_font());
251         warning_mtag->property_foreground_gdk().set_value((*warning_style)->get_fg(STATE_NORMAL));
252         warning_mtag->property_background_gdk().set_value((*warning_style)->get_bg(STATE_NORMAL));
253
254         info_widget.set_name ("InfoMessage");
255         delete info_style;
256         info_style = new Glib::RefPtr<Style> (Glib::wrap (gtk_rc_get_style (reinterpret_cast<GtkWidget*> (info_widget.gobj())), true));
257
258         info_ptag->property_font_desc().set_value((*info_style)->get_font());
259         info_ptag->property_foreground_gdk().set_value((*info_style)->get_fg(STATE_ACTIVE));
260         info_ptag->property_background_gdk().set_value((*info_style)->get_bg(STATE_ACTIVE));
261         info_mtag->property_font_desc().set_value((*info_style)->get_font());
262         info_mtag->property_foreground_gdk().set_value((*info_style)->get_fg(STATE_NORMAL));
263         info_mtag->property_background_gdk().set_value((*info_style)->get_bg(STATE_NORMAL));
264
265         return 0;
266 }
267
268 void
269 UI::run (Receiver &old_receiver)
270 {
271         _receiver.listen_to (error);
272         _receiver.listen_to (info);
273         _receiver.listen_to (warning);
274         _receiver.listen_to (fatal);
275
276         /* stop the old receiver (text/console) once we hit the first idle */
277
278         Glib::signal_idle().connect (bind_return (mem_fun (old_receiver, &Receiver::hangup), false));
279
280         if (starting ()) {
281                 return;
282         }
283
284         _active = true;
285         theMain->run ();
286         _active = false;
287
288         return;
289 }
290
291 bool
292 UI::running ()
293 {
294         return _active;
295 }
296
297 void
298 UI::quit ()
299 {
300         UIRequest *req = get_request (Quit);
301
302         if (req == 0) {
303                 return;
304         }
305
306         send_request (req);
307 }
308
309 static bool idle_quit ()
310 {
311         Main::quit ();
312         return true;
313 }
314
315 void
316 UI::do_quit ()
317 {
318         if (getenv ("ARDOUR_RUNNING_UNDER_VALGRIND")) {
319                 Main::quit ();
320         } else {
321                 Glib::signal_idle().connect (sigc::ptr_fun (idle_quit));
322         }
323 }
324
325 void
326 UI::touch_display (Touchable *display)
327 {
328         UIRequest *req = get_request (TouchDisplay);
329
330         if (req == 0) {
331                 return;
332         }
333
334         req->display = display;
335
336         send_request (req);
337 }
338
339 void
340 UI::set_tip (Widget &w, const gchar *tip)
341 {
342         set_tip(&w, tip, "");
343 }
344
345 void
346 UI::set_tip (Widget &w, const std::string& tip)
347 {
348         set_tip(&w, tip.c_str(), "");
349 }
350
351 void
352 UI::set_tip (Widget *w, const gchar *tip, const gchar *hlp)
353 {
354         UIRequest *req = get_request (SetTip);
355
356         std::string msg(tip);
357
358         Glib::RefPtr<Gtk::Action> action = w->get_action();
359
360         if (!action) {
361                 Gtkmm2ext::Activatable* activatable;
362                 if ((activatable = dynamic_cast<Gtkmm2ext::Activatable*>(w))) {
363                         action = activatable->get_related_action();
364                 }
365         }
366
367         if (action) {
368                 Bindings* bindings = (Bindings*) w->get_data ("ardour-bindings");
369                 if (!bindings) {
370                         Gtk::Window* win = (Gtk::Window*) w->get_toplevel();
371                         if (win) {
372                                 bindings = (Bindings*) win->get_data ("ardour-bindings");
373                         }
374                 }
375
376                 if (!bindings) {
377                         bindings = global_bindings;
378                 }
379
380                 if (bindings) {
381                         Bindings::Operation op;
382                         KeyboardKey kb = bindings->get_binding_for_action (action, op);
383                         string shortcut = kb.display_label ();
384                         if (!shortcut.empty()) {
385                                 replace_all (shortcut, "<", "");
386                                 replace_all (shortcut, ">", "-");
387                                 msg.append(_("\n\nShortcut: ")).append (shortcut);
388                         }
389                 }
390         }
391
392         if (req == 0) {
393                 return;
394         }
395
396
397         req->widget = w;
398         req->msg = msg.c_str();
399         req->msg2 = hlp;
400
401         send_request (req);
402 }
403
404 void
405 UI::set_state (Widget *w, StateType state)
406 {
407         UIRequest *req = get_request (StateChange);
408
409         if (req == 0) {
410                 return;
411         }
412
413         req->new_state = state;
414         req->widget = w;
415
416         send_request (req);
417 }
418
419 void
420 UI::idle_add (int (*func)(void *), void *arg)
421 {
422         UIRequest *req = get_request (AddIdle);
423
424         if (req == 0) {
425                 return;
426         }
427
428         req->function = func;
429         req->arg = arg;
430
431         send_request (req);
432 }
433
434 /* END abstract_ui interfaces */
435
436 /** Create a PBD::EventLoop::InvalidationRecord and attach a callback
437  *  to a given sigc::trackable so that PBD::EventLoop::invalidate_request
438  *  is called when that trackable is destroyed.
439  */
440 PBD::EventLoop::InvalidationRecord*
441 __invalidator (sigc::trackable& trackable, const char* file, int line)
442 {
443         PBD::EventLoop::InvalidationRecord* ir = new PBD::EventLoop::InvalidationRecord;
444
445         ir->file = file;
446         ir->line = line;
447
448         trackable.add_destroy_notify_callback (ir, PBD::EventLoop::invalidate_request);
449
450         return ir;
451 }
452
453 void
454 UI::do_request (UIRequest* req)
455 {
456         if (req->type == ErrorMessage) {
457
458                 process_error_message (req->chn, req->msg);
459                 free (const_cast<char*>(req->msg)); /* it was strdup'ed */
460                 req->msg = 0; /* don't free it again in the destructor */
461
462         } else if (req->type == Quit) {
463
464                 do_quit ();
465
466         } else if (req->type == CallSlot) {
467 #ifndef NDEBUG
468                 if (getenv ("DEBUG_THREADED_SIGNALS")) {
469                         cerr << "call slot for " << event_loop_name() << endl;
470                 }
471 #endif
472                 req->the_slot ();
473
474         } else if (req->type == TouchDisplay) {
475
476                 req->display->touch ();
477                 if (req->display->delete_after_touch()) {
478                         delete req->display;
479                 }
480
481         } else if (req->type == StateChange) {
482
483                 req->widget->set_state (req->new_state);
484
485         } else if (req->type == SetTip) {
486
487                 gtk_widget_set_tooltip_markup (req->widget->gobj(), req->msg);
488
489         } else {
490
491                 error << "GtkUI: unknown request type "
492                       << (int) req->type
493                       << endmsg;
494         }
495 }
496
497 /*======================================================================
498   Error Display
499   ======================================================================*/
500
501 void
502 UI::dump_errors (std::ostream& ostr)
503 {
504         Glib::Threads::Mutex::Lock lm (error_lock);
505         ostr << endl << X_("Errors/Messages:") << endl;
506         for (list<string>::const_iterator i = error_stack.begin(); i != error_stack.end(); ++i) {
507                 ostr << *i << endl;
508         }
509         ostr << endl;
510 }
511
512 void
513 UI::receive (Transmitter::Channel chn, const char *str)
514 {
515         {
516                 Glib::Threads::Mutex::Lock lm (error_lock);
517                 switch (chn) {
518                 case Transmitter::Fatal:
519                         error_stack.push_back (string (X_("FATAL: ")) + str);
520                         break;
521                 case Transmitter::Error:
522                         error_stack.push_back (string (X_("ERROR: ")) + str);
523                         break;
524                 case Transmitter::Warning:
525                         error_stack.push_back (string (X_("WARNING: ")) + str);
526                         break;
527                 case Transmitter::Info:
528                         error_stack.push_back (string (X_("INFO: ")) + str);
529                         break;
530                 case Transmitter::Throw:
531                         error_stack.push_back (string (X_("THROW: ")) + str);
532                         break;
533                 }
534         }
535
536         if (caller_is_ui_thread()) {
537                 process_error_message (chn, str);
538         } else {
539                 UIRequest* req = get_request (ErrorMessage);
540
541                 if (req == 0) {
542                         return;
543                 }
544
545                 req->chn = chn;
546                 req->msg = strdup (str);
547
548                 send_request (req);
549         }
550 }
551
552 #define OLD_STYLE_ERRORS 1
553
554 void
555 UI::process_error_message (Transmitter::Channel chn, const char *str)
556 {
557         RefPtr<Style> style;
558         RefPtr<TextBuffer::Tag> ptag;
559         RefPtr<TextBuffer::Tag> mtag;
560         const char *prefix;
561         size_t prefix_len;
562         bool fatal_received = false;
563 #ifndef OLD_STYLE_ERRORS
564         PopUp* popup = new PopUp (WIN_POS_CENTER, 0, true);
565 #endif
566
567         switch (chn) {
568         case Transmitter::Fatal:
569                 prefix = "[FATAL]: ";
570                 ptag = fatal_ptag;
571                 mtag = fatal_mtag;
572                 prefix_len = 9;
573                 fatal_received = true;
574                 break;
575         case Transmitter::Error:
576 #if OLD_STYLE_ERRORS
577                 prefix = "[ERROR]: ";
578                 ptag = error_ptag;
579                 mtag = error_mtag;
580                 prefix_len = 9;
581 #else
582                 popup->set_name ("ErrorMessage");
583                 popup->set_text (str);
584                 popup->touch ();
585                 return;
586 #endif
587                 break;
588         case Transmitter::Info:
589 #if OLD_STYLE_ERRORS
590                 prefix = "[INFO]: ";
591                 ptag = info_ptag;
592                 mtag = info_mtag;
593                 prefix_len = 8;
594 #else
595                 popup->set_name ("InfoMessage");
596                 popup->set_text (str);
597                 popup->touch ();
598                 return;
599 #endif
600
601                 break;
602         case Transmitter::Warning:
603 #if OLD_STYLE_ERRORS
604                 prefix = "[WARNING]: ";
605                 ptag = warning_ptag;
606                 mtag = warning_mtag;
607                 prefix_len = 11;
608 #else
609                 popup->set_name ("WarningMessage");
610                 popup->set_text (str);
611                 popup->touch ();
612                 return;
613 #endif
614                 break;
615         default:
616                 /* no choice but to use text/console output here */
617                 cerr << "programmer error in UI::check_error_messages (channel = " << chn << ")\n";
618                 ::exit (1);
619         }
620
621         errors->text().get_buffer()->begin_user_action();
622
623         if (fatal_received) {
624                 handle_fatal (str);
625         } else {
626
627                 if (!ptag || !mtag) {
628                         /* oops, message sent before we set up tags - don't crash */
629                         cerr << prefix << str << endl;
630                 } else {
631                         display_message (prefix, prefix_len, ptag, mtag, str);
632                 }
633         }
634
635         errors->text().get_buffer()->end_user_action();
636 }
637
638 void
639 UI::show_errors ()
640 {
641         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
642         if (!act) {
643                 return;
644         }
645
646         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
647         if (tact) {
648                 tact->set_active ();
649         }
650 }
651
652 void
653 UI::toggle_errors ()
654 {
655         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
656         if (!act) {
657                 return;
658         }
659
660         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
661
662         if (tact->get_active()) {
663                 errors->set_position (WIN_POS_MOUSE);
664                 errors->show ();
665         } else {
666                 errors->hide ();
667         }
668 }
669
670 void
671 UI::display_message (const char *prefix, gint /*prefix_len*/, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
672 {
673         RefPtr<TextBuffer> buffer (errors->text().get_buffer());
674
675         buffer->insert_with_tag(buffer->end(), prefix, ptag);
676         buffer->insert_with_tag(buffer->end(), msg, mtag);
677         buffer->insert_with_tag(buffer->end(), "\n", mtag);
678
679         errors->scroll_to_bottom ();
680 }
681
682 void
683 UI::handle_fatal (const char *message)
684 {
685         Dialog win;
686         Label label (message);
687         Button quit (_("Press To Exit"));
688         HBox hpacker;
689
690         win.set_default_size (400, 100);
691
692         WindowTitle title(Glib::get_application_name());
693         title += ": Fatal Error";
694         win.set_title (title.get_string());
695
696         win.set_position (WIN_POS_MOUSE);
697         win.set_border_width (12);
698
699         win.get_vbox()->pack_start (label, true, true);
700         hpacker.pack_start (quit, true, false);
701         win.get_vbox()->pack_start (hpacker, false, false);
702
703         quit.signal_clicked().connect(mem_fun(*this,&UI::quit));
704
705         win.show_all ();
706         win.set_modal (true);
707
708         theMain->run ();
709
710         _exit (1);
711 }
712
713 void
714 UI::popup_error (const string& text)
715 {
716         if (!caller_is_ui_thread()) {
717                 error << "non-UI threads can't use UI::popup_error"
718                       << endmsg;
719                 return;
720         }
721
722         MessageDialog msg (text);
723         msg.set_title (string_compose (_("I'm sorry %1, I can't do that"), g_get_user_name()));
724         msg.set_wmclass (X_("error"), Glib::get_application_name());
725         msg.set_position (WIN_POS_MOUSE);
726         msg.run ();
727 }
728
729 void
730 UI::flush_pending (float timeout)
731 {
732         if (!caller_is_ui_thread()) {
733                 error << "non-UI threads cannot call UI::flush_pending()"
734                       << endmsg;
735                 return;
736         }
737
738         int64_t end = g_get_monotonic_time () + timeout * 1e6;
739
740         gtk_main_iteration();
741
742         while (gtk_events_pending()) {
743                 if (timeout > 0 && end < g_get_monotonic_time ()) {
744                         cerr << "UI::flush_pending timed out after " << timeout << "s.\n";
745                         break;
746                 }
747                 gtk_main_iteration();
748         }
749 }
750
751 bool
752 UI::just_hide_it (GdkEventAny* /*ev*/, Window *win)
753 {
754         win->hide ();
755         return true;
756 }
757
758 void
759 UI::color_selection_done (bool status)
760 {
761         color_picked = status;
762         Main::quit ();
763 }
764
765 bool
766 UI::color_selection_deleted (GdkEventAny* /*ev*/)
767 {
768         Main::quit ();
769         return true;
770 }