make audio clock fill vertical space
[ardour.git] / gtk2_ardour / ardour_ui2.cc
1 /*
2     Copyright (C) 1999 Paul 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 */
19
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <cerrno>
28 #include <iostream>
29 #include <cmath>
30
31 #include <sigc++/bind.h>
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include "pbd/fastlog.h"
35 #include <gtkmm2ext/cairocell.h>
36 #include <gtkmm2ext/utils.h>
37 #include <gtkmm2ext/click_box.h>
38 #include <gtkmm2ext/tearoff.h>
39
40 #include "ardour/profile.h"
41 #include "ardour/session.h"
42 #include "ardour/types.h"
43
44 #include "ardour_ui.h"
45 #include "keyboard.h"
46 #include "public_editor.h"
47 #include "audio_clock.h"
48 #include "actions.h"
49 #include "button_joiner.h"
50 #include "main_clock.h"
51 #include "utils.h"
52 #include "theme_manager.h"
53 #include "midi_tracer.h"
54 #include "shuttle_control.h"
55 #include "global_port_matrix.h"
56 #include "location_ui.h"
57 #include "rc_option_editor.h"
58 #include "time_info_box.h"
59
60 #include "i18n.h"
61
62 using namespace std;
63 using namespace ARDOUR;
64 using namespace PBD;
65 using namespace Gtkmm2ext;
66 using namespace Gtk;
67 using namespace Glib;
68
69 int
70 ARDOUR_UI::setup_windows ()
71 {
72         if (create_editor ()) {
73                 error << _("UI: cannot setup editor") << endmsg;
74                 return -1;
75         }
76
77         if (create_mixer ()) {
78                 error << _("UI: cannot setup mixer") << endmsg;
79                 return -1;
80         }
81
82         /* all other dialogs are created conditionally */
83
84         we_have_dependents ();
85
86         theme_manager->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleThemeManager")));
87
88 #ifdef TOP_MENUBAR
89         HBox* status_bar_packer = manage (new HBox);
90         EventBox* status_bar_event_box = manage (new EventBox);
91
92         status_bar_event_box->add (status_bar_label);
93         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
94         status_bar_label.set_size_request (300, -1);
95         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
96         status_bar_packer->pack_start (error_log_button, false, false);
97
98         status_bar_label.show ();
99         status_bar_event_box->show ();
100         status_bar_packer->show ();
101         error_log_button.show ();
102
103         error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
104         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
105
106         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
107         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
108 #else
109         top_packer.pack_start (menu_bar_base, false, false);
110 #endif
111
112         top_packer.pack_start (transport_frame, false, false);
113
114         editor->add_toplevel_controls (top_packer);
115
116         setup_transport();
117
118         build_menu_bar ();
119
120         setup_tooltips ();
121
122         return 0;
123 }
124
125 void
126 ARDOUR_UI::setup_tooltips ()
127 {
128         set_tip (roll_button, _("Play from playhead"));
129         set_tip (stop_button, _("Stop playback"));
130         set_tip (rec_button, _("Toggle record"));
131         set_tip (play_selection_button, _("Play range/selection"));
132         set_tip (goto_start_button, _("Go to start of session"));
133         set_tip (goto_end_button, _("Go to end of session"));
134         set_tip (auto_loop_button, _("Play loop range"));
135         set_tip (midi_panic_button, _("MIDI Panic\nSend note off and reset controller messages on all MIDI channels"));
136         set_tip (*transport_joiner, _("Always Play Range Selection (if any)"));
137         set_tip (auto_return_button, _("Return to last playback start when stopped"));
138         set_tip (auto_play_button, _("Start playback after any locate"));
139         set_tip (auto_input_button, _("Be sensible about input monitoring"));
140         set_tip (click_button, _("Enable/Disable audio click"));
141         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
142         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
143         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
144         set_tip (primary_clock, _("Primary Clock"));
145         set_tip (secondary_clock, _("Secondary Clock"));
146
147         synchronize_sync_source_and_video_pullup ();
148
149         editor->setup_tooltips ();
150 }
151
152 bool
153 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
154 {
155         bool handled = false;
156
157         switch (ev->button) {
158         case 1:
159                 status_bar_label.set_text ("");
160                 handled = true;
161                 break;
162         default:
163                 break;
164         }
165
166         return handled;
167 }
168
169 void
170 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
171 {
172         string text;
173
174         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
175 #ifdef TOP_MENUBAR
176
177         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
178                 text = "<span color=\"red\" weight=\"bold\">";
179         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
180                 text = "<span color=\"yellow\" weight=\"bold\">";
181         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
182                 text = "<span color=\"green\" weight=\"bold\">";
183         } else {
184                 text = "<span color=\"white\" weight=\"bold\">???";
185         }
186
187         text += prefix;
188         text += "</span>";
189         text += msg;
190
191         status_bar_label.set_markup (text);
192 #endif
193 }
194
195 XMLNode*
196 ARDOUR_UI::tearoff_settings (const char* name) const
197 {
198         XMLNode* ui_node = Config->extra_xml(X_("UI"));
199
200         if (ui_node) {
201                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
202                 if (tearoff_node) {
203                         XMLNode* mnode = tearoff_node->child (name);
204                         return mnode;
205                 }
206         }
207
208         return 0;
209 }
210
211 void
212 ARDOUR_UI::setup_transport ()
213 {
214         RefPtr<Action> act;
215
216         transport_tearoff_hbox.set_border_width (3);
217         transport_tearoff_hbox.set_spacing (3);
218
219         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
220         transport_tearoff->set_name ("TransportBase");
221         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
222
223         if (Profile->get_sae()) {
224                 transport_tearoff->set_can_be_torn_off (false);
225         }
226
227         transport_hbox.pack_start (*transport_tearoff, true, false);
228
229         transport_base.set_name ("TransportBase");
230         transport_base.add (transport_hbox);
231
232         transport_frame.set_shadow_type (SHADOW_OUT);
233         transport_frame.set_name ("BaseFrame");
234         transport_frame.add (transport_base);
235
236         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
237                                                  static_cast<Widget*>(&transport_frame)));
238         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
239                                                  static_cast<Widget*> (&transport_frame), 1));
240         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
241                                                  static_cast<Widget*>(&transport_frame)));
242         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
243                                                   static_cast<Widget*> (&transport_frame), 1));
244
245         auto_return_button.set_text(_("Auto Return"));
246         auto_play_button.set_text(_("Auto Play"));
247         auto_input_button.set_text (_("Auto Input"));
248
249         click_button.set_image (get_icon (X_("metronome")));
250         act = ActionManager::get_action ("Transport", "ToggleClick");
251         click_button.set_related_action (act);
252         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
253
254         auto_return_button.set_name ("transport option button");
255         auto_play_button.set_name ("transport option button");
256         auto_input_button.set_name ("transport option button");
257
258         /* these have to provide a clear indication of active state */
259
260         click_button.set_name ("transport button");
261         sync_button.set_name ("transport active option button");
262
263         stop_button.set_active (true);
264
265         goto_start_button.set_image (get_icon (X_("transport_start")));
266         goto_end_button.set_image (get_icon (X_("transport_end")));
267         roll_button.set_image (get_icon (X_("transport_play")));
268         stop_button.set_image (get_icon (X_("transport_stop")));
269         play_selection_button.set_image (get_icon (X_("transport_range")));
270         rec_button.set_image (get_icon (X_("transport_record")));
271         auto_loop_button.set_image (get_icon (X_("transport_loop")));
272
273         midi_panic_button.set_image (get_icon (X_("midi_panic")));
274         /* the icon for this has an odd aspect ratio, so fatten up the button */
275         midi_panic_button.set_size_request (25, -1);
276         
277         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
278         stop_button.set_related_action (act);
279         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
280         roll_button.set_related_action (act);
281         act = ActionManager::get_action (X_("Transport"), X_("Record"));
282         rec_button.set_related_action (act);
283         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
284         goto_start_button.set_related_action (act);
285         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
286         goto_end_button.set_related_action (act);
287         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
288         auto_loop_button.set_related_action (act);
289         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
290         play_selection_button.set_related_action (act);
291         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
292         midi_panic_button.set_related_action (act);
293         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
294         sync_button.set_related_action (act);
295
296         transport_joiner = manage (new ButtonJoiner ("transport button", play_selection_button, roll_button));
297
298         act = ActionManager::get_action (X_("Transport"), X_("AlwaysPlayRange"));
299         transport_joiner->set_related_action (act);
300
301         /* clocks, etc. */
302
303         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
304         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
305
306         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
307         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
308         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
309
310         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
311         auto_return_button.set_related_action (act);
312         act = ActionManager::get_action ("Transport", "ToggleAutoPlay");
313         auto_play_button.set_related_action (act);
314         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
315         auto_input_button.set_related_action (act);
316
317         /* alerts */
318
319         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
320
321         solo_alert_button.set_name ("rude solo");
322         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
323         auditioning_alert_button.set_name ("rude audition");
324         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
325         feedback_alert_button.set_name ("feedback alert");
326         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
327
328         alert_box.pack_start (solo_alert_button, true, false);
329         alert_box.pack_start (auditioning_alert_button, true, false);
330         alert_box.pack_start (feedback_alert_button, true, false);
331
332         /* all transport buttons should be the same size vertically and
333          * horizontally 
334          */
335
336         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
337         transport_button_size_group->add_widget (goto_start_button);
338         transport_button_size_group->add_widget (goto_end_button);
339         transport_button_size_group->add_widget (auto_loop_button);
340         transport_button_size_group->add_widget (rec_button);
341         transport_button_size_group->add_widget (play_selection_button);
342         transport_button_size_group->add_widget (roll_button);
343         transport_button_size_group->add_widget (stop_button);
344
345         HBox* tbox1 = manage (new HBox);
346         HBox* tbox2 = manage (new HBox);
347         HBox* tbox3 = manage (new HBox);
348         HBox* tbox = manage (new HBox);
349
350         VBox* vbox1 = manage (new VBox);
351         VBox* vbox2 = manage (new VBox);
352         VBox* vbox3 = manage (new VBox);
353
354         Alignment* a1 = manage (new Alignment);
355         Alignment* a2 = manage (new Alignment);
356         Alignment* a3 = manage (new Alignment);
357
358         tbox1->set_spacing (2);
359         tbox2->set_spacing (2);
360         tbox3->set_spacing (2);
361         tbox->set_spacing (2);
362
363         tbox1->pack_start (click_button, false, false, 5);
364         tbox1->pack_start (midi_panic_button, false, false);
365         tbox1->pack_start (goto_start_button, false, false);
366         tbox1->pack_start (goto_end_button, false, false);
367         tbox1->pack_start (auto_loop_button, false, false);
368
369         play_selection_button.set_rounded_corner_mask (0x1); /* upper left only */
370         roll_button.set_rounded_corner_mask (0x2); /* upper right only */
371
372         tbox2->pack_start (*transport_joiner, false, false);
373
374         tbox3->pack_start (stop_button, false, false);
375         tbox3->pack_start (rec_button, false, false, 6);
376
377         vbox1->pack_start (*tbox1, false, false);
378         vbox2->pack_start (*tbox2, false, false);
379         vbox3->pack_start (*tbox3, false, false);
380
381         a1->add (*vbox1);
382         a1->set (0.5, 1.0, 0.0, 0.0);
383         a2->add (*vbox2);
384         a2->set (0.5, 1.0, 0.0, 0.0);
385         a3->add (*vbox3);
386         a3->set (0.5, 1.0, 0.0, 0.0);
387
388         tbox->pack_start (*a1, false, false);
389         tbox->pack_start (*a2, false, false);
390         tbox->pack_start (*a3, false, false);
391
392         HBox* clock_box = manage (new HBox);
393
394         clock_box->pack_start (*primary_clock, false, false);
395         if (!ARDOUR::Profile->get_small_screen()) {
396                 clock_box->pack_start (*secondary_clock, false, false);
397         }
398         clock_box->set_spacing (3);
399
400         shuttle_box = new ShuttleControl;
401         shuttle_box->show ();
402
403         VBox* transport_vbox = manage (new VBox);
404         transport_vbox->set_name ("TransportBase");
405         transport_vbox->set_border_width (3);
406         transport_vbox->set_spacing (3);
407         transport_vbox->pack_start (*tbox, true, true, 0);
408         transport_vbox->pack_start (*shuttle_box, false, false, 0);
409
410         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
411
412         /* transport related toggle controls */
413
414         VBox* auto_box = manage (new VBox);
415         auto_box->set_homogeneous (true);
416         auto_box->set_spacing (2);
417         auto_box->pack_start (sync_button, false, false);
418         auto_box->pack_start (auto_play_button, false, false);
419         auto_box->pack_start (auto_return_button, false, false);
420
421         transport_tearoff_hbox.pack_start (*auto_box, false, false);
422         transport_tearoff_hbox.pack_start (*clock_box, false, false);
423
424         time_info_box = manage (new TimeInfoBox);
425         transport_tearoff_hbox.pack_start (*time_info_box, false, false);
426
427         if (Profile->get_small_screen()) {
428                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false);
429         }
430         transport_tearoff_hbox.pack_start (alert_box, false, false);
431
432         if (Profile->get_sae()) {
433                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
434                 transport_tearoff_hbox.pack_end (*img, false, false);
435         }
436
437         /* desensitize */
438
439         set_transport_sensitivity (false);
440
441         XMLNode* tnode = tearoff_settings ("transport");
442         if (tnode) {
443                 transport_tearoff->set_state (*tnode);
444         }
445 }
446
447 void
448 ARDOUR_UI::manage_window (Window& win)
449 {
450         win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
451         win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
452         win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
453 }
454
455 void
456 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
457 {
458 //      editor->ensure_float (transport_tearoff->tearoff_window());
459         b->remove (*w);
460 }
461
462 void
463 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
464 {
465         b->pack_start (*w);
466         b->reorder_child (*w, n);
467 }
468
469 void
470 ARDOUR_UI::soloing_changed (bool onoff)
471 {
472         if (solo_alert_button.get_active() != onoff) {
473                 solo_alert_button.set_active (onoff);
474         }
475 }
476
477 void
478 ARDOUR_UI::_auditioning_changed (bool onoff)
479 {
480         auditioning_alert_button.set_active (onoff);
481         set_transport_sensitivity (!onoff);
482 }
483
484 void
485 ARDOUR_UI::auditioning_changed (bool onoff)
486 {
487         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
488 }
489
490 bool
491 ARDOUR_UI::audition_alert_press (GdkEventButton*)
492 {
493         if (_session) {
494                 _session->cancel_audition();
495         }
496         return true;
497 }
498
499 bool
500 ARDOUR_UI::solo_alert_press (GdkEventButton*)
501 {
502         if (_session) {
503                 if (_session->soloing()) {
504                         _session->set_solo (_session->get_routes(), false);
505                 } else if (_session->listening()) {
506                         _session->set_listen (_session->get_routes(), false);
507                 }
508         }
509         return true;
510 }
511
512 bool
513 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
514 {
515         return true;
516 }
517
518 void
519 ARDOUR_UI::solo_blink (bool onoff)
520 {
521         if (_session == 0) {
522                 return;
523         }
524
525         if (_session->soloing() || _session->listening()) {
526                 if (onoff) {
527                         solo_alert_button.set_active (true);
528                 } else {
529                         solo_alert_button.set_active (false);
530                 }
531         } else {
532                 solo_alert_button.set_active (false);
533         }
534 }
535
536 void
537 ARDOUR_UI::sync_blink (bool onoff)
538 {
539         if (_session == 0 || !_session->config.get_external_sync()) {
540                 /* internal sync */
541                 sync_button.set_active (false);
542                 return;
543         }
544
545         if (!_session->transport_locked()) {
546                 /* not locked, so blink on and off according to the onoff argument */
547
548                 if (onoff) {
549                         sync_button.set_active (true);
550                 } else {
551                         sync_button.set_active (false);
552                 }
553         } else {
554                 /* locked */
555                 sync_button.set_active (true);
556         }
557 }
558
559 void
560 ARDOUR_UI::audition_blink (bool onoff)
561 {
562         if (_session == 0) {
563                 return;
564         }
565
566         if (_session->is_auditioning()) {
567                 if (onoff) {
568                         auditioning_alert_button.set_active (true);
569                 } else {
570                         auditioning_alert_button.set_active (false);
571                 }
572         } else {
573                 auditioning_alert_button.set_active (false);
574         }
575 }
576
577 void
578 ARDOUR_UI::feedback_blink (bool onoff)
579 {
580         if (_feedback_exists) {
581                 if (onoff) {
582                         feedback_alert_button.set_active (true);
583                 } else {
584                         feedback_alert_button.set_active (false);
585                 }
586         } else {
587                 feedback_alert_button.set_active (false);
588         }
589 }
590
591 void
592 ARDOUR_UI::set_transport_sensitivity (bool yn)
593 {
594         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
595         shuttle_box->set_sensitive (yn);
596 }
597
598 void
599 ARDOUR_UI::editor_realized ()
600 {
601         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
602         Config->map_parameters (pc);
603
604         reset_dpi ();
605 }
606
607 void
608 ARDOUR_UI::update_tearoff_visibility ()
609 {
610         if (editor) {
611                 editor->update_tearoff_visibility ();
612         }
613 }
614
615 void
616 ARDOUR_UI::maximise_editing_space ()
617 {
618         if (editor) {
619                 editor->maximise_editing_space ();
620         }
621 }
622
623 void
624 ARDOUR_UI::restore_editing_space ()
625 {
626         if (editor) {
627                 editor->restore_editing_space ();
628         }
629 }
630
631 bool
632 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
633 {
634         if (ev->button != 3) {
635                 /* this handler is just for button-3 clicks */
636                 return false;
637         }
638
639         RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
640         assert (act);
641
642         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
643         tact->set_active ();
644
645         rc_option_editor->set_current_page (_("Misc"));
646         return true;
647 }
648
649 void
650 ARDOUR_UI::toggle_always_play_range ()
651 {
652         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("AlwaysPlayRange"));
653         assert (act);
654
655         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
656         assert (tact);
657
658         Config->set_always_play_range (tact->get_active ());
659 }
660
661