This file is indexed.

/usr/share/denemo/actions/denemo-modules/wysiwyg.scm is in denemo-data 2.0.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
;;; routines for manipulating the evince widget's display for wysiwyg operations on the print view.

;;returns the nth line counting from 0, returns "" if not enough lines in text.
(define (GetNthLine text n)
    (let ((thelist (string-split text #\newline)))
        (if (> (length thelist) n)
        (list-ref thelist n)
        "")))


;;BeamCount
(define (BeamCount direction n)
    (define tag (string-append "Beam" direction))
    (if n
        (begin
            (set! n (number->string n))
            (d-DirectivePut-chord-prefix tag (string-append "\\set stem" direction "BeamCount = #" n " "))
            (d-DirectivePut-chord-override tag DENEMO_OVERRIDE_AFFIX)
            (d-DirectivePut-chord-display tag  (string-append (if (equal? direction "Left") "[" "]") n )))
        (d-DirectiveDelete-chord tag))
    (d-RefreshDisplay)
    (d-SetSaved #f))


;;ChopBeaming
(define (ChopBeaming n)
    (define (chop-beam-right)
        (if (and (Music?) (not (Rest?)))
            (if (> (d-GetNoteBaseDuration) (+ 2 0))
                (begin
                    (BeamCount "Left" n)
                    #t)
            (if (and (not (Music?)) (d-MoveCursorRight))
                (chop-beam-right)
                #f))
            (if (and (not (Music?)) (d-MoveCursorRight))
                (chop-beam-right)
                #f)))
 (if (and (Music?) (not (Rest?)) (> (d-GetNoteBaseDuration) (+ 2 0)))
    (begin
        (d-PushPosition)
        (d-MoveCursorRight)
        (if (chop-beam-right)
            (begin
                (d-PopPosition)
                (BeamCount "Right" n))
            (d-PopPosition)))))

    
(define (TweakRelativeOffset tag offsetx offsety)
    (define oldx #f)
    (define oldy #f)
    (define data (d-DirectiveGet-standalone-data tag))
    (if data
        (set! data (eval-string data))
        (set! data '()))
    (set! oldx (assq-ref data 'x-offset))
    (set! oldy (assq-ref data 'y-offset))
    (if (not oldx)
        (set! oldx "0"))
    (if (not oldy)
        (set! oldy "0"))
    (set! offsetx (number->string (+ (string->number offsetx) (string->number oldx))))
    (set! offsety (number->string (+ (string->number offsety) (string->number oldy))))
    (d-DirectivePut-standalone-prefix tag (string-append " <>-\\tweak #'extra-offset #'(" offsetx " . " offsety ")"))
    (if (pair? data)
        (begin
            (set! data (assq-set! data 'x-offset offsetx))
            (set! data (assq-set! data 'y-offset offsety))
            (d-DirectivePut-standalone-data tag (format #f "'~s" data)))))
    
(define (TweakRelativeFontSize tag size)
        (define newvalue (ChangeValue (d-DirectiveGet-standalone-prefix tag) "-\\tweak #'font-size #" " " size))
    (d-DirectivePut-standalone-prefix tag newvalue))
    
; ExtraAmount
;; the parameter "what" is the LilyPond grob that is being tweaked - it may not be the tag of the DenemoDirective that is being edited
;; property is the (two values - a pair) lilypond property being altered
(define* (ExtraAmount what property tag #:optional (type "chord") (context "") (offset '(0 . 0)) (override #f))
  (let ((oldstr #f) (start "") (end "")
  (get-data-command #f)
  (put-data-command #f)
  (put-command #f) 
  (override-command #f))
      (define oldx #f)
    (define oldy #f)
    (define data #f)
    (define offsetx (car offset))
    (define offsety (cdr offset))
  ;(disp "Entered with " offset "and " type " and " context " ok")
    (cond
     ((string=? type "chord")
      (begin 
        (set! put-data-command d-DirectivePut-chord-data)
        (set! get-data-command d-DirectiveGet-chord-data) 
         (set! put-command d-DirectivePut-chord-prefix)
         (set! override-command d-DirectivePut-chord-override)
         ))
     ((string=? type "note")
      (begin
        (set! put-data-command d-DirectivePut-note-data)
        (set! get-data-command d-DirectiveGet-note-data) 
         (set! put-command d-DirectivePut-note-prefix)
         (set! override-command d-DirectivePut-note-override)))
     ((string=? type "standalone")
      (begin 
        (set! put-data-command d-DirectivePut-standalone-data)
        (set! get-data-command d-DirectiveGet-standalone-data)
         (set! put-command d-DirectivePut-standalone-prefix)
         (set! override-command d-DirectivePut-standalone-override)))
     )
     
    (set! data (get-data-command tag))
    (if data
        (set! data (eval-string data))
        (set! data '()))
    (set! oldx (assq-ref data 'x-offset))
    (set! oldy (assq-ref data 'y-offset))
    (if (not oldx)
        (set! oldx "0"))
    (if (not oldy)
        (set! oldy "0")) (disp "working with " oldx " " oldy " and " offsetx " " offsety"\n\n")
    (set! offsetx (number->string (+ (string->number offsetx) (string->number oldx))))
    (set! offsety (number->string (+ (string->number offsety) (string->number oldy))))
    (if (list? data)
        (begin
            (set! data (assq-set! data 'x-offset offsetx))
            (set! data (assq-set! data 'y-offset offsety))
            (put-data-command tag (format #f "'~s" data))))
    (set! start (string-append "\\once \\override " context what " #'" property " = #'("))
    (set! end ")")
    (put-command tag (string-append start offsetx " . " offsety end)) 
    (if override
            (override-command tag override))
    ))

;;    
(define* (ExtraOffset tag what #:optional (type "chord") (context "") (offset '(0 . 0)) (override #f))
    (ExtraAmount what "extra-offset" tag type context offset override))

;;    
(define* (AlterPositions tag what  #:optional (type "chord") (context "") (positions '(0 . 0)) (override #f))
    (ExtraAmount what "positions" tag type context positions override))


; SetRelativeFontSize
;(define* (SetRelativeFontSize what #:optional (type "chord") (context "") (override #f))
;  (SetValue ChangeRelativeFontSize " #'font-size = #" what type context override))

; SetPadding
;(define* (SetPadding what  #:optional (type "chord") (context ""))
;  (SetValue ChangePad " #'padding = #" what type context))
  


; SetValue
(define* (SetValue change-func change-str  what  #:optional (type "chord") (context "") (override #f))
  (let ((tag "") (oldstr #f) (start "") (end "") (pad "")  (override-command d-DirectivePut-chord-override) (get-command d-DirectiveGet-chord-prefix) (put-command d-DirectivePut-chord-prefix))
    (cond
     ((string=? type "note")
      (begin (set! get-command d-DirectiveGet-note-prefix)
       (set! override-command d-DirectivePut-note-override)
         (set! put-command d-DirectivePut-note-prefix)))
     ((string=? type "standalone")
      (begin (set! get-command d-DirectiveGet-standalone-prefix) 
       (set! override-command d-DirectivePut-standalone-override)
         (set! put-command d-DirectivePut-standalone-prefix)))
     )
    (set! start (string-append "\\once \\override " context what change-str))
    (set! end " ")
    (set! tag what)
    (set! oldstr (get-command tag))
    (if (equal? oldstr "")
            (set! oldstr #f))
    (put-command tag (change-func oldstr start end))
    (if override
            (override-command override))))

; ChangeOffset
;; e.g.  (define prefixstring      "\\once \\override Fingering  #'extra-offset = #'(")
;; (define postfix ")")
;; (ChangeOffset "something first hello 12.6 . 13.8 etc and something after"  "hello " " etc" (cons "14.2" "55.5") )
(define (ChangeOffset oldstr prefixstring postfixstring offset)
  (let ((startbit "")
    (endbit "")
    (theregexp "")
    (thematch "")
    (oldx "")
    (oldy "")
     
    (xold 0)
    (yold 0)
    (xnew "")
    (ynew "")
    (xval 0)
    (yval 0)
    (xy (string-append " " (car offset) " . " (cdr offset) " ")))
    ;(disp "Change offset")
    (begin
      (if (boolean? oldstr)
      (set! oldstr (string-append prefixstring " 0.0 . 0.0 " postfixstring)))
      (set! startbit (regexp-quote prefixstring))
      (set! endbit  (regexp-quote postfixstring))
      (set! theregexp (string-append startbit "[ ]*([-0-9.]+)[ ]+.[ ]+([-0-9.]+)[ ]*" endbit))
      (set! thematch (string-match theregexp oldstr))
      (if (boolean? thematch)
      (begin
        (string-append oldstr prefixstring xy postfixstring))
      (begin
;;;get the old x y values out of oldstr
      (set! oldx (match:substring thematch 1))
      (set! oldy (match:substring thematch 2))

      (set! xold (string->number oldx))
      (set! yold (string->number oldy))
;;;add two values
      ;;;(set! offset (d-GetOffset))
      ;(disp "Starting with " offset " which is a pair " (pair? offset) " ok?")
      (if (pair? offset)
                (begin
                    (set! xnew (car offset))
                    (set! ynew (cdr offset))
                    (set! xval (string->number xnew))
                    (set! yval (string->number ynew))
                    (set! xnew (number->string (+ xval xold)))
                    (set! ynew (number->string (+ yval yold)))
                    (set! xy (string-append xnew " . " ynew)))
                (set! xy " 0.0 . 0.0 "))
                ;(disp "the new offset will be " xy " ok?")
      (regexp-substitute #f thematch 'pre (string-append prefixstring xy postfixstring) 'post))    
    ))));;;; end of function change offset
    
;;;; TweakOffset
;;;Changes the offset of the something at the cursor - at the moment assume standalone or rest
(define (TweakOffset grob tag offsetx offsety)
    (define sa-tag (d-DirectiveGetForTag-standalone ""))
    (if sa-tag      
        (let ()
                (if grob
                    (cond ((or (equal? grob "RehearsalMark") (equal? grob "BreathingSign")   (equal? grob "MetronomeMark")    )
                            (ExtraOffset sa-tag grob "standalone" "Score." (cons offsetx offsety)))
                        (#t
                            (TweakRelativeOffset sa-tag offsetx offsety)))
                    (TweakRelativeOffset sa-tag offsetx offsety)))
        ;;; not a standalone directive              
        (begin
            (if tag
              (if (defined? (string->symbol (string-append "d-" tag)))
                (eval-string (string-append "(d-" tag "  (list (cons 'offsetx \"" offsetx "\")  (cons 'offsety \"" offsety "\")))"))                
                (eval-string (string-append "(d-ToggleCustomOrnament (list \"" tag "\" (cons 'offsetx \"" offsetx "\")  (cons 'offsety \"" offsety "\")))"))))
                
                
            (if (Rest?)
                (ExtraOffset "RestOffset" "Rest" "chord" "Voice." (cons offsetx offsety) DENEMO_OVERRIDE_AFFIX)
                (if (equal? grob "BassFigure")
          (d-AdjustBassFigureHeight offsety)))))
    (d-SetSaved #f))
;;;;;;;;;;;
(define (SetSlur control-points)
    (define x1 (number->string (car (list-ref control-points 0))))
    (define y1 (number->string (cdr (list-ref control-points 0))))
    (define x2 (number->string (car (list-ref control-points 1))))
    (define y2 (number->string (cdr (list-ref control-points 1))))
    (define x3 (number->string (car (list-ref control-points 2))))
    (define y3 (number->string (cdr (list-ref control-points 2))))
    (define x4 (number->string (car (list-ref control-points 3))))
    (define y4 (number->string (cdr (list-ref control-points 3))))
    (d-DirectivePut-chord-prefix "Slur"             
                    (string-append "\\once \\override Slur
      #'control-points = #'((" x1 " . " y1 ") (" x2 " . " y2 ") (" x3 " . " y3 ") (" x4 " . " y4 ")) "))
  (d-DirectivePut-chord-display "Slur" "(")    
  (d-DirectivePut-chord-override "Slur" DENEMO_OVERRIDE_AFFIX)    
)
;;;;;;;;;;;
(define (SetTie control-points)
    (define x1 (number->string (car (list-ref control-points 0))))
    (define y1 (number->string (cdr (list-ref control-points 0))))
    (define x2 (number->string (car (list-ref control-points 1))))
    (define y2 (number->string (cdr (list-ref control-points 1))))
    (define x3 (number->string (car (list-ref control-points 2))))
    (define y3 (number->string (cdr (list-ref control-points 1))))
    (define x4 (number->string (car (list-ref control-points 3))))
    (define y4 (number->string (cdr (list-ref control-points 0))))
    (d-DirectivePut-chord-prefix "Tie"             
                    (string-append "\\once \\override Tie
      #'control-points = #'((" x1 " . " y1 ") (" x2 " . " y2 ") (" x3 " . " y3 ") (" x4 " . " y4 ")) "))
  (d-DirectivePut-chord-display "Tie" "~")    
  (d-DirectivePut-chord-override "Tie" DENEMO_OVERRIDE_AFFIX)    
)
;;;;;;;;;
(define (GetSlurPositions)
(let ((yvals #f))
            (set! yvals (d-GetPositions #t))
            (if yvals
                (SetSlurPositions (number->string (car yvals)) (number->string (cdr yvals))))))
                
                                
(define (GetBeamPositions)
        (let ((yvals #f))
            (set! yvals (d-GetPositions #f))
            (if yvals
                (SetBeamPositions (number->string (car yvals)) (number->string (cdr yvals))))))

(define (ReshapeSlur)
    (let ((vals #f))
                        (d-InfoDialog (_"Now drag the control points to make the shape desired - when finished click away from a control point"))
                        (set! vals (d-GetCurve)) 
                            (if vals
                                    (begin
                                        (d-InfoDialog (_"Slur Re-shaped"))
                                        (SetSlur vals)
                                        (d-SetSaved #f)))))
(define GetShape::WarningGiven #f)
  
(define (ShapeTweakWarning) (d-WarningDialog (_"To re-shape curves it is better to have the control points marked.
Use the right click menu to turn these on before invoking this command.
However, as this is not working well for multiple staffs, you can do without -
dismiss this dialog and
simply click on four points: the start of the curve, two points outside along its length and the end point.")) )

            
(define (GetSlurShape)
        (let ()
            (define (get-control-point n)
                (case n
                    ((1) (d-InfoDialog (_"Now click on the control point at the left end of the slur\nControl points are marked by red crosses"))(d-GetControlPoint 1) )
                    ((2) (d-InfoDialog (_"Now click second control point of the slur, the next red cross to the right"))(d-GetControlPoint 2))
                    ((3) (d-InfoDialog (_"Now click third control point of the slur, the next red cross to the right"))(d-GetControlPoint 3))
                    ((4) (d-InfoDialog (_"Now click last control point at the end of the slur, the last red cross to the right"))(d-GetControlPoint 4))))
            (if (and (not GetShape::WarningGiven) (not (d-Directive-score? "ToggleCurveControl")))
                (begin
                  (set! GetShape::WarningGiven #t)
                 
                  (ShapeTweakWarning)))
              
            (begin
                        (d-InfoDialog (_"First click on the center line of the staff aligning with notehead/rest (Positioning will be done with respect to this height)"))
                        (if (d-GetReferencePoint)
                            (begin      
                                (if (and (get-control-point 1)
                                        (get-control-point 2)
                                        (get-control-point 3)
                                        (get-control-point 4))
                                        (ReshapeSlur)))))))


(define (ReshapeTie)
    (let ((vals #f))
                        (d-InfoDialog (_"Now drag the control points to make the shape desired - when finished click away from a control point"))
                        (set! vals (d-GetCurve)) 
                            (if vals
                                    (begin
                                        (d-InfoDialog (_"Tie Re-shaped"))
                                        (SetTie vals)
                                        (d-SetSaved #f)))))                

             
(define (GetTieShape)
        (let ()
            (define (get-control-point n)
                (case n
                    ((1) (d-InfoDialog (_"Now click on the control point at the left end of the tie\nControl points are marked by red crosses"))(d-GetControlPoint 1) )
                    ((2) (d-InfoDialog (_"Now click second control point of the tie, the next red cross to the right"))(d-GetControlPoint 2))
                    ((3) (d-InfoDialog (_"Now click third control point of the tie, the next red cross to the right"))(d-GetControlPoint 3))
                    ((4) (d-InfoDialog (_"Now click last control point at the end of the tie, the last red cross to the right"))(d-GetControlPoint 4))))
            (if (and (not GetShape::WarningGiven) (not (d-Directive-score? "ToggleCurveControl")))
                (begin
                  (set! GetShape::WarningGiven #t)
                  (ShapeTweakWarning)))
      
                    (begin
                        (d-InfoDialog (_"First click on the center line of the staff aligning with notehead/rest (Positioning will be done with respect to this height)"))
                        (if (d-GetReferencePoint)
                            (begin      
                                (if (and (get-control-point 1)
                                        (get-control-point 2)
                                        (get-control-point 3)
                                        (get-control-point 4))
                                        (ReshapeTie)))))))
                

(define RestoreSlurPrompt (cons (_ "Restore Default Slur Shape/Position")   (_"Removes your customization of this slur")))
(define RestoreTiePrompt (cons (_ "Restore Default Tie Shape/Position")   (_"Removes your customization of this tie")))

(define (EditSlur)
    (let ((choice #f) (menu #f))
        (set! menu (list 
                            (cons (_ "Hint Slur Position")  'position) (cons (_ "Edit Slur Shape") 'shape)))
        (if (d-Directive-chord? "Slur")
            (set! menu (cons (cons RestoreSlurPrompt 'restore) menu)))  
        (set! choice (d-PopupMenu menu))
        (case choice 
            ((restore)
                (d-DirectiveDelete-chord "Slur"))
            ((position)
                (d-InfoDialog (_"First click on the notehead of the note where the slur starts"))
                (if (d-GetNewTarget) 
                    (if (d-IsSlurStart)
                        (begin 
                            (d-InfoDialog "") 
                            (GetSlurPositions))
                            (d-InfoDialog (_ "Not a slur start - cancelled")))
                            (d-InfoDialog (_ "Cancelled"))))
            ((shape) (GetSlurShape)))))
            
            
(define (EditTie)
    (let ((choice #f) (menu #f))
        (set! menu (list  (cons (_ "Edit Tie Shape") 'shape)))
        (if (d-Directive-chord? "Tie")
            (set! menu (cons (cons RestoreTiePrompt 'restore) menu)))  
        (set! choice (d-PopupMenu menu))
        (case choice 
            ((restore)
                (d-DirectiveDelete-chord "Tie"))
            ((shape) (GetTieShape)))))
                        
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define EditTarget::WarningGiven #f)
(define (EditTarget)
    (let ((target (d-GetTargetInfo)) (target-type #f)(grob #f)(tag #f)) 
    (define ta-tag "TextAnnotation")

    (define (do-offset)
        (let ((offset #f))
                    (set! offset (d-GetOffset))
                    (if offset
                        (begin
                            (TweakOffset grob tag (number->string (car offset)) (number->string (cdr offset)))))))
                            
                            
    (define (do-center-relative-offset)
        (let ((offset #f))
            (if (and (not EditTarget::WarningGiven) (not (d-Directive-score? "ToggleWysiwygMarks")))
        (begin
          (set! EditTarget::WarningGiven #t)
          (d-WarningDialog (_"To re-position stuff attached to notes accurately you need to have the locations of the objects marked with red dots.
You can use the right click menu to turn these on before invoking this command. However, since this marking code is only working well for single staffs, you can go ahead without.
To do this dismiss this dialog and guess at where the red spot is on the object."))))

        (d-InfoDialog (_"First click on the center line of the staff aligning with notehead/rest\n(Positioning will be done with respect to this height)"))
        (d-GetReferencePoint)
        (d-InfoDialog (_"Now click on the position desired for the object"))
        (set! offset (d-GetOffset))
        (if offset
          (begin
            (d-InfoDialog (_ "Re-positioned"))
            (TweakOffset grob tag (number->string (car offset)) (number->string (cdr offset)))))))
                            
    (define (do-direction)
        (let ((direction #f)
                (choice #f)
                (menu (list (cons (_ "Up")  "^")  (cons (_ "Down")  "_") (cons (_ "Auto")  "-") )) )
            (set! choice (d-PopupMenu menu))
            (if choice
                (begin
                    (if (defined? (string->symbol (string-append "d-" tag)))
                        (eval-string (string-append "(d-" tag " (list (cons 'direction \"" choice "\")))"))
                        (eval-string (string-append "(d-ToggleCustomOrnament (list \"" tag "\" (cons 'direction \"" choice "\")))")))))))
                                    
                                    
    
  (define (do-padding)
        (let ((padding (d-GetUserInput (_ "Padding") (_ "Give amount of padding required around this item (in staff spaces)") "0.5")))
        (if padding
                (begin
                    (if (defined? (string->symbol (string-append "d-" tag)))
                                (eval-string (string-append "(d-" tag " (list (cons 'padding \"" padding "\")))"))
                                (eval-string (string-append "(d-ToggleCustomOrnament (list \"" tag "\" (cons 'padding \"" padding "\")))")))))))
                                
                                
                            
                            
    (define (alter-text)
                (d-TextAnnotation 'edit))
    (define (alter-font-size)
        (define size (d-GetUserInput (_ "Font Size") (_ "Give relative font size: ") "8.0"))
            (if size
                    (d-TextAnnotation (cons 'fontsize size))))
                
    (define (chop-beam0)
                (ChopBeaming 0))
    (define (chop-beam1)
                (ChopBeaming 1))
    (define (remove-slur-shaping)
                        (d-DirectiveDelete-chord "Slur"))
                
    ;;; the procedure starts here           
    (if target
        (let ((choice #f))
            (set! target-type (list-ref target 0))
            (set! grob (list-ref target 1))
            (set! tag (list-ref target 2))
            (disp "Looking at target " target-type " on grob " grob "with tag " tag " ok?")
            (cond 
                ((equal? target-type "Object")
                    (if (d-Directive-standalone?)
                        (let ((menu ""))
                         (set! menu (list (cons "Offset Position" do-offset)))
                         (if (equal? ta-tag  (GetNthLine (d-DirectiveGetTag-standalone) 0))
                                (begin
                                    (set! menu (cons  (cons "Set Font Size"  alter-font-size)  menu))
                                    (set! menu (cons  (cons "Alter Text"  alter-text)  menu))))
                         
                          (set! menu (cons (cons (_ "Object Editor") d-EditCursorObject) menu))
                          (set! menu (cons (cons (_ "Object Inspector") d-DisplayCurrentObject) menu))
                         
                          (set! choice (d-PopupMenu menu))
                          (if choice
                                (choice)
                                (disp "cancelled")))))
                                
                    ((equal? target-type "Chord")
                            (let ((menu ""))
                                (set! menu (list  (cons (_ "Up/Down") do-direction) (cons (_ "Padding") do-padding) (cons (_ "Offset Position") do-center-relative-offset)))   
                                ;;; FIXME the value is relative to the centre line of the staff, this gets relative to the tr sign.
                                ;;;need to use d-GetNewTarget to find the notehead position, then use its mid_c_offset to get the centre line value
                                ;;; beaming does this
                                                   
                                (set! menu (cons (cons (_ "Object Editor") d-EditCursorObject) menu))
                                (set! menu (cons (cons (_ "Object Inspector") d-DisplayCurrentObject) menu))

                                
                                (set! choice (d-PopupMenu menu))
                                (if choice
                                        (choice)
                                        (disp "cancelled"))))
                                
                                
                                
                ((equal? target-type "Note")
                    (if grob   ;;; is grob defined for Fingering, or should this be tag? FIXME
                        (cond
              ((equal? grob "Fingering")
                (set! choice (d-PopupMenu (list (cons (cons "Control Fingerings Positions" 
                                    "Creates a directive before this chord which can be edited to position the finger indications for each note in the chord") 
                                        d-FingeringPosition))))
                (if choice
                  (choice)
                  (disp "cancelled")))
              ((equal? grob "BassFigure")
                  (set! choice (d-PopupMenu (list (cons (cons "Offset Figure" 
                                    "Choose position for this bass figure") 
                                        do-center-relative-offset))))
                  (if choice
                    (choice)
                    (disp "cancelled")))
                  )
            (let ((menu '()) (base-duration (d-GetNoteBaseDuration)))
                                    (set! menu (cons (cons (cons (_ "Line Break") (_ "Start a new line here"))  d-LineBreak) menu))
                                    (set! menu (cons (cons (cons (_"Page Break") (_"Start a new page here"))    d-PageBreak) menu))
                                    (if (> base-duration 5)
                                        (begin
                                            (set! menu (cons (cons (cons (_"Three Beams Right (Off/On)") (_"Put just three beams to the right or undo a previous invocation of this command")) d-BeamRightThree) menu))
                                            (set! menu (cons (cons (cons (_"Three Beams Left (Off/On)") (_"Put just three beams to the left or undo a previous invocation of this command")) d-BeamLeftThree) menu))))                                      
                                    (if (> base-duration 4)
                                        (begin
                                            (set! menu (cons (cons (cons (_"Two Beams Right (Off/On)") (_"Put just two beams to the right or undo a previous invocation of this command")) d-BeamRightTwo) menu))
                                            (set! menu (cons (cons (cons (_"Two Beams Left (Off/On)") (_"Put just two beams to the left or undo a previous invocation of this command")) d-BeamLeftTwo) menu))                  
                                        ))
                                                                                    
                                    (if (> base-duration 3)
                                        (begin
                                            (set! menu (cons (cons (cons (_"One Beam Right (Off/On)") (_"Put just one beam to the right or undo a previous invocation of this command")) d-BeamRightOne) menu))
                                            (set! menu (cons (cons (cons (_"One Beam Left (Off/On)") (_"Put just one beam to the left or undo a previous invocation of this command")) d-BeamLeftOne) menu))
                                            (set! menu (cons (cons (cons (_"Chop to One Beam") (_"Reduce the beaming between this and the next note to just one beam")) chop-beam1) menu))
                                            
                                            ))
                                    (if (> base-duration 2)
                                      (begin 
                                       (set! menu (cons (cons (cons (_"Chop Gap in Beam") (_"Remove the beaming between this and the next note")) chop-beam0) menu))
                                       (set! menu (cons (cons (cons (_"No Beam (Off/On)") (_"Leave note/chord un-beamed or undo a previous invocation of this command")) d-NoBeam) menu))
                                         (set! menu (cons (cons (cons (_"Change beam angle/position") (_"Allows you to drag the ends of the beam")) GetBeamPositions) menu))))
            
                                    (if (d-IsSlurStart) ;;(equal? target-type "Slur") ;;
                                        (begin
                                            (set! menu (cons (cons (cons (_"Hint Slur Angle/Position") (_"Allows you to drag the ends of the slur")) GetSlurPositions) menu ))
                                            (set! menu (cons (cons (cons (_"Change Slur Shape") (_"Allows you to drag the control points of the slur")) GetSlurShape) menu ))
                                            (if (d-Directive-chord? "Slur")                                     
                                                (set! menu (cons (cons RestoreSlurPrompt 
                                                                                                    remove-slur-shaping) menu )))))
                                                                                                    
                                    (if (d-IsTied) ;;(equal? target-type "Tie")
                                        (begin
                                            (set! menu (cons (cons (cons (_"Change Tie Shape") (_"Allows you to drag the control points of the tie")) GetTieShape) menu ))
                                            (if (d-Directive-chord? "Tie")                                      
                                                (set! menu (cons (cons RestoreTiePrompt 
                                                                                                    remove-tie-shaping) menu )))))                                                             
                                                             
                                    (set! menu (cons (cons (_ "Object Editor") d-EditCursorObject) menu))
                                    (set! menu (cons (cons (_ "Object Inspector") d-DisplayCurrentObject) menu))
                                                                
                                    (set! choice (d-PopupMenu menu))
                                    (if choice
                                        (choice)
                                        (disp "cancelled"))))))))))  ;EditTarget end        
                                            
;;;; Toggles a postfix annotation on a chord, with editing for direction or offset
(define* (ChordAnnotation tag lilypond params graphic #:optional display (current-direction "^"))
    (define (set-option option)
          (if (not (or (equal? current-direction "^") (equal? current-direction "-") (equal? current-direction "_")))
            (set! current-direction "-"))
                    (case (car option)
                            ((padding) (string-append " " current-direction "\\tweak #'padding #" (cdr option)  " -" ))
                            ((direction) (cdr option))
                            ((offsetx) (string-append " " current-direction "\\tweak #'X-offset #'" (cdr option)))
                            ((offsety)  (string-append " " current-direction "\\tweak #'Y-offset #'" (cdr option) " -"  )))) ;;assumes y-offset is last
    (define (direction-edit)
        (let ((choice #f))
        (set! choice (d-GetOption  (string-append (_ "Up") stop (_ "Down") stop (_ "Auto") stop)))
        (if choice
                (begin
                    (set! choice (cond  ((equal? choice (_ "Up")) "^")
                                                            ((equal? choice (_ "Down")) "_")
                                                            ((equal? choice (_ "Auto")) "-")))
                    (d-DirectivePut-chord-postfix tag (string-append  (string-append (if (d-GetNonprinting) "<>" "") choice " " lilypond " ")))
                    (d-SetSaved #f)))))
    (if (and (d-Directive-chord? tag) (equal? params "edit"))
        (case (GetEditOption)
            ((edit) (direction-edit))
            ((cancel) #f)
            ((advanced) (d-DirectiveTextEdit-chord tag))
            ((delete) (d-DirectiveDelete-chord tag))
            (else #f))
        (if params
            (begin 
                    (if (and (d-Directive-chord? tag) (list? params))
                                    (begin
                                        (d-SetSaved #f)
                                         (if (d-GetNonprinting)
                                            (set! current-direction (substring (string-trim (d-DirectiveGet-chord-postfix tag)) 0 1))
                                            (set! current-direction (substring (string-trim (d-DirectiveGet-chord-postfix tag)) 3 4))) ;;;FIXME use scheme data field to store this, <>- etc
                                            
                                            
                                        (d-DirectivePut-chord-postfix tag (string-append (if (d-GetNonprinting) "<>" "") (string-join (map-in-order set-option params))  lilypond " ")))
                                    (d-WarningDialog "Cannot complete operation - cursor moved or bad parameter list")))
            (begin  ;;;no parameters, toggle annotation off/on
                    (ToggleChordDirective tag graphic (string-append  (if (d-GetNonprinting) "<>" "")  "-" lilypond) DENEMO_OVERRIDE_ABOVE display)))))
                                            
(define* (ChordOrnament tag lilypond params graphic #:optional display)
       (ChordAnnotation tag lilypond params graphic display))  
;       (ChordAnnotation tag (string-append "-\\tweak outside-staff-priority #50 " lilypond) params graphic display))  
;        (if (d-Directive-chord? tag)
;           (let ((priotag (string-append "Priority" tag)))
;                (d-DirectivePut-chord-prefix priotag "\\once \\override TextScript.outside-staff-priority = #50 ")
;                (d-DirectivePut-chord-override priotag DENEMO_OVERRIDE_AFFIX))
;            (d-DirectiveDelete-chord priotag)))


; SetSlurPositions
(define (SetSlurPositions near far)
    (d-DirectivePut-chord-override "Slur" DENEMO_OVERRIDE_AFFIX)
  (d-DirectivePut-chord-prefix "Slur" (string-append 
    "\\once \\override Slur #'direction = #" (if (or (> (string->number near) 0) (> (string->number far) 0)) "1" "-1") " "
  "\\once \\override Slur  #'positions = #'(" near " . " far ")"))
  (d-SetSaved #f))
  
 ; SetTiePositions
(define (SetTiePositions near far)
    (d-DirectivePut-chord-override "Tie" DENEMO_OVERRIDE_AFFIX)
  (d-DirectivePut-chord-prefix "Tie" (string-append 
    "\\once \\override Tie #'direction = #" (if (or (> (string->number near) 0) (> (string->number far) 0)) "1" "-1") " "
  "\\once \\override Tie  #'positions = #'(" near " . " far ")"))
  (d-SetSaved #f))
   
;;currently SetBeamPositions is just testing for offset with respect to 0, in fact it is the offset from the center staff line
;;that should be used. This would require determining which clef is in use and what the notes at start and end of the beamed notes are  
; SetBeamPositions
(define (SetBeamPositions near far)
    (d-DirectivePut-chord-override "Beam" DENEMO_OVERRIDE_AFFIX)
  (d-DirectivePut-chord-prefix "Beam" (string-append 
         (if (or (> (string->number near) 0) (> (string->number far) 0)) "\\stemUp" "\\stemDown") " "
            "\\once \\override Beam  #'positions = #'(" near " . " far ")"))
  (d-SetSaved #f))

  
;;;;;;;; ChangePad
;;;(define (ChangePad oldstr prefixstring postfixstring)
;;;  (ChangeValue oldstr prefixstring postfixstring d-GetPadding "0"))
;;;;;;;; ChangeRelativeFontSize
;;;(define (ChangeRelativeFontSize oldstr prefixstring postfixstring)
;;;  (ChangeValue oldstr prefixstring postfixstring d-GetRelativeFontSize "0" DENEMO_OVERRIDE_AFFIX))


;   (let ((startbit "")
;   (endbit "")
;   (theregexp "")
;   (thematch "")
;   (pad "")
;   )
;     (begin
;       (if (boolean? oldstr)
;     (set! oldstr (string-append prefixstring "0" postfixstring)))
;       (set! startbit (regexp-quote prefixstring))
;       (set! endbit  (regexp-quote postfixstring))
;       (set! theregexp (string-append  startbit "([-0-9]+)" endbit))
;       (set! thematch (string-match theregexp oldstr))
;       (set! pad (d-GetPadding))
;       (if (boolean? pad)
;     (set! pad "0"))
;       (if (boolean? thematch)
;     (begin
;       (string-append oldstr prefixstring pad postfixstring))
;     (regexp-substitute #f thematch 'pre (string-append prefixstring pad postfixstring) 'post))    
;     )));;;; end of function change pad

;;;;;;;; ChangeValue
(define (ChangeValue oldstr prefixstring postfixstring val)
  (let ((startbit "")
    (endbit "")
    (theregexp "")
    (thematch "")
    )
    (begin
      (set! startbit (regexp-quote prefixstring))
      (set! endbit  (regexp-quote postfixstring))
      (set! theregexp (string-append  startbit "([-0-9]+)" endbit))
      (set! thematch (string-match theregexp oldstr))
      
      (if (boolean? thematch)
      (begin
        (string-append oldstr prefixstring val postfixstring))
      (regexp-substitute #f thematch 'pre (string-append prefixstring val postfixstring) 'post))    
    )));;;; end of function change value