Re: Scrapping the buttons for shifting the playback markers left/right

2021-11-09 Thread Richard Shann
On Tue, 2021-11-09 at 14:55 +0200, Lib Lists wrote:
> On Tue, 9 Nov 2021 at 13:15, Richard Shann 
> wrote:
> > 
> > I propose getting rid of the buttons in the Playback Controls that
> > shift the Start/End playback markers as there is now the option to
> > drag
> > the markers (Ctrl-Alt drag left or right on the note that has the
> > marker on it).
> > Please say if you are fond of them.
> > 
> > Richard
> > 
> 
> Hi, Forgot to report it before, in my system Ctrl-Alt drag doesn't
> work (virtual Lubuntu 20.04 under VirtualBox 6.1.28 running on MacOs
> Catalina).

Hmm, that's a shame as I have just committed code to allow control of
the brighness of the playback markers (too bright and they clutter the
display) - so if you drag left or right the markers move if you drag up
and down they get brighter/dimmer.

> I tried all the key combinations that I can think of: command option
> (left or right), control option, adding shift, etc.
> However, it would be completely fine for me if there was an option
> such as:
> - select note
> - key shortcut to set start playback marker
> - select note
> - key shortcut to set stop playback marker.

So you can do this. Looking at the Scheme for the Playback from cursor
to end:
;Play from Cusor to End
(d-PushPosition)
(DenemoSetPlaybackStart)
(d-MoveToEnd)
(DenemoSetPlaybackEnd)
(d-PopPosition)
(d-OneShotTimer 500 "(d-Play)")

I see that 

(DenemoSetPlaybackStart)

 and 

(DenemoSetPlaybackEnd) 

are the two bits of Scheme you need for your two commands, if you make
commands to execute those two and give them shortcuts then you have
what you want.

Richard






Re: Scrapping the buttons for shifting the playback markers left/right

2021-11-09 Thread Lib Lists
On Tue, 9 Nov 2021 at 13:15, Richard Shann  wrote:
>
> I propose getting rid of the buttons in the Playback Controls that
> shift the Start/End playback markers as there is now the option to drag
> the markers (Ctrl-Alt drag left or right on the note that has the
> marker on it).
> Please say if you are fond of them.
>
> Richard
>

Hi, Forgot to report it before, in my system Ctrl-Alt drag doesn't
work (virtual Lubuntu 20.04 under VirtualBox 6.1.28 running on MacOs
Catalina).
I tried all the key combinations that I can think of: command option
(left or right), control option, adding shift, etc.
However, it would be completely fine for me if there was an option such as:
- select note
- key shortcut to set start playback marker
- select note
- key shortcut to set stop playback marker.

or something along those lines. In that case I wouldn't need to use
the buttons or drag the markers (with the personal bonus that it would
be more similar to the behaviour I'm used to in audio and video
editing, like when setting up a region or similar).

Cheers,
Lib
>
>



Scrapping the buttons for shifting the playback markers left/right

2021-11-09 Thread Richard Shann
I propose getting rid of the buttons in the Playback Controls that
shift the Start/End playback markers as there is now the option to drag
the markers (Ctrl-Alt drag left or right on the note that has the
marker on it).
Please say if you are fond of them.

Richard





Re: Keyboard shortcut to toggle between Print View and Denemo window

2021-11-09 Thread Richard Shann
On Tue, 2021-11-09 at 10:19 +, Richard Shann wrote:
> 
> I'll see if Ctrl-w can be easily added to the routine catching Esc on
> the subwindows...
That's done now,

Richard





Re: Keyboard shortcut to toggle between Print View and Denemo window

