ardour.git
4 years agoremove the (unused) concept of a MIDI patchfile folder per session
Paul Davis [Mon, 6 Jan 2020 01:47:59 +0000 (18:47 -0700)]
remove the (unused) concept of a MIDI patchfile folder per session

4 years agomove MidiPatchManager initialization into ARDOUR "global" scope, rather than per...
Paul Davis [Mon, 6 Jan 2020 01:34:40 +0000 (18:34 -0700)]
move MidiPatchManager initialization into ARDOUR "global" scope, rather than per session

4 years agouse glibmm threads for the midnam load thread, instead of raw pthreads (for portability)
Paul Davis [Mon, 6 Jan 2020 00:51:18 +0000 (17:51 -0700)]
use glibmm threads for the midnam load thread, instead of raw pthreads (for portability)

4 years agoremove unnecessary call to xmlKeepBlanksDefault()
Paul Davis [Mon, 6 Jan 2020 00:50:06 +0000 (17:50 -0700)]
remove unnecessary call to xmlKeepBlanksDefault()

4 years agomove call to xmlKeepBlanksDefault(0) to before the creation of an XML parser context
Paul Davis [Mon, 6 Jan 2020 00:49:35 +0000 (17:49 -0700)]
move call to xmlKeepBlanksDefault(0) to before the creation of an XML parser context

the value is used by the parser context; the old code called it only after the *first* parser context
was created. therefore the first XMLTree::read() call has its behavior determined by libxml2's default
for this value, rather than by our explicit choice (do not treat whitespace as a note). All subequent
read() calls will use our value.

This variable inside libxml2 is actually per-thread, which just increases the stakes for calling
xmlKeepBlanksDefault() at the right time

4 years agoAdd Lua bindings for UIConfiguration variables
Robin Gareus [Mon, 6 Jan 2020 00:30:19 +0000 (01:30 +0100)]
Add Lua bindings for UIConfiguration variables

4 years agorepeat baf0cdcbef1 but for BaseUI, thus covering all control protocols
Paul Davis [Sun, 5 Jan 2020 18:40:59 +0000 (11:40 -0700)]
repeat baf0cdcbef1 but for BaseUI, thus covering all control protocols

4 years agofix handling of flags in the OSC input handler
Paul Davis [Sun, 5 Jan 2020 18:25:23 +0000 (11:25 -0700)]
fix handling of flags in the OSC input handler

Some builds of glib on macOS end up delivering IO_PRI when IO_IN is also set. This differs from our own build stack
version, but it isn't really an error, so we should handle it.

4 years agoAllow public access to the editor-mixer-strip
Robin Gareus [Sun, 5 Jan 2020 18:22:14 +0000 (19:22 +0100)]
Allow public access to the editor-mixer-strip

This is currently used by Mixbus to sync visibility of switches on
the editor-mixer-strip with the main mixer.

4 years agoAdd a missing semicolon
John Emmas [Sun, 5 Jan 2020 10:29:35 +0000 (10:29 +0000)]
Add a missing semicolon

4 years agoPixel-pushing: editor-meter size and alignment
Robin Gareus [Sat, 4 Jan 2020 22:22:34 +0000 (23:22 +0100)]
Pixel-pushing: editor-meter size and alignment

Previously the "reset peaks" button expanded to incredible height
when the GUI was scaled. Now the meter fills available space instead.

4 years agoadd extensive comment for posterity
Paul Davis [Sat, 4 Jan 2020 01:41:24 +0000 (18:41 -0700)]
add extensive comment for posterity

4 years agoReturn of image-surface backed canvas (windows graphics performance)
Robin Gareus [Fri, 3 Jan 2020 23:29:48 +0000 (00:29 +0100)]
Return of image-surface backed canvas (windows graphics performance)

This partially reverts 2edbda252619b.

Using cairo-groups increases performance on MacOS, and retains
retina-resolution.
However it adds a performance regression for MS Windows graphics
rendering. cairo-groups use a "similar" surface, not an image surface.
Empirically this adds significant overhead compared to rendering
using the CPU and using bitblt.

4 years agofix recent bad commit
Paul Davis [Fri, 3 Jan 2020 23:18:55 +0000 (16:18 -0700)]
fix recent bad commit

4 years agofix DiskReader::overwrite_existing_audio()
Paul Davis [Fri, 3 Jan 2020 23:12:45 +0000 (16:12 -0700)]
fix DiskReader::overwrite_existing_audio()

Several math/geometry errors here

