Hi,

On 2010.05.16 02:13, Pritpal Bedi wrote:
4) Persistent selection does not work if a use a mouse to position
cursor. Test:
      F11
      Down
      Down
      F11
      Position cursor before the block using mouse
      Position cursor after the block using mouse
       (block is not selected any more - bad)

Same problem remains.

I cannot reproduce. Can you try again after r14500 ?

I still can. Screencast at www.dbtopas.lt/hrb/f11.avi


6) Could not find a button to start column block marking
It is "Toggle Selection Mode" icon on the main toolbar.
It toggle between "Stream" and "Column/Line".

But I want to have 3 different buttons to start 3 different marking
modes. Can I do it using Setup->Key mappings? Actually, I do not
understand why 3 modes is switched using 2 state button. Read my
previous mail about expected block marking behaviour.


As I stated in the ChangeLog earlier, I want to keep affinity
with xMate rather than MultiEdit and has informed that this toggling
I will retain as is implemented now. However a function is provided
already in public API ::toggleCurrentLineHilight().

Great, but I would like to have a possibility to implement MultiEdit way using key binding macro. I guess hbide should be flexible enough to do this.

In the code below I've used method with descriptive names. Can you tell me is such methods exists in current hbide code, or can you implement such basic methods for managing marking operations?

I want implement the following key bindings:
F8
==
     IF ::isMarking()
       ::stopMarking()
     ELSE
       ::setLineSelectionMode()
       ::startMarking()
     ENDIF

Ctrl+F8
=======
     IF ::isMarking()
       ::stopMarking()
     ELSE
       ::setStreamSelectionMode()
       ::startMarking()
     ENDIF

Shift+F8
========
     IF ::isMarking()
       ::stopMarking()
     ELSE
       ::setColumnSelectionMode()
       ::startMarking()
     ENDIF


9) Two selections are "joined"
   Shift press
   Down
   Down
   Shift release
   Down
   Down
   Shift press
   Down
   Down
   Shift release


Regards,
Mindaugas
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to