2021-11-09 Thread Richard Shann
On Tue, 2021-11-09 at 11:36 +0200, Lib Lists wrote:
> On Mon, 8 Nov 2021 at 18:11, Richard Shann 
> wrote:
> > 
> > On Mon, 2021-11-08 at 11:37 +0200, Lib Lists wrote:
> > > On Sun, 7 Nov 2021 at 18:02, Richard Shann <
> > > rich...@rshann.plus.com>
> > > wrote:
> > > > 
> > > > On Sun, 2021-11-07 at 13:23 +0200, Lib Lists wrote:
> > > > > On Sat, 6 Nov 2021 at 19:42, Richard Shann <
> > > > > rich...@rshann.plus.com>
> > > > > wrote:
> > > > > > 
> > > > > > On Sat, 2021-11-06 at 16:08 +0200, Lib Lists wrote:
> > > > > > > On Sat, 6 Nov 2021 at 15:56, Richard Shann <
> > > > > > > rich...@rshann.plus.com>
> > > > > > > wrote:
> > > > > > > > [...]
> > > > I've just committed a set of "Toggles" into the View menu which
> > > > hide/show various windows/panes. I've given them all default
> > > > two
> > > > key
> > > > short cuts starting Esc, so Esc,p for instance shows/hides the
> > > > Print
> > > > View. The reason for using Esc is that once in the Print View
> > > > pressing
> > > > Esc again takes you back to the display(*).
> > > 
> > > Awesome, thank you so much! That greatly improves my workflow.
> > > I wrote some comments about the current toogle behaviour with
> > > different windows:
> > > - Print View: works except for the need of performing any action
> > > in
> > > the window first before being able to close it,
> > 
> > from my testing it is not any action - mouse movements don't help
> > (bug
> > *do* get acted on) nor do PgDn or up left arrow ... The only key
> > press
> > that "wakes up" the key press signal is down arrow and that key
> > press
> > is not actually acted on - not passed on to the handler - but after
> > it
> > all keystrokes are received by the widget.
> > 
> > > - Command Center: works (esc,c opens CC, esc closes the window),
> > > - Lilypond view: esc,l works but esc doesn't close the window,
> > > one
> > > needs first to click on the Denemo window
> > > - Scheme window: same as Lilypond view
> > 
> > right - I've filled these out now.
> > 
> > 
> > > An additional thought. I initially thought about a toggle option
> > > as I
> > > noticed that I cannot close Denemo's subwindows (Print View,
> > > Scheme,
> > > Lilypond, etc.) with 'ctrl,w', as quite common in MacOs
> > > (command,w)
> > > and as far as I remember on Windows. If ctrl,w would work on all
> > > Denemo subwindows this could allow a shortcut to open/focus a
> > > window,
> > > the same shortcut to switch the focus back to Denemo window
> > > (while
> > > keeping the other window open) and ctrl,w would close the
> > > currently
> > > open window (or close score in Denemo window). I suspect though
> > > that
> > > this is not possible.
> > > Hopefully the explanation is clear enough.
> > 
> > There is a horrible snarl around "focus" "iconized" etc. I notice
> > that
> > when you do (e.g.) Esc,c to get the Command Center the Esc on the
> > Command Center returns to the main window by iconizing the Command
> > Center.
> 
> (Apologies for my imprecise vocabulary). With 'iconize' do you mean
> 'reduce to icon', as equivalent to pressing the leftmost button in
> the
> attached picture?
yes (or at least that's what that left most button looks like it does!)

>  If that's the case, then on my system I get a
> different behaviour:

which is the nub of the matter, what happens depends on something
outside not only of Denemo, not only of the libraries Denemo links to,
but on the "window manager", or (in the case of Microsoft's Windows),
the operating system.

I'll see if Ctrl-w can be easily added to the routine catching Esc on
the subwindows...

Richard





Re: Keyboard shortcut to toggle between Print View and Denemo window

2021-11-09 Thread Lib Lists
On Mon, 8 Nov 2021 at 18:11, Richard Shann  wrote:
>
> On Mon, 2021-11-08 at 11:37 +0200, Lib Lists wrote:
> > On Sun, 7 Nov 2021 at 18:02, Richard Shann 
> > wrote:
> > >
> > > On Sun, 2021-11-07 at 13:23 +0200, Lib Lists wrote:
> > > > On Sat, 6 Nov 2021 at 19:42, Richard Shann <
> > > > rich...@rshann.plus.com>
> > > > wrote:
> > > > >
> > > > > On Sat, 2021-11-06 at 16:08 +0200, Lib Lists wrote:
> > > > > > On Sat, 6 Nov 2021 at 15:56, Richard Shann <
> > > > > > rich...@rshann.plus.com>
> > > > > > wrote:
> > > > > > > [...]
> > > I've just committed a set of "Toggles" into the View menu which
> > > hide/show various windows/panes. I've given them all default two
> > > key
> > > short cuts starting Esc, so Esc,p for instance shows/hides the
> > > Print
> > > View. The reason for using Esc is that once in the Print View
> > > pressing
> > > Esc again takes you back to the display(*).
> >
> > Awesome, thank you so much! That greatly improves my workflow.
> > I wrote some comments about the current toogle behaviour with
> > different windows:
> > - Print View: works except for the need of performing any action in
> > the window first before being able to close it,
>
> from my testing it is not any action - mouse movements don't help (bug
> *do* get acted on) nor do PgDn or up left arrow ... The only key press
> that "wakes up" the key press signal is down arrow and that key press
> is not actually acted on - not passed on to the handler - but after it
> all keystrokes are received by the widget.
>
> > - Command Center: works (esc,c opens CC, esc closes the window),
> > - Lilypond view: esc,l works but esc doesn't close the window, one
> > needs first to click on the Denemo window
> > - Scheme window: same as Lilypond view
>
> right - I've filled these out now.
>
>
> > An additional thought. I initially thought about a toggle option as I
> > noticed that I cannot close Denemo's subwindows (Print View, Scheme,
> > Lilypond, etc.) with 'ctrl,w', as quite common in MacOs (command,w)
> > and as far as I remember on Windows. If ctrl,w would work on all
> > Denemo subwindows this could allow a shortcut to open/focus a window,
> > the same shortcut to switch the focus back to Denemo window (while
> > keeping the other window open) and ctrl,w would close the currently
> > open window (or close score in Denemo window). I suspect though that
> > this is not possible.
> > Hopefully the explanation is clear enough.
>
> There is a horrible snarl around "focus" "iconized" etc. I notice that
> when you do (e.g.) Esc,c to get the Command Center the Esc on the
> Command Center returns to the main window by iconizing the Command
> Center.