4 years agoNOOP: line refolding
Paul Davis [Fri, 3 Jan 2020 23:10:58 +0000 (16:10 -0700)]
NOOP: line refolding

4 years agoFix linux installer script
Robin Gareus [Fri, 3 Jan 2020 03:33:33 +0000 (04:33 +0100)]
Fix linux installer script

4 years agoinstaller-script ARM CPU support
Robin Gareus [Fri, 3 Jan 2020 01:22:11 +0000 (02:22 +0100)]
installer-script ARM CPU support

4 years agoUnconditionally save instant.xml on session-close
Robin Gareus [Thu, 2 Jan 2020 18:06:21 +0000 (19:06 +0100)]
Unconditionally save instant.xml on session-close

This forces saving session-specific GUI settings (Playhead
position, zoom/scroll with stationary PH, window and pane
positions, etc.

While many GUI operations immediately cause an instant.xml
save, changing the playhead-pos in particular does not, nor
mark the session as modified.

This fixes an issue:
 1. open session
 2. move playhead
 3. close session
 4. re-open session, expect playhead at position from (2)

4 years agoFix crash when X11 is not available for VST UIs
Robin Gareus [Wed, 1 Jan 2020 20:56:12 +0000 (21:56 +0100)]
Fix crash when X11 is not available for VST UIs

This should not happen -- VST gui_event_loop is only
started if LXVST_XDisplay is not NULL.
However the eventloop itself checks if LXVST_XDisplay is set,
so this might happen with headless builds that still have
access to a display, or due to some async event.

4 years agoRemove debug output
Robin Gareus [Wed, 1 Jan 2020 19:52:07 +0000 (20:52 +0100)]
Remove debug output

4 years agoBump (C) year: the year of Ardour
Robin Gareus [Wed, 1 Jan 2020 12:41:27 +0000 (13:41 +0100)]
Bump (C) year: the year of Ardour

4 years agoconvert GenericMIDI into a real control protocol module, with its own event loop...
Paul Davis [Tue, 31 Dec 2019 19:06:00 +0000 (12:06 -0700)]
convert GenericMIDI into a real control protocol module, with its own event loop and ports

4 years agoensure that xmlKeepBlankDefault() is called early in instance-life, from PBD::init()
Paul Davis [Tue, 31 Dec 2019 19:05:06 +0000 (12:05 -0700)]
ensure that xmlKeepBlankDefault() is called early in instance-life, from PBD::init()

See comment for details on why

4 years agoremove MIDI Control input and output ports from session-level objects
Paul Davis [Mon, 30 Dec 2019 18:49:20 +0000 (11:49 -0700)]
remove MIDI Control input and output ports from session-level objects

4 years agoFix two more cases of of C99 strtoll()
John Emmas [Tue, 31 Dec 2019 10:11:18 +0000 (10:11 +0000)]
Fix two more cases of of C99 strtoll()

4 years agoFix MSVC builds, use C89 strtol() instead of C99 strtoll()
Robin Gareus [Mon, 30 Dec 2019 18:05:10 +0000 (19:05 +0100)]
Fix MSVC builds, use C89 strtol() instead of C99 strtoll()

For the case at hand (plugin scale-points) it's highly unlikely to
encounter numbers > INT_MAX.

4 years agorestore early-return from fixup_bundle_environment() on macOS if not running from...
Paul Davis [Mon, 30 Dec 2019 17:36:04 +0000 (10:36 -0700)]
restore early-return from fixup_bundle_environment() on macOS if not running from a bundle

Mistakenly removed while getting stdout/stderr logging to work

4 years agouse a local version (copy) of the G_SOURCE_FUNC macro, since it is not available...
Paul Davis [Mon, 30 Dec 2019 16:49:23 +0000 (09:49 -0700)]
use a local version (copy) of the G_SOURCE_FUNC macro, since it is not available in the GTK+ version we use for the official build stack

4 years agoFix formatting samplecnt_t (aka int64_t aka long long int)
Robin Gareus [Mon, 30 Dec 2019 15:05:25 +0000 (16:05 +0100)]
Fix formatting samplecnt_t (aka int64_t aka long long int)

4 years agoRevert "fix a cast warning (as recommended in GTK+ docs"
Robin Gareus [Mon, 30 Dec 2019 15:00:22 +0000 (16:00 +0100)]
Revert "fix a cast warning (as recommended in GTK+ docs"

This reverts commit af30a6f001f0758155b3ece040fc2baa643a29de

because it breaks OSX/MacOS builds:
libs/surfaces/mackie/mackie_control_protocol.cc:945: error: 'G_SOURCE_FUNC' was not declared in this scope

4 years agomove Transport Masters prefs tab under Transport, with LTC and MTC as subtabs
Paul Davis [Mon, 30 Dec 2019 02:38:04 +0000 (19:38 -0700)]
move Transport Masters prefs tab under Transport, with LTC and MTC as subtabs

4 years agoexpand use of new BasicUI API for transport button state to all control surfaces
Paul Davis [Mon, 30 Dec 2019 01:53:22 +0000 (18:53 -0700)]
expand use of new BasicUI API for transport button state to all control surfaces

4 years agouse new Session API to deal with transport state
Paul Davis [Mon, 30 Dec 2019 01:43:37 +0000 (18:43 -0700)]
use new Session API to deal with transport state

Transition to use BasicUI button state API to come

4 years agouse new BasicUI and Session API to deal with transport state
Paul Davis [Mon, 30 Dec 2019 01:43:07 +0000 (18:43 -0700)]
use new BasicUI and Session API to deal with transport state

4 years agoprovide new methods for BasicUI that wrap the "complexity" of how to show transport...
Paul Davis [Mon, 30 Dec 2019 01:42:34 +0000 (18:42 -0700)]
provide new methods for BasicUI that wrap the "complexity" of how to show transport state via lit buttons

4 years agorecomment a DEBUG_TRACE statement that generates too much output with -D transport
Paul Davis [Mon, 30 Dec 2019 01:41:46 +0000 (18:41 -0700)]
recomment a DEBUG_TRACE statement that generates too much output with -D transport

4 years agoadd EMIT_SIGNAL comment
Paul Davis [Mon, 30 Dec 2019 01:41:23 +0000 (18:41 -0700)]
add EMIT_SIGNAL comment

4 years agoadd Session::transport_stopped_or_stopping()
Paul Davis [Mon, 30 Dec 2019 01:41:02 +0000 (18:41 -0700)]
add Session::transport_stopped_or_stopping()

Session::TransportStateChanged notifies about transport stop before the stop is complete (i.e. at the start of the declick).
Various other objects (notably control surfaces) connect to this signal and use it to modify their displayed state.
We need a method that can tell them we are stopped (or stopping) even though we are not "fully" stopped yet. This is
that method

4 years agofix a cast warning (as recommended in GTK+ docs
Paul Davis [Mon, 30 Dec 2019 00:48:18 +0000 (17:48 -0700)]
fix a cast warning (as recommended in GTK+ docs

4 years agoUse human-numeric-sort for plugin scale-points
Robin Gareus [Sun, 29 Dec 2019 18:48:45 +0000 (19:48 +0100)]
Use human-numeric-sort for plugin scale-points

4 years agoAdd a numerically_less compare operator
Robin Gareus [Sun, 29 Dec 2019 18:47:48 +0000 (19:47 +0100)]
Add a numerically_less compare operator

This is similar to sort(1) --human-numeric-sort,
as opposed to naturally_less() negative numbers, hex-prefixes
and SI metric prefixes are taken into account.

4 years agofix JACK transport sync
Paul Davis [Sat, 28 Dec 2019 04:15:16 +0000 (21:15 -0700)]
fix JACK transport sync

key change: to sync with JACK always locate jack-position PLUS buffer-sized-rounded-worst_latency_preroll() ahead

4 years agoadd new Session method to return the worst_latency_preroll() value rounded up to...
Paul Davis [Sat, 28 Dec 2019 04:11:38 +0000 (21:11 -0700)]
add new Session method to return the worst_latency_preroll() value rounded up to the nearest buffer size

4 years agoregister TransportState enum for use with enumwriter
Paul Davis [Sat, 28 Dec 2019 04:10:27 +0000 (21:10 -0700)]
register TransportState enum for use with enumwriter

4 years agoNO-OP: whitespace
Robin Gareus [Fri, 27 Dec 2019 17:42:20 +0000 (18:42 +0100)]
NO-OP: whitespace

4 years agoConsolidate mini-timeline rendering
Robin Gareus [Fri, 27 Dec 2019 11:46:32 +0000 (12:46 +0100)]
Consolidate mini-timeline rendering

4 years agoPreferences/Config changes for image-surface settings
Robin Gareus [Thu, 26 Dec 2019 22:57:04 +0000 (23:57 +0100)]
Preferences/Config changes for image-surface settings

4 years agoReplace explicit image-surface with cairo pattern/group
Robin Gareus [Thu, 26 Dec 2019 22:55:44 +0000 (23:55 +0100)]
Replace explicit image-surface with cairo pattern/group

For MacOS/X this is equivalent, rendering happens using a
CGBitmapContext + image-surface. Windows and Linux needs profiling
for respective equivalent surfaces.

4 years agoAllow for per-widget image-surface backing
Robin Gareus [Thu, 26 Dec 2019 17:19:21 +0000 (18:19 +0100)]
Allow for per-widget image-surface backing

This is an intermediate commit, before replacing image surfaces with
cairo pattern groups.

The eventual goal is to reduce flickering and/or use
CPU + bitblt for specific widgets instead of cairo
graphics-cards accel.

This also removes excessive calls to getenv() for every rendering
operation.

4 years agoremove unused member
Paul Davis [Fri, 27 Dec 2019 17:50:56 +0000 (10:50 -0700)]
remove unused member

Note: there is no global state for "the" transport master, since we have several at all times now

4 years agovariable rename
Paul Davis [Fri, 27 Dec 2019 17:49:14 +0000 (10:49 -0700)]
variable rename

4 years agoimprove parseability of a comment
Paul Davis [Fri, 27 Dec 2019 16:29:28 +0000 (09:29 -0700)]
improve parseability of a comment

4 years agoVkeybd: force release notes on panic
Robin Gareus [Thu, 26 Dec 2019 11:17:20 +0000 (12:17 +0100)]
Vkeybd: force release notes on panic

If key(s) are still being pressed, a key-repeat will re-trigger
the most recently pressed note (depending on keyboard settings).

4 years agoUse weak-ptr for source added/removed signals (2/2)
Robin Gareus [Wed, 25 Dec 2019 17:00:57 +0000 (18:00 +0100)]
Use weak-ptr for source added/removed signals (2/2)

4 years agoUse weak-ptr for source added/removed signals (1/2)
Robin Gareus [Wed, 25 Dec 2019 16:59:38 +0000 (17:59 +0100)]
Use weak-ptr for source added/removed signals (1/2)

This might fix a "SessionHandleRef exists across session deletion",
when the shared_ptr was be pushed onto a x-thread pool, and not
invalidated in time before the session was closed.

4 years agoPrevent copy-construction of sources to be destroyed list
Robin Gareus [Wed, 25 Dec 2019 16:57:10 +0000 (17:57 +0100)]
Prevent copy-construction of sources to be destroyed list

destroy_sources () is only called from Session::remove_last_capture ().
The list of sources to be destroyed is the local scope of that method
and will hold a reference to the object.
copy-construct the list and removing elements one by one from the
copy is only unnecessary overhead.

4 years agoNO-OP: comment signal emission
Robin Gareus [Wed, 25 Dec 2019 16:52:02 +0000 (17:52 +0100)]
NO-OP: comment signal emission

4 years agoVkeybd: improve velocity dropdown usability
Robin Gareus [Wed, 25 Dec 2019 11:46:34 +0000 (12:46 +0100)]
Vkeybd: improve velocity dropdown usability

Limit velocity dropdown to a subset of most used values, but
allow to select any value using mouse-wheel

4 years agoVkeybd: use ArdourWidgets for all GUI elements
Robin Gareus [Tue, 24 Dec 2019 17:15:09 +0000 (18:15 +0100)]
Vkeybd: use ArdourWidgets for all GUI elements

Remove Gtk widgets and improve look&feel consistency.

4 years agouse new method in MidiPatchManager to use MIDNAM data when setting a MidiTimeAxisView
Paul Davis [Mon, 23 Dec 2019 17:26:33 +0000 (10:26 -0700)]
use new method in MidiPatchManager to use MIDNAM data when setting a MidiTimeAxisView

4 years agoadd a mechanism to use existing MIDNAM info and connect to PatchesChanged in future...
Paul Davis [Mon, 23 Dec 2019 17:26:05 +0000 (10:26 -0700)]
add a mechanism to use existing MIDNAM info and connect to PatchesChanged in future, atomically

The atomically is with respect to the initial thread-based MIDNAM loading

4 years agobasics of threaded MIDNAM loading
Paul Davis [Thu, 19 Dec 2019 20:30:18 +0000 (13:30 -0700)]
basics of threaded MIDNAM loading

4 years agoVkeybd: numeric only spinboxes for octave and velocity
Robin Gareus [Thu, 19 Dec 2019 22:02:19 +0000 (23:02 +0100)]
Vkeybd: numeric only spinboxes for octave and velocity

based on a patch by Alex Mitchell

4 years agoslightly enhanced error handling when loading MIDNAM data
Paul Davis [Thu, 19 Dec 2019 20:14:19 +0000 (13:14 -0700)]
slightly enhanced error handling when loading MIDNAM data

4 years agohandle MIDI rendering correctly when there are no regions
Paul Davis [Thu, 19 Dec 2019 20:11:43 +0000 (13:11 -0700)]
handle MIDI rendering correctly when there are no regions

4 years agoVkeybd simplification
Robin Gareus [Thu, 19 Dec 2019 03:27:54 +0000 (04:27 +0100)]
Vkeybd simplification

* remove Y-axis dependent velocity (difference between
  black/white keys made this not very usable
* remove Bank/Patch selector (there are already three other
  Bank/Patch UIs
* move keyboard-layout selection into Preferences > MIDI

4 years agoVkeybd: re-layout, prepare config & patch pane removal
Robin Gareus [Wed, 18 Dec 2019 14:01:46 +0000 (15:01 +0100)]
Vkeybd: re-layout, prepare config & patch pane removal

4 years agoVkeybd: add a mod-wheel
Robin Gareus [Wed, 18 Dec 2019 14:01:17 +0000 (15:01 +0100)]
Vkeybd: add a mod-wheel

4 years agofix thinko ... we're checking if a DiskReader handles audio
Paul Davis [Thu, 19 Dec 2019 16:09:42 +0000 (09:09 -0700)]
fix thinko ... we're checking if a DiskReader handles audio

4 years agofurther improve debug message
Paul Davis [Thu, 19 Dec 2019 02:56:38 +0000 (19:56 -0700)]
further improve debug message

4 years agofix thinko in MidiRegion::render()
Paul Davis [Thu, 19 Dec 2019 02:50:32 +0000 (19:50 -0700)]
fix thinko in MidiRegion::render()

MidiSource::read() wants a length, not an end-sample.

This should fix (at least) some cases where notes past the region end
get included/played

4 years agoremove debug message
Paul Davis [Thu, 19 Dec 2019 02:49:34 +0000 (19:49 -0700)]
remove debug message

4 years agofix debug message
Paul Davis [Thu, 19 Dec 2019 02:49:09 +0000 (19:49 -0700)]
fix debug message

4 years agofix Temporal::Beats::operator*
Paul Davis [Thu, 19 Dec 2019 01:00:53 +0000 (18:00 -0700)]
fix Temporal::Beats::operator*

4 years agotweak debug output
Paul Davis [Thu, 19 Dec 2019 01:00:33 +0000 (18:00 -0700)]
tweak debug output

4 years agodo not try to process audio in a diskreader with no audio playlist
Paul Davis [Thu, 19 Dec 2019 00:34:39 +0000 (17:34 -0700)]
do not try to process audio in a diskreader with no audio playlist

4 years agofix crash when looping with a MIDI track
Paul Davis [Wed, 18 Dec 2019 22:05:35 +0000 (15:05 -0700)]
fix crash when looping with a MIDI track

4 years agoRemove VST plugin discovery option from first-start wizard
Robin Gareus [Wed, 18 Dec 2019 14:04:41 +0000 (15:04 +0100)]
Remove VST plugin discovery option from first-start wizard

Because (a) it makes the startup seem "very long and complicated",
and (b) sometimes fails or crashes weirdly,
or (c) a plugin dialog gets hidden behind the main window, or ...

Overall the first impression of the program may be horrible when
the first step includes discovering VST plugins.

4 years agoFix DSP load sorting with inactive plugins
Robin Gareus [Tue, 17 Dec 2019 23:54:11 +0000 (00:54 +0100)]
Fix DSP load sorting with inactive plugins

4 years agoCont'd work on Playlists import from old 2.x sessions
Robin Gareus [Tue, 17 Dec 2019 21:54:55 +0000 (22:54 +0100)]
Cont'd work on Playlists import from old 2.x sessions

v2.0.0 sessions don't save empty playlists. So missing playlists
for a give diskstream are fine. Just use a default empty one.

4 years agoa new stop command while in the middle of declick-to-stop is not a bad transition
Paul Davis [Tue, 17 Dec 2019 20:21:33 +0000 (13:21 -0700)]
a new stop command while in the middle of declick-to-stop is not a bad transition

4 years agoDirectly apply MIDI automation state changes
Robin Gareus [Tue, 17 Dec 2019 16:17:27 +0000 (17:17 +0100)]
Directly apply MIDI automation state changes

Previously "play/off" and "discrete/linear" changes had no effect
until the MIDI playlist was edited and MIDI re-read into RAM.

4 years agoVKeybd: exponential pitch-wheel/bend interpolation
Robin Gareus [Tue, 17 Dec 2019 15:47:46 +0000 (16:47 +0100)]
VKeybd: exponential pitch-wheel/bend interpolation

4 years agoFix MIDI port i/o when vari-speeding
Robin Gareus [Tue, 17 Dec 2019 04:56:49 +0000 (05:56 +0100)]
Fix MIDI port i/o when vari-speeding

4 years agoIndicate current Disk-I/O setting
Robin Gareus [Tue, 17 Dec 2019 00:53:33 +0000 (01:53 +0100)]
Indicate current Disk-I/O setting

4 years agoConvert Disksteam & Playlists from old 2.x sessions
Robin Gareus [Mon, 16 Dec 2019 23:34:26 +0000 (00:34 +0100)]
Convert Disksteam & Playlists from old 2.x sessions

4 years agoremove mistakenly left-in debug stacktrace
Paul Davis [Mon, 16 Dec 2019 23:18:30 +0000 (16:18 -0700)]
remove mistakenly left-in debug stacktrace

4 years agoreinstate missing latency initialization code
Paul Davis [Mon, 16 Dec 2019 23:13:27 +0000 (16:13 -0700)]
reinstate missing latency initialization code

Removed (mistakenly) during work on transportFSM

4 years agoexpand DEBUG_TRACE output
Paul Davis [Mon, 16 Dec 2019 23:13:02 +0000 (16:13 -0700)]
expand DEBUG_TRACE output

4 years agoRemove cruft, unused API
Robin Gareus [Mon, 16 Dec 2019 21:16:40 +0000 (22:16 +0100)]
Remove cruft, unused API

4 years agoParse v2 session-information
Robin Gareus [Mon, 16 Dec 2019 17:30:09 +0000 (18:30 +0100)]
Parse v2 session-information

4 years agoLua bindings for well-known send controls
Robin Gareus [Mon, 16 Dec 2019 17:29:32 +0000 (18:29 +0100)]
Lua bindings for well-known send controls

4 years agoAdd additional roll check in transport_record
Nikolaus Gullotta [Mon, 16 Dec 2019 19:06:04 +0000 (13:06 -0600)]
Add additional roll check in transport_record

Previously there was no check for roll in case Session::Enabled this
can cause issues with "latched-record-enable" and "transport-roll"

4 years agofix logic error that prevented MIDI playlists from being rendered at load time
Paul Davis [Mon, 16 Dec 2019 17:24:38 +0000 (10:24 -0700)]
fix logic error that prevented MIDI playlists from being rendered at load time

An edit was required to force the render

4 years agoVkeybd: fix octave up/down direction, speed up pitch-bend
Robin Gareus [Mon, 16 Dec 2019 14:37:08 +0000 (15:37 +0100)]
Vkeybd: fix octave up/down direction, speed up pitch-bend

4 years agoAdd/remove source(s) in our MSVC project (gtk2_ardour)
John Emmas [Mon, 16 Dec 2019 14:34:41 +0000 (14:34 +0000)]
Add/remove source(s) in our MSVC project (gtk2_ardour)

4 years agoVkeybd: grab all key-events and use timer instead of key-repeat
Robin Gareus [Mon, 16 Dec 2019 14:02:39 +0000 (15:02 +0100)]
Vkeybd: grab all key-events and use timer instead of key-repeat

This fixes an issue with arrow-keys (up/down, left/right). Those
were previously only handled when the Virtual Keyboard window itself
had focus.

Also key-repeat for pitch-bend is now ignored and a dedicated timer
is used to queue events. This fixes an issue with the first repeat
taking longer than successive ones, and makes this feature independent
of any desktop user settings.

4 years agoVkeybd: Experiment with key-repeat for pitch-bend
Robin Gareus [Mon, 16 Dec 2019 01:30:33 +0000 (02:30 +0100)]
Vkeybd: Experiment with key-repeat for pitch-bend

4 years agoVKeybd: Pass on primary (Ctrl/Cmd) shortcuts
Robin Gareus [Sun, 15 Dec 2019 19:34:14 +0000 (20:34 +0100)]
VKeybd: Pass on primary (Ctrl/Cmd) shortcuts

This allows Ctrl/Cmd+s (save) and Ctrl/Cmd+z (undo) etc shortcuts
to work, even though the virtual-keyboard is visible.