mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
new two new "pre-coded" bindings file, for the monitor section and the processor box
This commit is contained in:
parent
ad4ae69a1d
commit
d2396d59b1
3 changed files with 30 additions and 1 deletions
24
gtk2_ardour/monitor.bindings
Normal file
24
gtk2_ardour/monitor.bindings
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
<Bindings name="monitor section">
|
||||||
|
<Press>
|
||||||
|
<Binding key="m" action="Monitor/monitor-mono"/>
|
||||||
|
<Binding key="c" action="Monitor/monitor-cut-all"/>
|
||||||
|
<Binding key="d" action="Monitor/monitor-dim-all"/>
|
||||||
|
<Binding key="e" action="Monitor/toggle-exclusive-solo"/>
|
||||||
|
<Binding key="Shift-o" action="Monitor/toggle-mute-overrides-solo"/>
|
||||||
|
<Binding key="b" action="Monitor/toggle-monitor-processor-box"/>
|
||||||
|
|
||||||
|
<Binding key="l" action="Monitor/monitor-cut-0"/>
|
||||||
|
<Binding key="Primary-l" action="Monitor/monitor-solo-0"/>
|
||||||
|
<Binding key="Secondary-l" action="Monitor/monitor-dim-0"/>
|
||||||
|
<Binding key="Tertiary-l" action="Monitor/monitor-invert-0"/>
|
||||||
|
|
||||||
|
<Binding key="r" action="Monitor/monitor-cut-1"/>
|
||||||
|
<Binding key="Primary-r" action="Monitor/monitor-solo-1"/>
|
||||||
|
<Binding key="Secondary-r" action="Monitor/monitor-dim-1"/>
|
||||||
|
<Binding key="Tertiary-r" action="Monitor/monitor-invert-1"/>
|
||||||
|
|
||||||
|
<Binding key="i" action="Solo/solo-use-in-place"/>
|
||||||
|
<Binding key="p" action="Solo/solo-use-pfl"/>
|
||||||
|
<Binding key="a" action="Solo/solo-use-afl"/>
|
||||||
|
</Press>
|
||||||
|
</Bindings>
|
||||||
5
gtk2_ardour/processor_box.bindings
Normal file
5
gtk2_ardour/processor_box.bindings
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
<Bindings name="processor box">
|
||||||
|
<Press>
|
||||||
|
<Binding key="Delete" action="ProcessorMenu/delete"/>
|
||||||
|
</Press>
|
||||||
|
</Bindings>
|
||||||
|
|
@ -316,7 +316,7 @@ if ($make_accelmap) {
|
||||||
# merge in the "fixed" bindings that are not defined by the argument given to this program
|
# merge in the "fixed" bindings that are not defined by the argument given to this program
|
||||||
# namely, the step editor and the mixer windows
|
# namely, the step editor and the mixer windows
|
||||||
|
|
||||||
foreach $hardcoded_bindings ("mixer.bindings", "step_editing.bindings") {
|
foreach $hardcoded_bindings ("mixer.bindings", "step_editing.bindings", "monitor.bindings", "processor_box.bindings") {
|
||||||
$path = File::Spec->catfile (dirname ($ARGV[0]), $hardcoded_bindings);
|
$path = File::Spec->catfile (dirname ($ARGV[0]), $hardcoded_bindings);
|
||||||
open HARDCODED, "<", $path or die $!;
|
open HARDCODED, "<", $path or die $!;
|
||||||
while (<HARDCODED>) {
|
while (<HARDCODED>) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue