remove unused API
[ardour.git] / gtk2_ardour / ardour_ui_engine.cc
1 /*
2  * Copyright (C) 2005-2007 Doug McLain <doug@nostar.net>
3  * Copyright (C) 2005-2017 Tim Mayberry <mojofunk@gmail.com>
4  * Copyright (C) 2005-2019 Paul Davis <paul@linuxaudiosystems.com>
5  * Copyright (C) 2005 Karsten Wiese <fzuuzf@googlemail.com>
6  * Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
7  * Copyright (C) 2006-2015 David Robillard <d@drobilla.net>
8  * Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
9  * Copyright (C) 2008-2010 Sakari Bergen <sakari.bergen@beatwaves.net>
10  * Copyright (C) 2012-2019 Robin Gareus <robin@gareus.org>
11  * Copyright (C) 2013-2015 Colin Fletcher <colin.m.fletcher@googlemail.com>
12  * Copyright (C) 2013-2016 John Emmas <john@creativepost.co.uk>
13  * Copyright (C) 2013-2016 Nick Mainsbridge <mainsbridge@gmail.com>
14  * Copyright (C) 2014-2018 Ben Loftis <ben@harrisonconsoles.com>
15  * Copyright (C) 2015 AndrĂ© Nusser <andre.nusser@googlemail.com>
16  * Copyright (C) 2016-2018 Len Ovens <len@ovenwerks.net>
17  * Copyright (C) 2017 Johannes Mueller <github@johannes-mueller.org>
18  *
19  * This program is free software; you can redistribute it and/or modify
20  * it under the terms of the GNU General Public License as published by
21  * the Free Software Foundation; either version 2 of the License, or
22  * (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License along
30  * with this program; if not, write to the Free Software Foundation, Inc.,
31  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32  */
33
34 #ifdef WAF_BUILD
35 #include "gtk2ardour-config.h"
36 #include "gtk2ardour-version.h"
37 #endif
38
39 #include "pbd/openuri.h"
40
41 #include "ardour/audioengine.h"
42
43 #include "ardour_ui.h"
44 #include "engine_dialog.h"
45 #include "gui_thread.h"
46
47 #include "pbd/i18n.h"
48
49 using namespace ARDOUR;
50 using namespace PBD;
51 using namespace Gtkmm2ext;
52 using namespace ArdourWidgets;
53 using namespace Gtk;
54 using namespace std;
55
56 void
57 ARDOUR_UI::audioengine_became_silent ()
58 {
59         MessageDialog msg (string_compose (_("This is a free/demo copy of %1. It has just switched to silent mode."), PROGRAM_NAME),
60                            true,
61                            Gtk::MESSAGE_WARNING,
62                            Gtk::BUTTONS_NONE,
63                            true);
64
65         msg.set_title (string_compose (_("%1 is now silent"), PROGRAM_NAME));
66
67         Gtk::Label pay_label (string_compose (_("Please consider paying for a copy of %1 - you can pay whatever you want."), PROGRAM_NAME));
68         Gtk::Label subscribe_label (_("Better yet become a subscriber - subscriptions start at US$1 per month."));
69         Gtk::Button pay_button (_("Pay for a copy (via the web)"));
70         Gtk::Button subscribe_button (_("Become a subscriber (via the web)"));
71         Gtk::HBox pay_button_box;
72         Gtk::HBox subscribe_button_box;
73
74         pay_button_box.pack_start (pay_button, true, false);
75         subscribe_button_box.pack_start (subscribe_button, true, false);
76
77         bool (*openuri)(const char*) = PBD::open_uri; /* this forces selection of the const char* variant of PBD::open_uri(), which we need to avoid ambiguity below */
78
79         pay_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://ardour.org/download")));
80         subscribe_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::ptr_fun (openuri), (const char*) "https://community.ardour.org/s/subscribe")));
81
82         msg.get_vbox()->pack_start (pay_label);
83         msg.get_vbox()->pack_start (pay_button_box);
84         msg.get_vbox()->pack_start (subscribe_label);
85         msg.get_vbox()->pack_start (subscribe_button_box);
86
87         msg.get_vbox()->show_all ();
88
89         msg.add_button (_("Remain silent"), Gtk::RESPONSE_CANCEL);
90         msg.add_button (_("Save and quit"), Gtk::RESPONSE_NO);
91         msg.add_button (_("Give me more time"), Gtk::RESPONSE_YES);
92
93         int r = msg.run ();
94
95         switch (r) {
96         case Gtk::RESPONSE_YES:
97                 AudioEngine::instance()->reset_silence_countdown ();
98                 break;
99
100         case Gtk::RESPONSE_NO:
101                 /* save and quit */
102                 save_state_canfail ("");
103                 exit (EXIT_SUCCESS);
104                 break;
105
106         case Gtk::RESPONSE_CANCEL:
107         default:
108                 /* don't reset, save session and exit */
109                 break;
110         }
111 }
112
113 void
114 ARDOUR_UI::create_xrun_marker (samplepos_t where)
115 {
116         if (_session) {
117                 Location *location = new Location (*_session, where, where, _("xrun"), Location::IsMark, 0);
118                 _session->locations()->add (location);
119         }
120 }
121
122 void
123 ARDOUR_UI::halt_on_xrun_message ()
124 {
125         cerr << "HALT on xrun\n";
126         MessageDialog msg (_main_window, _("Recording was stopped because your system could not keep up."));
127         msg.run ();
128 }
129
130 void
131 ARDOUR_UI::xrun_handler (samplepos_t where)
132 {
133         if (!_session) {
134                 return;
135         }
136
137         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::xrun_handler, where)
138
139         if (_session && Config->get_create_xrun_marker() && _session->actively_recording()) {
140                 create_xrun_marker(where);
141         }
142
143         if (_session && Config->get_stop_recording_on_xrun() && _session->actively_recording()) {
144                 halt_on_xrun_message ();
145         }
146 }
147
148 bool
149 ARDOUR_UI::check_audioengine (Gtk::Window& parent)
150 {
151         if (!AudioEngine::instance()->running()) {
152                 MessageDialog msg (parent, string_compose (
153                                            _("%1 is not connected to any audio backend.\n"
154                                            "You cannot open or close sessions in this condition"),
155                                            PROGRAM_NAME));
156                 pop_back_splash (msg);
157                 msg.run ();
158                 return false;
159         }
160         return true;
161 }