2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2006 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2005-2009 Nick Mainsbridge <mainsbridge@gmail.com>
|
|
|
|
* Copyright (C) 2005-2018 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Karsten Wiese <fzuuzf@googlemail.com>
|
|
|
|
* Copyright (C) 2006-2007 Doug McLain <doug@nostar.net>
|
|
|
|
* Copyright (C) 2006-2009 Sampo Savolainen <v2@iki.fi>
|
|
|
|
* Copyright (C) 2007-2015 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2007-2015 Tim Mayberry <mojofunk@gmail.com>
|
|
|
|
* Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2013-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2013 John Emmas <john@creativepost.co.uk>
|
|
|
|
* Copyright (C) 2015 André Nusser <andre.nusser@googlemail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-13 00:14:48 -05:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cctype>
|
2023-08-26 07:37:44 -04:00
|
|
|
#include <clocale>
|
2013-09-23 21:35:17 -04:00
|
|
|
#include <cmath>
|
2023-08-26 07:37:44 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
2011-08-30 05:48:53 -04:00
|
|
|
#include <list>
|
2006-03-14 15:51:55 -05:00
|
|
|
#include <sys/stat.h>
|
2017-07-16 21:48:18 -04:00
|
|
|
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
|
|
|
#include <gtk/gtkpaned.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/paned.h>
|
2017-07-16 21:48:18 -04:00
|
|
|
#include <gtkmm/rc.h>
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
#include <gtkmm/window.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2016-05-29 11:46:10 -04:00
|
|
|
#include "pbd/basename.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/file_utils.h"
|
2007-06-27 08:12:44 -04:00
|
|
|
|
2018-11-27 17:57:53 -05:00
|
|
|
#include "ardour/audioengine.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
#include "ardour/auditioner.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/filesystem_paths.h"
|
2016-05-29 11:46:10 -04:00
|
|
|
#include "ardour/search_paths.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
#include "ardour/session.h"
|
2022-02-09 20:21:53 -05:00
|
|
|
#include "ardour/triggerbox.h"
|
2014-06-09 23:28:32 -04:00
|
|
|
|
2017-07-17 12:34:35 -04:00
|
|
|
#include "gtkmm2ext/colors.h"
|
2017-07-16 21:48:18 -04:00
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
2017-07-17 12:34:35 -04:00
|
|
|
#include "canvas/item.h"
|
|
|
|
|
2018-11-27 17:57:53 -05:00
|
|
|
#include "actions.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "ardour_ui.h"
|
2019-03-07 19:53:55 -05:00
|
|
|
#include "context_menu_helper.h"
|
2011-02-24 14:44:13 -05:00
|
|
|
#include "debug.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
#include "gui_thread.h"
|
2005-11-25 19:06:46 -05:00
|
|
|
#include "keyboard.h"
|
2023-08-26 07:30:44 -04:00
|
|
|
#include "main_clock.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
#include "public_editor.h"
|
|
|
|
#include "ui_config.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "utils.h"
|
2023-08-26 07:37:44 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Gtk;
|
2006-01-06 10:06:33 -05:00
|
|
|
using namespace Glib;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2009-12-04 17:51:32 -05:00
|
|
|
using Gtkmm2ext::Keyboard;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
namespace ARDOUR_UI_UTILS
|
|
|
|
{
|
|
|
|
sigc::signal<void> DPIReset;
|
2014-06-25 15:27:37 -04:00
|
|
|
}
|
2008-03-17 16:54:03 -04:00
|
|
|
|
2014-03-04 09:25:58 -05:00
|
|
|
#ifdef PLATFORM_WINDOWS
|
2023-08-26 07:37:44 -04:00
|
|
|
#define random() rand ()
|
2014-03-04 09:25:58 -05:00
|
|
|
#endif
|
|
|
|
|
2009-07-03 19:51:58 -04:00
|
|
|
/** Add an element to a menu, settings its sensitivity.
|
|
|
|
* @param m Menu to add to.
|
|
|
|
* @param e Element to add.
|
|
|
|
* @param s true to make sensitive, false to make insensitive
|
|
|
|
*/
|
|
|
|
void
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::add_item_with_sensitivity (Menu_Helpers::MenuList& m, Menu_Helpers::MenuElem e, bool s)
|
2009-07-03 19:51:58 -04:00
|
|
|
{
|
|
|
|
m.push_back (e);
|
|
|
|
if (!s) {
|
2023-08-26 07:37:44 -04:00
|
|
|
m.back ().set_sensitive (false);
|
2009-07-03 19:51:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
gint
|
2023-08-26 07:37:44 -04:00
|
|
|
ARDOUR_UI_UTILS::just_hide_it (GdkEventAny* /*ev*/, Gtk::Window* win)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-07-07 01:04:34 -04:00
|
|
|
win->hide ();
|
2009-06-20 09:41:55 -04:00
|
|
|
return 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2018-11-27 17:57:53 -05:00
|
|
|
static bool
|
|
|
|
idle_notify_engine_stopped ()
|
|
|
|
{
|
2018-12-19 16:44:35 -05:00
|
|
|
Glib::RefPtr<ToggleAction> tact = ActionManager::get_toggle_action ("Window", "toggle-audio-midi-setup");
|
2018-11-27 17:57:53 -05:00
|
|
|
|
|
|
|
MessageDialog msg (
|
2023-08-26 07:37:44 -04:00
|
|
|
_("The current operation is not possible because of an error communicating with the audio hardware."),
|
|
|
|
false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE, true);
|
2018-11-27 17:57:53 -05:00
|
|
|
|
|
|
|
msg.add_button (_("Cancel"), Gtk::RESPONSE_CANCEL);
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (tact && !tact->get_active ()) {
|
2018-11-27 17:57:53 -05:00
|
|
|
msg.add_button (_("Configure Hardware"), Gtk::RESPONSE_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.run () == Gtk::RESPONSE_OK) {
|
|
|
|
tact->set_active ();
|
|
|
|
}
|
|
|
|
return false; /* do not call again */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2018-11-28 08:56:04 -05:00
|
|
|
ARDOUR_UI_UTILS::engine_is_running ()
|
2018-11-27 17:57:53 -05:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
if (ARDOUR::AudioEngine::instance ()->running ()) {
|
2018-11-28 08:56:04 -05:00
|
|
|
return true;
|
2018-11-27 17:57:53 -05:00
|
|
|
}
|
2023-08-26 07:37:44 -04:00
|
|
|
Glib::signal_idle ().connect (sigc::ptr_fun (&idle_notify_engine_stopped));
|
2018-11-28 08:56:04 -05:00
|
|
|
return false;
|
2018-11-27 17:57:53 -05:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* xpm2rgb copied from nixieclock, which bore the legend:
|
|
|
|
|
|
|
|
nixieclock - a nixie desktop timepiece
|
|
|
|
Copyright (C) 2000 Greg Ercolano, erco@3dsite.com
|
|
|
|
|
|
|
|
and was released under the GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
unsigned char*
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::xpm2rgb (const char** xpm, uint32_t& w, uint32_t& h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
static long vals[256], val;
|
|
|
|
uint32_t t, x, y, colors, cpp;
|
|
|
|
unsigned char c;
|
2005-09-25 14:42:24 -04:00
|
|
|
unsigned char *savergb, *rgb;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// PARSE HEADER
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (sscanf (xpm[0], "%u%u%u%u", &w, &h, &colors, &cpp) != 4) {
|
2005-10-06 15:10:57 -04:00
|
|
|
error << string_compose (_("bad XPM header %1"), xpm[0])
|
2005-09-25 14:42:24 -04:00
|
|
|
<< endmsg;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
savergb = rgb = (unsigned char*)malloc (h * w * 3);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION
|
|
|
|
for (t = 0; t < colors; ++t) {
|
2023-08-26 07:37:44 -04:00
|
|
|
sscanf (xpm[t + 1], "%c c #%lx", &c, &val);
|
2005-09-25 14:42:24 -04:00
|
|
|
vals[c] = val;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// COLORMAP -> RGB CONVERSION
|
|
|
|
// Get low 3 bytes from vals[]
|
|
|
|
//
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
const char* p;
|
|
|
|
for (y = h - 1; y > 0; --y) {
|
|
|
|
for (p = xpm[1 + colors + (h - y - 1)], x = 0; x < w; x++, rgb += 3) {
|
|
|
|
val = vals[(int)*p++];
|
|
|
|
*(rgb + 2) = val & 0xff;
|
|
|
|
val >>= 8; // 2:B
|
|
|
|
*(rgb + 1) = val & 0xff;
|
|
|
|
val >>= 8; // 1:G
|
|
|
|
*(rgb + 0) = val & 0xff; // 0:R
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (savergb);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char*
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
static long vals[256], val;
|
|
|
|
uint32_t t, x, y, colors, cpp;
|
|
|
|
unsigned char c;
|
2005-09-25 14:42:24 -04:00
|
|
|
unsigned char *savergb, *rgb;
|
2023-08-26 07:37:44 -04:00
|
|
|
char transparent;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
// PARSE HEADER
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (sscanf (xpm[0], "%u%u%u%u", &w, &h, &colors, &cpp) != 4) {
|
2005-10-06 15:10:57 -04:00
|
|
|
error << string_compose (_("bad XPM header %1"), xpm[0])
|
2005-09-25 14:42:24 -04:00
|
|
|
<< endmsg;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
savergb = rgb = (unsigned char*)malloc (h * w * 4);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// LOAD XPM COLORMAP LONG ENOUGH TO DO CONVERSION
|
|
|
|
|
|
|
|
if (strstr (xpm[1], "None")) {
|
|
|
|
sscanf (xpm[1], "%c", &transparent);
|
|
|
|
t = 1;
|
|
|
|
} else {
|
|
|
|
transparent = 0;
|
2023-08-26 07:37:44 -04:00
|
|
|
t = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (; t < colors; ++t) {
|
2023-08-26 07:37:44 -04:00
|
|
|
sscanf (xpm[t + 1], "%c c #%lx", &c, &val);
|
2005-09-25 14:42:24 -04:00
|
|
|
vals[c] = val;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// COLORMAP -> RGB CONVERSION
|
|
|
|
// Get low 3 bytes from vals[]
|
|
|
|
//
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
const char* p;
|
|
|
|
for (y = h - 1; y > 0; --y) {
|
2005-09-25 14:42:24 -04:00
|
|
|
char alpha;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (p = xpm[1 + colors + (h - y - 1)], x = 0; x < w; x++, rgb += 4) {
|
2005-09-25 14:42:24 -04:00
|
|
|
if (transparent && (*p++ == transparent)) {
|
|
|
|
alpha = 0;
|
2023-08-26 07:37:44 -04:00
|
|
|
val = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2023-08-26 07:37:44 -04:00
|
|
|
alpha = 0xff;
|
|
|
|
val = vals[(int)*p];
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
*(rgb + 3) = alpha; // 3: alpha
|
|
|
|
*(rgb + 2) = val & 0xff;
|
|
|
|
val >>= 8; // 2:B
|
|
|
|
*(rgb + 1) = val & 0xff;
|
|
|
|
val >>= 8; // 1:G
|
|
|
|
*(rgb + 0) = val & 0xff; // 0:R
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (savergb);
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
/** Returns a Pango::FontDescription given a string describing the font.
|
2014-06-19 13:47:53 -04:00
|
|
|
*
|
|
|
|
* If the returned FontDescription does not specify a family, then
|
|
|
|
* the family is set to "Sans". This mirrors GTK's behaviour in
|
2015-10-04 14:51:05 -04:00
|
|
|
* gtkstyle.c.
|
2014-06-19 13:47:53 -04:00
|
|
|
*
|
|
|
|
* Some environments will force Pango to specify the family
|
|
|
|
* even if it was not specified in the string describing the font.
|
2015-10-04 14:51:05 -04:00
|
|
|
* Such environments should be left unaffected by this function,
|
2014-06-19 13:47:53 -04:00
|
|
|
* since the font family will be left alone.
|
|
|
|
*
|
|
|
|
* There may be other similar font specification enforcement
|
|
|
|
* that we might add here later.
|
|
|
|
*/
|
2014-06-19 11:18:37 -04:00
|
|
|
Pango::FontDescription
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::sanitized_font (std::string const& name)
|
2014-06-19 11:18:37 -04:00
|
|
|
{
|
|
|
|
Pango::FontDescription fd (name);
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (fd.get_family ().empty ()) {
|
2019-12-04 16:59:51 -05:00
|
|
|
/* default: "Sans" or "ArdourSans" */
|
|
|
|
fd.set_family (UIConfiguration::instance ().get_ui_font_family ());
|
2014-06-19 11:18:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2022-11-07 05:55:16 -05:00
|
|
|
Pango::FontDescription
|
|
|
|
ARDOUR_UI_UTILS::ardour_font (std::string const& name)
|
|
|
|
{
|
|
|
|
Pango::FontDescription fd (name);
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!fd.get_family ().empty () && fd.get_family ().find ("Mon") != std::string::npos) {
|
2022-11-07 05:55:16 -05:00
|
|
|
/* matches "ArdourMono", "Monaco" */
|
|
|
|
fd.set_family ("ArdourMono");
|
|
|
|
} else {
|
|
|
|
fd.set_family ("ArdourSans");
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2011-06-02 13:50:37 -04:00
|
|
|
Pango::FontDescription
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::get_font_for_style (string widgetname)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
Gtk::Window window (WINDOW_TOPLEVEL);
|
|
|
|
Gtk::Label foobar;
|
2006-08-01 00:05:15 -04:00
|
|
|
Glib::RefPtr<Gtk::Style> style;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-12-02 14:18:26 -05:00
|
|
|
window.add (foobar);
|
2005-09-25 14:42:24 -04:00
|
|
|
foobar.set_name (widgetname);
|
2023-08-26 07:37:44 -04:00
|
|
|
foobar.ensure_style ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-10-09 08:51:04 -04:00
|
|
|
style = foobar.get_style ();
|
2007-03-05 18:12:47 -05:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
Glib::RefPtr<const Pango::Layout> layout = foobar.get_layout ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
PangoFontDescription* pfd = const_cast<PangoFontDescription*> (pango_layout_get_font_description (const_cast<PangoLayout*> (layout->gobj ())));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-03-05 18:12:47 -05:00
|
|
|
if (!pfd) {
|
|
|
|
/* layout inherited its font description from a PangoContext */
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
PangoContext* ctxt = (PangoContext*)pango_layout_get_context (const_cast<PangoLayout*> (layout->gobj ()));
|
|
|
|
pfd = pango_context_get_font_description (ctxt);
|
2011-06-02 13:50:37 -04:00
|
|
|
return Pango::FontDescription (pfd); /* make a copy */
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2007-03-05 18:12:47 -05:00
|
|
|
|
2011-06-02 13:50:37 -04:00
|
|
|
return Pango::FontDescription (pfd); /* make a copy */
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-10-09 08:51:04 -04:00
|
|
|
|
2009-08-26 23:09:30 -04:00
|
|
|
bool
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::relay_key_press (GdkEventKey* ev, Gtk::Window* win)
|
2009-08-26 23:09:30 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
return ARDOUR_UI::instance ()->key_event_handler (ev, win);
|
2009-08-26 23:09:30 -04:00
|
|
|
}
|
|
|
|
|
2010-03-11 17:51:24 -05:00
|
|
|
bool
|
2021-06-06 10:11:26 -04:00
|
|
|
ARDOUR_UI_UTILS::emulate_key_event (unsigned int keyval)
|
2013-06-09 19:54:55 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
GdkDisplay* display = gtk_widget_get_display (GTK_WIDGET (ARDOUR_UI::instance ()->main_window ().gobj ()));
|
|
|
|
GdkKeymap* keymap = gdk_keymap_get_for_display (display);
|
|
|
|
GdkKeymapKey* keymapkey = NULL;
|
|
|
|
gint n_keys;
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!gdk_keymap_get_entries_for_keyval (keymap, keyval, &keymapkey, &n_keys))
|
|
|
|
return false;
|
|
|
|
if (n_keys != 1) {
|
|
|
|
g_free (keymapkey);
|
|
|
|
return false;
|
|
|
|
}
|
2013-06-09 19:54:55 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
Gtk::Window& main_window (ARDOUR_UI::instance ()->main_window ());
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2013-06-09 19:54:55 -04:00
|
|
|
GdkEventKey ev;
|
2023-08-26 07:37:44 -04:00
|
|
|
ev.type = GDK_KEY_PRESS;
|
|
|
|
ev.window = main_window.get_window ()->gobj ();
|
|
|
|
ev.send_event = FALSE;
|
|
|
|
ev.time = 0;
|
|
|
|
ev.state = 0;
|
|
|
|
ev.keyval = keyval;
|
|
|
|
ev.length = 0;
|
|
|
|
ev.string = const_cast<gchar*> ("");
|
2013-06-09 19:54:55 -04:00
|
|
|
ev.hardware_keycode = keymapkey[0].keycode;
|
2023-08-26 07:37:44 -04:00
|
|
|
ev.group = keymapkey[0].group;
|
|
|
|
g_free (keymapkey);
|
2013-06-09 19:54:55 -04:00
|
|
|
|
2015-09-04 11:49:56 -04:00
|
|
|
relay_key_press (&ev, &main_window);
|
2013-06-09 19:54:55 -04:00
|
|
|
ev.type = GDK_KEY_RELEASE;
|
2023-08-26 07:37:44 -04:00
|
|
|
return relay_key_press (&ev, &main_window);
|
2013-06-09 19:54:55 -04:00
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf>
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::get_xpm (std::string name)
|
2006-03-12 10:46:29 -05:00
|
|
|
{
|
2008-09-10 11:03:30 -04:00
|
|
|
if (!xpm_map[name]) {
|
2023-08-26 07:37:44 -04:00
|
|
|
Searchpath spath (ARDOUR::ardour_data_search_path ());
|
2007-06-27 08:12:44 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
spath.add_subdirectory_to_paths ("pixmaps");
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-06-23 01:06:54 -04:00
|
|
|
std::string data_file_path;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!find_file (spath, name, data_file_path)) {
|
2008-09-10 11:03:30 -04:00
|
|
|
fatal << string_compose (_("cannot find XPM file for %1"), name) << endmsg;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
try {
|
2023-08-26 07:37:44 -04:00
|
|
|
xpm_map[name] = Gdk::Pixbuf::create_from_file (data_file_path);
|
2019-04-13 11:48:27 -04:00
|
|
|
} catch (const Glib::Error& e) {
|
2023-08-26 07:37:44 -04:00
|
|
|
warning << "Caught Glib::Error: " << e.what () << endmsg;
|
2008-09-10 17:27:39 -04:00
|
|
|
}
|
2006-03-12 10:46:29 -05:00
|
|
|
}
|
2007-10-11 18:07:47 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
return xpm_map[name];
|
2006-03-12 10:46:29 -05:00
|
|
|
}
|
2006-03-14 15:51:55 -05:00
|
|
|
|
2016-05-30 12:19:09 -04:00
|
|
|
void
|
2023-08-26 07:37:44 -04:00
|
|
|
ARDOUR_UI_UTILS::get_color_themes (map<std::string, std::string>& themes)
|
2016-05-29 11:46:10 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
Searchpath spath (ARDOUR::theme_search_path ());
|
2016-05-29 11:46:10 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (vector<string>::iterator s = spath.begin (); s != spath.end (); ++s) {
|
2016-05-29 11:46:10 -04:00
|
|
|
vector<string> entries;
|
|
|
|
|
|
|
|
find_files_matching_pattern (entries, *s, string ("*") + UIConfiguration::color_file_suffix);
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (vector<string>::iterator e = entries.begin (); e != entries.end (); ++e) {
|
2016-05-29 11:46:10 -04:00
|
|
|
XMLTree tree;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
tree.read ((*e).c_str ());
|
|
|
|
XMLNode* root = tree.root ();
|
2016-05-29 11:46:10 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!root || root->name () != X_("Ardour")) {
|
2016-05-29 11:46:10 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-05-30 12:19:09 -04:00
|
|
|
XMLProperty const* prop = root->property (X_("theme-name"));
|
|
|
|
|
|
|
|
if (!prop) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
std::string color_name = basename_nosuffix (*e);
|
|
|
|
size_t sep = color_name.find_first_of ("-");
|
2016-11-27 15:53:16 -05:00
|
|
|
if (sep != string::npos) {
|
|
|
|
color_name = color_name.substr (0, sep);
|
|
|
|
}
|
2023-08-26 07:37:44 -04:00
|
|
|
themes.insert (make_pair (prop->value (), color_name));
|
2016-05-29 11:46:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-10 14:22:59 -04:00
|
|
|
vector<string>
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::get_icon_sets ()
|
2014-06-10 14:22:59 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
Searchpath spath (ARDOUR::ardour_data_search_path ());
|
2014-06-10 14:22:59 -04:00
|
|
|
spath.add_subdirectory_to_paths ("icons");
|
|
|
|
vector<string> r;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-06-10 14:22:59 -04:00
|
|
|
r.push_back (_("default"));
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (vector<string>::iterator s = spath.begin (); s != spath.end (); ++s) {
|
2014-06-10 14:22:59 -04:00
|
|
|
vector<string> entries;
|
|
|
|
|
2014-06-22 03:44:35 -04:00
|
|
|
get_paths (entries, *s, false, false);
|
2014-06-10 14:22:59 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (vector<string>::iterator e = entries.begin (); e != entries.end (); ++e) {
|
2014-06-18 22:33:14 -04:00
|
|
|
if (Glib::file_test (*e, Glib::FILE_TEST_IS_DIR)) {
|
2023-08-26 07:37:44 -04:00
|
|
|
r.push_back (Glib::filename_to_utf8 (Glib::path_get_basename (*e)));
|
2014-06-10 14:22:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
std::string
|
2014-09-10 19:39:15 -04:00
|
|
|
ARDOUR_UI_UTILS::get_icon_path (const char* cname, string icon_set, bool is_image)
|
2006-10-10 13:46:22 -04:00
|
|
|
{
|
2014-06-10 12:38:31 -04:00
|
|
|
std::string data_file_path;
|
2023-08-26 07:37:44 -04:00
|
|
|
string name = cname;
|
2014-09-10 19:39:15 -04:00
|
|
|
|
|
|
|
if (is_image) {
|
|
|
|
name += X_(".png");
|
|
|
|
}
|
2006-10-10 13:46:22 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
Searchpath spath (ARDOUR::ardour_data_search_path ());
|
2014-06-13 17:15:23 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!icon_set.empty () && icon_set != _("default")) {
|
2014-06-13 17:15:23 -04:00
|
|
|
/* add "icons/icon_set" but .. not allowed to add both of these at once */
|
|
|
|
spath.add_subdirectory_to_paths ("icons");
|
|
|
|
spath.add_subdirectory_to_paths (icon_set);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-06-19 07:23:12 -04:00
|
|
|
find_file (spath, name, data_file_path);
|
2014-11-18 17:39:00 -05:00
|
|
|
} else {
|
|
|
|
spath.add_subdirectory_to_paths ("icons");
|
|
|
|
find_file (spath, name, data_file_path);
|
2014-06-10 12:38:31 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (data_file_path.empty ()) {
|
|
|
|
Searchpath rc (ARDOUR::ardour_data_search_path ());
|
2016-05-17 07:12:05 -04:00
|
|
|
rc.add_subdirectory_to_paths ("resources");
|
|
|
|
find_file (rc, name, data_file_path);
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (is_image && data_file_path.empty ()) {
|
|
|
|
if (!icon_set.empty () && icon_set != _("default")) {
|
2014-06-10 12:38:31 -04:00
|
|
|
warning << string_compose (_("icon \"%1\" not found for icon set \"%2\", fallback to default"), cname, icon_set) << endmsg;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
Searchpath def (ARDOUR::ardour_data_search_path ());
|
2014-06-10 12:38:31 -04:00
|
|
|
def.add_subdirectory_to_paths ("icons");
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2014-06-19 07:23:12 -04:00
|
|
|
if (!find_file (def, name, data_file_path)) {
|
2023-08-26 07:37:44 -04:00
|
|
|
fatal << string_compose (_("cannot find icon image for %1 using %2"), name, spath.to_string ()) << endmsg;
|
|
|
|
abort (); /*NOTREACHED*/
|
2014-06-10 12:38:31 -04:00
|
|
|
}
|
|
|
|
}
|
2006-10-10 13:46:22 -04:00
|
|
|
|
2014-06-10 12:38:31 -04:00
|
|
|
return data_file_path;
|
|
|
|
}
|
2007-06-27 08:12:48 -04:00
|
|
|
|
2014-06-10 12:38:31 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf>
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::get_icon (const char* cname, string icon_set)
|
2014-06-10 12:38:31 -04:00
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> img;
|
|
|
|
try {
|
|
|
|
img = Gdk::Pixbuf::create_from_file (get_icon_path (cname, icon_set));
|
2023-08-26 07:37:44 -04:00
|
|
|
} catch (const Gdk::PixbufError& e) {
|
|
|
|
cerr << "Caught PixbufError: " << e.what () << endl;
|
2014-06-10 12:38:31 -04:00
|
|
|
} catch (...) {
|
|
|
|
error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
|
2006-10-10 13:46:22 -04:00
|
|
|
}
|
|
|
|
|
2014-06-10 12:38:31 -04:00
|
|
|
return img;
|
2009-07-28 16:51:28 -04:00
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
namespace ARDOUR_UI_UTILS
|
|
|
|
{
|
2009-10-14 12:10:01 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf>
|
2009-07-28 16:51:28 -04:00
|
|
|
get_icon (const char* cname)
|
|
|
|
{
|
2008-01-10 16:20:59 -05:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> img;
|
|
|
|
try {
|
2009-07-28 16:51:28 -04:00
|
|
|
img = Gdk::Pixbuf::create_from_file (get_icon_path (cname));
|
2023-08-26 07:37:44 -04:00
|
|
|
} catch (const Gdk::PixbufError& e) {
|
|
|
|
cerr << "Caught PixbufError: " << e.what () << endl;
|
2008-09-10 17:27:39 -04:00
|
|
|
} catch (...) {
|
2012-11-13 10:11:07 -05:00
|
|
|
error << string_compose (_("Caught exception while loading icon named %1"), cname) << endmsg;
|
2008-01-10 16:20:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return img;
|
2006-10-10 13:46:22 -04:00
|
|
|
}
|
2023-08-26 07:37:44 -04:00
|
|
|
} // namespace ARDOUR_UI_UTILS
|
2006-10-10 13:46:22 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
string
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::longest (vector<string>& strings)
|
2006-09-29 17:39:39 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
if (strings.empty ()) {
|
2006-09-29 17:39:39 -04:00
|
|
|
return string ("");
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
vector<string>::iterator longest = strings.begin ();
|
|
|
|
string::size_type longest_length = (*longest).length ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
vector<string>::iterator i = longest;
|
|
|
|
++i;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
while (i != strings.end ()) {
|
|
|
|
string::size_type len = (*i).length ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
if (len > longest_length) {
|
2023-08-26 07:37:44 -04:00
|
|
|
longest = i;
|
2006-09-29 17:39:39 -04:00
|
|
|
longest_length = len;
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
++i;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-09-29 17:39:39 -04:00
|
|
|
return *longest;
|
|
|
|
}
|
2006-11-29 23:21:32 -05:00
|
|
|
|
|
|
|
bool
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::key_is_legal_for_numeric_entry (guint keyval)
|
2006-11-29 23:21:32 -05:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
/* we assume that this does not change over the life of the process */
|
2012-11-13 13:05:09 -05:00
|
|
|
static int comma_decimal = -1;
|
|
|
|
|
|
|
|
switch (keyval) {
|
2023-08-26 07:37:44 -04:00
|
|
|
case GDK_period:
|
|
|
|
case GDK_comma:
|
|
|
|
if (comma_decimal < 0) {
|
|
|
|
std::lconv* lc = std::localeconv ();
|
|
|
|
if (strchr (lc->decimal_point, ',') != 0) {
|
|
|
|
comma_decimal = 1;
|
|
|
|
} else {
|
|
|
|
comma_decimal = 0;
|
|
|
|
}
|
2012-11-13 13:05:09 -05:00
|
|
|
}
|
2023-08-26 07:37:44 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2012-11-13 13:05:09 -05:00
|
|
|
}
|
|
|
|
|
2006-11-29 23:21:32 -05:00
|
|
|
switch (keyval) {
|
2023-08-26 07:37:44 -04:00
|
|
|
case GDK_decimalpoint:
|
|
|
|
case GDK_KP_Separator:
|
2012-11-13 13:05:09 -05:00
|
|
|
return true;
|
2023-08-26 07:37:44 -04:00
|
|
|
|
|
|
|
case GDK_period:
|
|
|
|
if (comma_decimal) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_comma:
|
|
|
|
if (comma_decimal) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_minus:
|
|
|
|
case GDK_plus:
|
|
|
|
case GDK_0:
|
|
|
|
case GDK_1:
|
|
|
|
case GDK_2:
|
|
|
|
case GDK_3:
|
|
|
|
case GDK_4:
|
|
|
|
case GDK_5:
|
|
|
|
case GDK_6:
|
|
|
|
case GDK_7:
|
|
|
|
case GDK_8:
|
|
|
|
case GDK_9:
|
|
|
|
case GDK_KP_Add:
|
|
|
|
case GDK_KP_Subtract:
|
|
|
|
case GDK_KP_Decimal:
|
|
|
|
case GDK_KP_0:
|
|
|
|
case GDK_KP_1:
|
|
|
|
case GDK_KP_2:
|
|
|
|
case GDK_KP_3:
|
|
|
|
case GDK_KP_4:
|
|
|
|
case GDK_KP_5:
|
|
|
|
case GDK_KP_6:
|
|
|
|
case GDK_KP_7:
|
|
|
|
case GDK_KP_8:
|
|
|
|
case GDK_KP_9:
|
|
|
|
case GDK_Return:
|
|
|
|
case GDK_BackSpace:
|
|
|
|
case GDK_Delete:
|
|
|
|
case GDK_KP_Enter:
|
|
|
|
case GDK_Home:
|
|
|
|
case GDK_End:
|
|
|
|
case GDK_Left:
|
|
|
|
case GDK_Right:
|
2012-11-13 13:05:09 -05:00
|
|
|
return true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
default:
|
|
|
|
break;
|
2006-11-29 23:21:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-25 15:27:37 -04:00
|
|
|
|
2023-09-25 11:07:15 -04:00
|
|
|
int
|
|
|
|
ARDOUR_UI_UTILS::guess_default_ui_scale ()
|
|
|
|
{
|
2023-10-30 16:52:43 -04:00
|
|
|
#ifdef __APPLE__
|
|
|
|
return 100;
|
|
|
|
#else
|
2023-09-25 11:07:15 -04:00
|
|
|
gint width = 0;
|
|
|
|
gint height = 0;
|
|
|
|
GdkScreen* screen = gdk_display_get_screen (gdk_display_get_default (), 0);
|
|
|
|
gint n_monitors = gdk_screen_get_n_monitors (screen);
|
|
|
|
|
|
|
|
if (!screen) {
|
|
|
|
return 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (gint i = 0; i < n_monitors; ++i) {
|
|
|
|
GdkRectangle rect;
|
|
|
|
gdk_screen_get_monitor_geometry (screen, i, &rect);
|
|
|
|
width = std::max (width, rect.width);
|
|
|
|
height = std::max (height, rect.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
float wx = width / 1920.f;
|
|
|
|
float hx = height / 1080.f;
|
|
|
|
float sx = std::min (wx, hx);
|
|
|
|
|
|
|
|
if (sx < 1.25) {
|
|
|
|
return 100;
|
|
|
|
} else if (sx < 1.6) {
|
|
|
|
return 150;
|
|
|
|
} else if (sx < 2.1) {
|
|
|
|
return 200;
|
|
|
|
} else {
|
|
|
|
return 250;
|
|
|
|
}
|
2023-10-30 16:52:43 -04:00
|
|
|
#endif
|
2023-09-25 11:07:15 -04:00
|
|
|
}
|
|
|
|
|
2009-08-29 16:48:11 -04:00
|
|
|
void
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::resize_window_to_proportion_of_monitor (Gtk::Window* window, int max_width, int max_height)
|
2009-08-29 16:48:11 -04:00
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Screen> screen = window->get_screen ();
|
2023-08-26 07:37:44 -04:00
|
|
|
Gdk::Rectangle monitor_rect;
|
2009-08-29 16:48:11 -04:00
|
|
|
screen->get_monitor_geometry (0, monitor_rect);
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
int const w = std::min (int (monitor_rect.get_width () * 0.8), max_width);
|
|
|
|
int const h = std::min (int (monitor_rect.get_height () * 0.8), max_height);
|
2009-08-29 16:48:11 -04:00
|
|
|
|
|
|
|
window->resize (w, h);
|
|
|
|
}
|
2009-11-12 15:39:53 -05:00
|
|
|
|
2010-01-14 19:52:22 -05:00
|
|
|
/** Replace _ with __ in a string; for use with menu item text to make underscores displayed correctly */
|
|
|
|
string
|
2023-08-26 07:37:44 -04:00
|
|
|
ARDOUR_UI_UTILS::escape_underscores (string const& s)
|
2010-01-14 19:52:22 -05:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
string o;
|
2010-01-14 19:52:22 -05:00
|
|
|
string::size_type const N = s.length ();
|
|
|
|
|
|
|
|
for (string::size_type i = 0; i < N; ++i) {
|
|
|
|
if (s[i] == '_') {
|
|
|
|
o += "__";
|
|
|
|
} else {
|
|
|
|
o += s[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return o;
|
|
|
|
}
|
2010-04-06 12:57:35 -04:00
|
|
|
|
2011-08-30 05:48:53 -04:00
|
|
|
Gdk::Color
|
2023-04-17 20:18:02 -04:00
|
|
|
ARDOUR_UI_UTILS::round_robin_palette_color ()
|
2011-08-30 05:48:53 -04:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
Gdk::Color newcolor;
|
|
|
|
string cp = UIConfiguration::instance ().get_stripable_color_palette ();
|
|
|
|
Gdk::ArrayHandle_Color gc = ColorSelection::palette_from_string (cp);
|
|
|
|
std::vector<Gdk::Color> c (gc);
|
2022-12-08 12:52:57 -05:00
|
|
|
static std::vector<Gdk::Color>::size_type index = 0;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (index >= c.size ()) {
|
2022-12-08 12:52:57 -05:00
|
|
|
index = 0;
|
|
|
|
}
|
2022-12-07 23:27:46 -05:00
|
|
|
|
2022-12-10 15:45:07 -05:00
|
|
|
return c[index++];
|
2022-12-08 12:52:57 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Gdk::Color
|
|
|
|
ARDOUR_UI_UTILS::unique_random_color (list<Gdk::Color>& used_colors)
|
|
|
|
{
|
|
|
|
Gdk::Color newcolor;
|
2022-12-07 23:27:46 -05:00
|
|
|
|
2011-08-30 05:48:53 -04:00
|
|
|
while (1) {
|
2013-06-27 15:51:57 -04:00
|
|
|
double h, s, v;
|
2011-08-30 05:48:53 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
h = fmod (random (), 360.0);
|
|
|
|
s = (random () % 65535) / 65535.0;
|
|
|
|
v = (random () % 65535) / 65535.0;
|
2011-08-30 05:48:53 -04:00
|
|
|
|
2013-06-27 15:51:57 -04:00
|
|
|
s = min (0.5, s); /* not too saturated */
|
2023-08-26 07:37:44 -04:00
|
|
|
v = max (0.9, v); /* not too bright */
|
2013-06-27 15:51:57 -04:00
|
|
|
newcolor.set_hsv (h, s, v);
|
2011-08-30 05:48:53 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (used_colors.size () == 0) {
|
2011-08-30 05:48:53 -04:00
|
|
|
used_colors.push_back (newcolor);
|
|
|
|
return newcolor;
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (list<Gdk::Color>::iterator i = used_colors.begin (); i != used_colors.end (); ++i) {
|
|
|
|
Gdk::Color c = *i;
|
|
|
|
float rdelta, bdelta, gdelta;
|
2011-08-30 05:48:53 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
rdelta = newcolor.get_red () - c.get_red ();
|
|
|
|
bdelta = newcolor.get_blue () - c.get_blue ();
|
|
|
|
gdelta = newcolor.get_green () - c.get_green ();
|
2011-08-30 05:48:53 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (sqrt (rdelta * rdelta + bdelta * bdelta + gdelta * gdelta) > 25.0) {
|
2013-06-27 15:57:48 -04:00
|
|
|
/* different enough */
|
2011-08-30 05:48:53 -04:00
|
|
|
used_colors.push_back (newcolor);
|
|
|
|
return newcolor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX need throttle here to make sure we don't spin for ever */
|
|
|
|
}
|
|
|
|
}
|
2013-09-23 21:35:17 -04:00
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
string
|
2014-06-25 15:27:37 -04:00
|
|
|
ARDOUR_UI_UTILS::rate_as_string (float r)
|
2013-09-23 21:35:17 -04:00
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
if (fmod (r, 1000.0f)) {
|
2023-08-26 07:37:44 -04:00
|
|
|
snprintf (buf, sizeof (buf), "%.1f kHz", r / 1000.0);
|
2013-09-23 21:35:17 -04:00
|
|
|
} else {
|
2023-08-26 07:37:44 -04:00
|
|
|
snprintf (buf, sizeof (buf), "%.0f kHz", r / 1000.0);
|
2013-09-23 21:35:17 -04:00
|
|
|
}
|
|
|
|
return buf;
|
|
|
|
}
|
2015-06-26 18:56:07 -04:00
|
|
|
|
2019-09-28 19:24:23 -04:00
|
|
|
string
|
|
|
|
ARDOUR_UI_UTILS::samples_as_time_string (samplecnt_t s, float rate, bool show_samples)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
if (rate <= 0) {
|
|
|
|
snprintf (buf, sizeof (buf), "--");
|
|
|
|
} else if (s == 0) {
|
|
|
|
snprintf (buf, sizeof (buf), "0");
|
|
|
|
} else if (s < 1000 && show_samples) {
|
|
|
|
/* 0 .. 999 spl */
|
2023-08-26 07:37:44 -04:00
|
|
|
snprintf (buf, sizeof (buf), "%" PRId64 " spl", s);
|
2019-09-28 19:24:23 -04:00
|
|
|
} else if (s < (rate / 1000.f)) {
|
|
|
|
/* 0 .. 999 usec */
|
2023-01-16 15:41:22 -05:00
|
|
|
snprintf (buf, sizeof (buf), u8"%.0f \u00B5s", s * 1e+6f / rate);
|
2019-09-28 19:24:23 -04:00
|
|
|
} else if (s < (rate / 100.f)) {
|
|
|
|
/* 1.000 .. 9.999 ms */
|
|
|
|
snprintf (buf, sizeof (buf), "%.3f ms", s * 1e+3f / rate);
|
|
|
|
} else if (s < (rate / 10.f)) {
|
|
|
|
/* 1.00 .. 99.99 ms */
|
|
|
|
snprintf (buf, sizeof (buf), "%.2f ms", s * 1e+3f / rate);
|
|
|
|
} else if (s < rate) {
|
|
|
|
/* 100.0 .. 999.9 ms */
|
|
|
|
snprintf (buf, sizeof (buf), "%.1f ms", s * 1e+3f / rate);
|
|
|
|
} else if (s < rate * 10.f) {
|
|
|
|
/* 1.000 s .. 9.999 s */
|
|
|
|
snprintf (buf, sizeof (buf), "%.3f s", s / rate);
|
|
|
|
} else if (s < rate * 90.f) {
|
|
|
|
/* 10.00 s .. 89.99 s */
|
|
|
|
snprintf (buf, sizeof (buf), "%.2f s", s / rate);
|
|
|
|
} else {
|
|
|
|
/* 1m30.0 ... */
|
|
|
|
snprintf (buf, sizeof (buf), "'%.0fm%.1f", s / (60.f * rate), fmodf (s / rate, 60));
|
|
|
|
}
|
|
|
|
buf[31] = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2022-02-04 18:12:38 -05:00
|
|
|
string
|
2022-02-24 15:30:54 -05:00
|
|
|
ARDOUR_UI_UTILS::midi_channels_as_string (std::bitset<16> channels)
|
2022-02-04 18:12:38 -05:00
|
|
|
{
|
2022-02-24 15:30:54 -05:00
|
|
|
if (channels.none ()) {
|
2022-02-04 18:12:38 -05:00
|
|
|
return _("none");
|
|
|
|
}
|
|
|
|
|
|
|
|
string rv;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
bool prior = i < 1 ? false : channels.test (i - 1);
|
|
|
|
bool current = channels.test (i);
|
|
|
|
bool next = i > 14 ? false : channels.test (i + 1);
|
|
|
|
bool nextnext = i > 13 ? false : channels.test (i + 2);
|
|
|
|
bool future = false;
|
|
|
|
for (int f = i + 1; f < 16; f++) {
|
|
|
|
if (channels.test (f)) {
|
2022-02-24 15:30:54 -05:00
|
|
|
future = true;
|
2022-02-04 18:12:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 15:30:54 -05:00
|
|
|
if (prior && current && next) {
|
|
|
|
/* I'm in the middle of a consecutive chain, maybe just add a dash */
|
2023-08-26 07:37:44 -04:00
|
|
|
if (!rv.empty () && (rv.rfind ("-") != rv.length () - 1)) {
|
2022-02-24 15:30:54 -05:00
|
|
|
rv += "-";
|
|
|
|
}
|
|
|
|
continue;
|
2022-02-04 18:12:38 -05:00
|
|
|
}
|
|
|
|
|
2022-02-24 15:30:54 -05:00
|
|
|
if (current) {
|
|
|
|
/* here I am! */
|
2023-08-26 07:37:44 -04:00
|
|
|
rv += to_string<int> (i + 1);
|
2022-02-24 15:30:54 -05:00
|
|
|
}
|
2022-02-04 18:12:38 -05:00
|
|
|
|
2022-02-24 15:30:54 -05:00
|
|
|
if (current && future && !(next && nextnext)) {
|
|
|
|
/* there are channels after me but they are not 3 consecutive; add a comma */
|
|
|
|
rv += ",";
|
|
|
|
}
|
|
|
|
}
|
2022-02-04 18:12:38 -05:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2015-06-26 18:56:07 -04:00
|
|
|
bool
|
2023-08-26 07:37:44 -04:00
|
|
|
ARDOUR_UI_UTILS::windows_overlap (Gtk::Window* a, Gtk::Window* b)
|
2015-06-26 18:56:07 -04:00
|
|
|
{
|
|
|
|
if (!a || !b) {
|
|
|
|
return false;
|
|
|
|
}
|
2023-08-26 07:37:44 -04:00
|
|
|
if (a->get_screen () == b->get_screen ()) {
|
2015-06-26 18:56:07 -04:00
|
|
|
gint ex, ey, ew, eh;
|
|
|
|
gint mx, my, mw, mh;
|
|
|
|
|
|
|
|
a->get_position (ex, ey);
|
|
|
|
a->get_size (ew, eh);
|
|
|
|
b->get_position (mx, my);
|
|
|
|
b->get_size (mw, mh);
|
|
|
|
|
|
|
|
GdkRectangle e;
|
|
|
|
GdkRectangle m;
|
|
|
|
GdkRectangle r;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
e.x = ex;
|
|
|
|
e.y = ey;
|
|
|
|
e.width = ew;
|
2015-06-26 18:56:07 -04:00
|
|
|
e.height = eh;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
m.x = mx;
|
|
|
|
m.y = my;
|
|
|
|
m.width = mw;
|
2015-06-26 18:56:07 -04:00
|
|
|
m.height = mh;
|
|
|
|
|
|
|
|
if (gdk_rectangle_intersect (&e, &m, &r)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2015-10-12 06:29:16 -04:00
|
|
|
|
|
|
|
bool
|
2015-11-01 15:00:05 -05:00
|
|
|
ARDOUR_UI_UTILS::overwrite_file_dialog (Gtk::Window& parent, string title, string text)
|
2015-10-12 06:29:16 -04:00
|
|
|
{
|
2015-11-01 15:00:05 -05:00
|
|
|
ArdourDialog dialog (parent, title, true);
|
2023-08-26 07:37:44 -04:00
|
|
|
Label label (text);
|
2015-10-12 06:29:16 -04:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
dialog.get_vbox ()->pack_start (label, true, true);
|
2015-10-12 06:29:16 -04:00
|
|
|
dialog.add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
|
|
|
|
dialog.add_button (_("Overwrite"), Gtk::RESPONSE_ACCEPT);
|
|
|
|
dialog.show_all ();
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
switch (dialog.run ()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
2015-10-12 06:29:16 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-21 19:22:40 -04:00
|
|
|
|
|
|
|
bool
|
|
|
|
ARDOUR_UI_UTILS::running_from_source_tree ()
|
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
gchar const* x = g_getenv ("ARDOUR_THEMES_PATH");
|
2016-06-21 19:22:40 -04:00
|
|
|
return x && (string (x).find ("gtk2_ardour") != string::npos);
|
|
|
|
}
|
2019-03-07 19:53:55 -05:00
|
|
|
|
|
|
|
Gtk::Menu*
|
|
|
|
ARDOUR_UI_UTILS::shared_popup_menu ()
|
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
return ARDOUR_UI::instance ()->shared_popup_menu ();
|
2019-03-07 19:53:55 -05:00
|
|
|
}
|
2021-12-13 16:50:04 -05:00
|
|
|
|
|
|
|
bool
|
|
|
|
ARDOUR_UI_UTILS::convert_drop_to_paths (vector<string>& paths, const SelectionData& data)
|
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
vector<string> uris = data.get_uris ();
|
2021-12-13 16:50:04 -05:00
|
|
|
|
|
|
|
if (uris.empty ()) {
|
|
|
|
/* This is seriously fucked up. Nautilus doesn't say that its URI lists
|
|
|
|
* are actually URI lists. So do it by hand.
|
|
|
|
*/
|
2023-08-26 07:37:44 -04:00
|
|
|
if (data.get_target () != "text/plain") {
|
2021-12-13 16:50:04 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse the "uri-list" format that Nautilus provides,
|
|
|
|
* where each pathname is delimited by \r\n.
|
|
|
|
*
|
|
|
|
* THERE MAY BE NO NULL TERMINATING CHAR!!!
|
|
|
|
*/
|
2023-08-26 07:37:44 -04:00
|
|
|
string txt = data.get_text ();
|
2021-12-13 16:50:04 -05:00
|
|
|
|
2022-01-20 15:48:13 -05:00
|
|
|
/* copy to char* for easy char-wise checks and modification */
|
2023-08-26 07:37:44 -04:00
|
|
|
char* tmp = (char*)malloc (txt.length () + 1);
|
2022-01-20 15:48:13 -05:00
|
|
|
char* p = tmp;
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
txt.copy (p, txt.length (), 0);
|
|
|
|
p[txt.length ()] = '\0';
|
2021-12-13 16:50:04 -05:00
|
|
|
|
|
|
|
while (p) {
|
|
|
|
if (*p != '#') {
|
|
|
|
while (g_ascii_isspace (*p)) {
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* q = p;
|
|
|
|
while (*q && (*q != '\n') && (*q != '\r')) {
|
|
|
|
q++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (q > p) {
|
|
|
|
--q;
|
|
|
|
while (q > p && g_ascii_isspace (*q)) {
|
|
|
|
--q;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (q > p) {
|
|
|
|
uris.push_back (string (p, q - p + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
p = strchr (p, '\n');
|
|
|
|
if (p) {
|
|
|
|
++p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 15:48:13 -05:00
|
|
|
free ((void*)tmp);
|
2021-12-13 16:50:04 -05:00
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
if (uris.empty ()) {
|
2021-12-13 16:50:04 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-26 07:37:44 -04:00
|
|
|
for (vector<string>::iterator i = uris.begin (); i != uris.end (); ++i) {
|
|
|
|
if ((*i).substr (0, 7) == "file://") {
|
2021-12-13 16:50:04 -05:00
|
|
|
paths.push_back (Glib::filename_from_uri (*i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return !paths.empty ();
|
|
|
|
}
|
2022-02-09 20:21:53 -05:00
|
|
|
|
|
|
|
void
|
2023-02-16 18:33:28 -05:00
|
|
|
ARDOUR_UI_UTILS::copy_patch_changes (std::shared_ptr<ARDOUR::Auditioner> a, std::shared_ptr<ARDOUR::Trigger> t)
|
2022-02-09 20:21:53 -05:00
|
|
|
{
|
2023-08-26 07:37:44 -04:00
|
|
|
std::shared_ptr<ARDOUR::MIDITrigger> mt = std::dynamic_pointer_cast<ARDOUR::MIDITrigger> (t);
|
2022-02-09 20:21:53 -05:00
|
|
|
|
|
|
|
if (!mt || !a) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (uint8_t c = 0; c < 16; ++c) {
|
2023-08-26 07:37:44 -04:00
|
|
|
if (a->patch_change (c).is_set ()) {
|
2022-02-09 20:21:53 -05:00
|
|
|
mt->set_patch_change (a->patch_change (c));
|
|
|
|
} else {
|
|
|
|
mt->unset_patch_change (c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-26 07:30:44 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI_UTILS::format_position (ARDOUR::Session* s, Temporal::timepos_t const& p, char* buf, size_t bufsize, bool onoff)
|
|
|
|
{
|
|
|
|
Temporal::BBT_Time bbt;
|
|
|
|
Timecode::Time timecode;
|
|
|
|
samplepos_t pos (p.samples ());
|
|
|
|
|
|
|
|
if (pos < 0) {
|
|
|
|
error << string_compose (_("format_position: negative timecode position: %1"), pos) << endmsg;
|
|
|
|
snprintf (buf, bufsize, "invalid");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ARDOUR_UI::instance ()->primary_clock->mode ()) {
|
|
|
|
case AudioClock::BBT:
|
|
|
|
bbt = Temporal::TempoMap::use ()->bbt_at (p);
|
|
|
|
if (onoff) {
|
|
|
|
snprintf (buf, bufsize, "%03d|%02d|%04d", bbt.bars, bbt.beats, bbt.ticks);
|
|
|
|
} else {
|
|
|
|
snprintf (buf, bufsize, "(%03d|%02d|%04d)", bbt.bars, bbt.beats, bbt.ticks);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioClock::MinSec:
|
|
|
|
samplepos_t left;
|
|
|
|
int hrs;
|
|
|
|
int mins;
|
|
|
|
float secs;
|
|
|
|
|
|
|
|
left = pos;
|
|
|
|
hrs = (int)floor (left / (s->sample_rate () * 60.0f * 60.0f));
|
|
|
|
left -= (samplecnt_t)floor (hrs * s->sample_rate () * 60.0f * 60.0f);
|
|
|
|
mins = (int)floor (left / (s->sample_rate () * 60.0f));
|
|
|
|
left -= (samplecnt_t)floor (mins * s->sample_rate () * 60.0f);
|
|
|
|
secs = left / (float)s->sample_rate ();
|
|
|
|
if (onoff) {
|
|
|
|
snprintf (buf, bufsize, "%02d:%02d:%06.3f", hrs, mins, secs);
|
|
|
|
} else {
|
|
|
|
snprintf (buf, bufsize, "(%02d:%02d:%06.3f)", hrs, mins, secs);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioClock::Seconds:
|
|
|
|
if (onoff) {
|
|
|
|
snprintf (buf, bufsize, "%.1f", pos / (float)s->sample_rate ());
|
|
|
|
} else {
|
|
|
|
snprintf (buf, bufsize, "(%.1f)", pos / (float)s->sample_rate ());
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioClock::Samples:
|
|
|
|
if (onoff) {
|
|
|
|
snprintf (buf, bufsize, "%" PRId64, pos);
|
|
|
|
} else {
|
|
|
|
snprintf (buf, bufsize, "(%" PRId64 ")", pos);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AudioClock::Timecode:
|
|
|
|
default:
|
|
|
|
s->timecode_time (pos, timecode);
|
|
|
|
if (onoff) {
|
|
|
|
snprintf (buf, bufsize, "%02d:%02d:%02d:%02d", timecode.hours, timecode.minutes, timecode.seconds, timecode.frames);
|
|
|
|
} else {
|
|
|
|
snprintf (buf, bufsize, "(%02d:%02d:%02d:%02d)", timecode.hours, timecode.minutes, timecode.seconds, timecode.frames);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|