(Apologies for my imprecise vocabulary). With 'iconize' do you mean
'reduce to icon', as equivalent to pressing the leftmost button in the
attached picture? If that's the case, then on my system I get a
different behaviour: when I press Esc (Command Center is on focus),
the Denemo window goes to the foreground and the Command Center is
still visible, just behind the Denemo window. When I press Esc,c then
the Command Center window is closed.

Unrelated, but I also noticed that if I minimize the Command Center by
clicking the above mentioned leftmost button, the Command Center is
created and closed by pressing Esc,c multiple times but always as
minimized.

Lib


Lib


Esc, c then hides the Command Center and you need another Esc,c
> to actually bring the Command Center back to the front.
>
> Richard
>
>


[bug #61448] Movements>Playback>Transposition anomaly

2021-11-09 Thread Richard Shann
Update of bug #61448 (project denemo):

  Status:None => Fixed  
 Open/Closed:Open => Closed 

___

Follow-up Comment #1:

Fixed in source - thank you!

___

Reply to this item at:

  

___
  Message sent via Savannah
  https://savannah.gnu.org/




[bug #61448] Movements>Playback>Transposition anomaly

2021-11-09 Thread Dominic Shann
URL:
  

 Summary: Movements>Playback>Transposition anomaly
 Project: Denemo
Submitted by: dom
Submitted on: Tue 09 Nov 2021 08:52:19 AM UTC
Category: None
Severity: 3 - Normal
  Item Group: None
  Status: None
 Privacy: Public
 Assigned to: None
 Originator Name: 
 Open/Closed: Open
 Discussion Lock: Any

___

Details:

In Movements>Playback>Transposition it says give semitones (~/-) where it
should be (+/-)




___

Reply to this item at:

  

___
  Message sent via Savannah
  https://savannah.gnu.org/