/usr/share/denemo/actions/denemo-modules/directives.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 | ; Prototype to insert Lilypond Standalone Directives. Wants a pair with car Tag and cdr lilypond: (cons "BreathMark" "\\breathe")
(define* (StandAloneDirectiveProto pair #:optional (step? #t) (graphic #f) (displaytext #f) (minpixels #f) (data #f))
(d-Directive-standalone (car pair))
(d-DirectivePut-standalone-postfix (car pair) (cdr pair))
(d-DirectivePut-standalone-minpixels (car pair) 30)
(if data
(d-DirectivePut-standalone-data (car pair) data))
(if graphic ;If the user specified a graphic use this, else greate a display text
(begin (d-DirectivePut-standalone-graphic (car pair) graphic)
(d-DirectivePut-standalone-override (car pair) DENEMO_OVERRIDE_GRAPHIC)))
(if displaytext
(d-DirectivePut-standalone-display (car pair) displaytext)
(d-DirectivePut-standalone-display (car pair) (cdr pair)))
(if minpixels
(d-DirectivePut-standalone-minpixels (car pair) minpixels))
(if step?
(d-MoveCursorRight))
(d-RefreshDisplay))
(define (EditStandaloneDirective tag display)
(define (EditLilyPond)
(define current (d-DirectiveGet-standalone-postfix tag))
(if tag
(let ((text (d-GetUserInput (_ "Modifying the LilyPond Text") (_ "Give LilyPond syntax to be emitted by this Denemo Directive") current)))
(if text
(begin (d-DirectivePut-standalone-postfix tag text)
(d-SetSaved #f))
(d-InfoDialog (_ "Cancelled"))))
(d-InfoDialog (_ "This directive currently creates no LilyPond via its postfix field, use the Advanced Edit instead"))))
(define choice (RadioBoxMenu
(cons (_ "Help ") 'help)
(cons (_ "Delete") 'delete)
(cons (_ "Edit LilyPond") 'lilypond)
(cons (_ "Advanced") 'advanced)))
(case choice
((delete) (d-DirectiveDelete-standalone tag))
((help) (d-InfoDialog (_ "This is a Directive object.\nDouble click on it to get information about it.")))
((lilypond) (EditLilyPond))
((advanced) (d-DirectiveTextEdit-standalone tag))
((#f) (d-InfoDialog (_ "Cancelled")))))
; Procedure to insert Self-Editing Lilypond Standalone Directives. Takes a pair with car Tag and cdr lilypond: (cons "BreathMark" "\\breathe") with optional boolean to step right after insertion and graphic
(define* (StandAloneSelfEditDirective pair #:optional (step? #t) (graphic #f) (displaytext #f) (minpixels #f))
(if (d-Directive-standalone? (car pair))
(EditStandaloneDirective (car pair) displaytext)
(StandAloneDirectiveProto pair step? graphic displaytext minpixels)))
;Wrapper to attach any lilypond directive anywhere.
;;Wants four strings and an arbitrary number of tags (numbers) for overrides.
;;the tag parameter can be a single string or a pair. A single string is both the tag and display, a pair is (cons "tag" "display")
(define (AttachDirective type field tag content . overrides)
(define proc-put (string-append "d-DirectivePut-" type "-" field))
;(define proc-get (string-append "d-DirectiveGet-" type "-" field))
;(define proc-del (string-append "d-DirectiveDelete-" type))
(define proc-dis (string-append "d-DirectivePut-" type "-display"))
(define proc-ovr (string-append "d-DirectivePut-" type "-override"))
(define dis #f)
(if (pair? tag)
(begin (set! dis (cdr tag)) (set! tag (car tag)))
(set! dis tag))
((eval-string proc-put) tag content)
(if (member DENEMO_OVERRIDE_GRAPHIC overrides) ; If DENEMO_OVERRIDE_GRAPHIC is there just go on
((eval-string proc-ovr) tag (apply logior overrides))
(if (equal? type "staff") ; if not test if its a staff directive: we must enforce graphic to make sure staff-icons work.
((eval-string proc-ovr) tag (apply logior (append (list DENEMO_OVERRIDE_GRAPHIC) overrides)))
((eval-string proc-ovr) tag (apply logior overrides)))) ; not a staff, everythings ok without DENEMO_OVERRIDE_GRAPHIC
((eval-string proc-dis) tag dis)
(d-SetSaved #f)
#t)
(define (EditStaffDirective tag)
(let ((choice #f))
(begin
(set! choice (d-GetOption (string-append cue-Delete stop cue-Advanced stop)))
(cond
((boolean? choice)
(d-WarningDialog (_ "Operation cancelled")))
((equal? choice cue-Advanced)
(d-DirectiveTextEdit-staff tag))
((equal? choice cue-Delete)
(d-DirectiveDelete-staff tag))))))
; ToggleDirective is a script to help you by creating and deleting Denemo-Directives with the same command.
;; return value is #t if directive was created or #f if it was deleted. This can be used as hook for further scripting.
;; example (ToggleDirective "staff" "prefix" "Ambitus" "\\with { \\consists \"Ambitus_engraver\" }")
(define (ToggleDirective type field tag content . overrides) ; four strings and an arbitrary number of tags (numbers) for overrides.
(define proc-get (string-append "d-DirectiveGet-" type "-" field))
(define proc-del (string-append "d-DirectiveDelete-" type))
(define dis #f)
(if (pair? tag)
(begin (set! dis (cdr tag)) (set! tag (car tag)))
(set! dis tag))
(if ((eval-string proc-get) tag)
(begin ((eval-string proc-del) tag)
(d-SetSaved #f)
#f)
(apply AttachDirective type field (cons tag dis) content overrides)))
;;;;;;provides the editing options for a standalone directive that can only be toggled off/on.
(define (EditForStandaloneToggle tag)
(let ((choice (RadioBoxMenu
(cons (_ "Help") 'help)
(cons (_ "Edit Similar") 'similar)
(cons (_ "Object Inspector") 'inspect)
(cons (_ "Delete") 'delete))))
(case choice
((similar) (d-EditSimilar))
((help) (let ((thehelp (d-GetHelp tag)))
(if (string? thehelp)
(d-InfoDialog thehelp #f)
(d-InfoDialog (_ "No help!")))))
((inspect)
(d-DisplayCurrentObject))
((delete)
(d-DirectiveDelete-standalone tag)))))
; d-DirectivePut-standalone a convenience function for standalone directives
(define (d-DirectivePut-standalone tag)
(d-DirectivePut-standalone-minpixels tag 0)
(d-MoveCursorLeft))
(define (d-Directive-standalone tag)
(if (not (d-Directive-standalone? tag))
(d-DirectivePut-standalone tag)))
(define* (d-Directive-standalone? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-standalone ""))
(equal? tag (d-DirectiveGetForTag-standalone tag))))
(define (d-DirectiveGetTag-standalone)
(d-DirectiveGetForTag-standalone ""))
; d-DirectivePut-score a convenience function for score directives
(define (d-DirectivePut-score tag)
(d-DirectivePut-score-minpixels tag 0))
(define (d-Directive-score tag)
(d-DirectivePut-score tag))
;;procedure for creating/updating a directive attached to the the score expects the parameters a test for the directive already present a procedure for putting the directive one for deleting it a tag then two fields for getting a new value a default value a proc for testing the validity of the value and information to give the user when the directive is deleted.
(define (ManageSystemDirective params present? put-proc get-proc del-proc tag title prompt value test deletion-info)
(if (number? params)
(begin
(put-proc (number->string params)))
(begin
(if (present? tag)
(let ((choice (RadioBoxMenu (cons (_ "Help") 'help) (cons (_ "Edit") 'edit) (cons (_ "Delete") 'delete))))
(case choice
((help)
(let ((thehelp (d-GetHelp tag)))
(set! params 'cancel)
(if (string? thehelp)
(d-InfoDialog thehelp #f)
(d-InfoDialog (_ "No help!")))))
((delete)
(d-SetSaved #f)
(del-proc tag)
(set! params 'cancel)
(d-InfoDialog deletion-info #f)) ;#f => modal
((edit)
(set! params (get-proc))
(if (test params)
(begin
(set! value params)
(set! params #f))
(set! params 'cancel))))))
(if (not (eq? params 'cancel))
(let ((value (d-GetUserInput title prompt value)))
(if (test value)
(put-proc value)))))))
(define* (d-Directive-chord? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-chord ""))
(equal? tag (d-DirectiveGetForTag-chord tag))))
(define (d-DirectiveGetTag-chord)
(d-DirectiveGetForTag-chord ""))
(define* (d-Directive-note? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-note ""))
(equal? tag (d-DirectiveGetForTag-note tag))))
(define (d-DirectiveGetTag-note)
(d-DirectiveGetForTag-note ""))
(define* (d-Directive-score? #:optional (tag #f))
(if tag
(d-DirectiveGetForTag-score tag)
(d-DirectiveGetForTag-score "")))
(define (d-DirectiveGetTag-score)
(d-DirectiveGetForTag-score ""))
(define* (d-Directive-scoreheader? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-scoreheader ""))
(equal? tag (d-DirectiveGetForTag-scoreheader tag))))
(define (d-DirectiveGetTag-scoreheader)
(d-DirectiveGetForTag-scoreheader ""))
(define* (d-Directive-movementcontrol? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-movementcontrol ""))
(equal? tag (d-DirectiveGetForTag-movementcontrol tag))))
(define (d-DirectiveGetTag-movementcontrol)
(d-DirectiveGetForTag-movementcontrol ""))
(define* (d-Directive-header? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-header ""))
(equal? tag (d-DirectiveGetForTag-header tag))))
(define (d-DirectiveGetTag-header)
(d-DirectiveGetForTag-header ""))
(define* (d-Directive-paper? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-paper ""))
(equal? tag (d-DirectiveGetForTag-paper tag))))
(define (d-DirectiveGetTag-paper)
(d-DirectiveGetForTag-paper ""))
(define* (d-Directive-layout? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-layout ""))
(equal? tag (d-DirectiveGetForTag-layout tag))))
(define (d-DirectiveGetTag-layout)
(d-DirectiveGetForTag-layout ""))
(define* (d-Directive-staff? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-staff ""))
(equal? tag (d-DirectiveGetForTag-staff tag))))
(define (d-DirectiveGetTag-staff)
(d-DirectiveGetForTag-staff ""))
(define* (d-Directive-voice? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-voice ""))
(equal? tag (d-DirectiveGetForTag-voice tag))))
(define (d-DirectiveGetTag-voice)
(d-DirectiveGetForTag-voice ""))
(define* (d-Directive-clef? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-clef ""))
(equal? tag (d-DirectiveGetForTag-clef tag))))
(define (d-DirectiveGetTag-clef)
(d-DirectiveGetForTag-clef ""))
(define* (d-Directive-keysig? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-keysig ""))
(equal? tag (d-DirectiveGetForTag-keysig tag))))
(define (d-DirectiveGetTag-keysig)
(d-DirectiveGetForTag-keysig ""))
(define* (d-Directive-timesig? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-timesig ""))
(equal? tag (d-DirectiveGetForTag-timesig tag))))
(define (d-DirectiveGetTag-timesig)
(d-DirectiveGetForTag-timesig ""))
(define* (d-Directive-stemdirective? #:optional (tag #f))
(if (equal? tag #f)
(string? (d-DirectiveGetForTag-stemdirective ""))
(equal? tag (d-DirectiveGetForTag-stemdirective tag))))
(define (d-DirectiveGetTag-stemdirective)
(d-DirectiveGetForTag-stemdirective ""))
(define (d-DirectiveDelete-standalone Tag)
(if (equal? (d-DirectiveGetTag-standalone) Tag)
(begin (d-DeleteObject) #t)
#f))
(define* (ToggleChordDirective tag fontname lilypond #:optional (override #f) (display #f))
(if (d-Directive-chord? tag)
(d-DirectiveDelete-chord tag)
(begin
(if fontname
(begin
(d-DirectivePut-chord-gx tag 7)
(d-DirectivePut-chord-graphic tag fontname)))
(if display
(d-DirectivePut-chord-display tag display))
(d-DirectivePut-chord-postfix tag lilypond)
(if override
(d-DirectivePut-chord-override tag override))
(d-SetSaved #f))))
(define (SetDirectiveConditional)
(define choice #f)
(set! choice (RadioBoxMenu
(cons (string-append (_ "Only for the Layout for Part \"") (d-StaffProperties "query=lily_name") "\"") 'only)
(cons (string-append (_ "Only for Layout \"") (d-GetLayoutName) "\"") 'default)
(cons (_ "For all Layouts") 'all)))
(case choice
((all) (d-ForAllLayouts))
((default) (d-OnlyForLayout (cons (d-GetLayoutName) (d-GetLayoutId))))
((only) (d-OnlyForLayout (cons (d-StaffProperties "query=lily_name") (d-GetCurrentStaffLayoutId))))))
;;; Toggle the DENEMO_OVERRIDE_HIDDEN override of the directive at the cursor
(define (ToggleHidden type tag) ;;; eg (ToggleHidden "note" "Fingering")
(if (eval-string (string-append "(d-Directive-" type "? \"" tag "\")"))
(let ((override (eval-string (string-append "(d-DirectiveGet-" type "-override " "\"" tag "\")"))))
(eval-string (string-append "(d-DirectivePut-" type "-override " "\"" tag "\" " "(logxor DENEMO_OVERRIDE_HIDDEN " (number->string override) "))")))
#f))
|