]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-imports.cc
Issue 4474/3: Make all of ly-syntax-constructors.scm a separate module
[lilypond.git] / lily / lily-imports.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2015 by David Kastrup <dak@gnu.org>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "lily-imports.hh"
21
22 namespace Guile_user {
23   Scm_module module ("guile-user");
24
25   Variable plus ("+");
26   Variable make_module ("make-module");
27 #if GUILEV2
28   Variable module_export_all_x ("module-export-all!");
29 #endif
30   Variable module_export_x ("module-export!");
31   Variable module_public_interface ("module-public-interface");
32   Variable module_use_x ("module-use!");
33   Variable symbol_p ("symbol?");
34   Variable the_root_module ("the-root-module");
35 }
36
37 namespace Display {
38   Scm_module module ("scm display-lily");
39
40   Variable value_to_lily_string ("value->lily-string");
41 }
42
43 namespace Lily {
44   Scm_module module ("lily");
45
46   Variable all_music_font_encodings ("all-music-font-encodings");
47   Variable alterations_in_key ("alterations-in-key");
48   Variable backend_testing ("backend-testing");
49   Variable base_length ("base-length");
50   Variable beam_exceptions ("beam-exceptions");
51   Variable beat_structure ("beat-structure");
52   Variable calc_repeat_slash_count ("calc-repeat-slash-count");
53   Variable car_less ("car<");
54   Variable construct_chord_elements ("construct-chord-elements");
55   Variable default_time_signature_settings ("default-time-signature-settings");
56   Variable hash_table_to_alist ("hash-table->alist");
57   Variable interpret_markup_list ("interpret-markup-list");
58   Variable invalidate_alterations ("invalidate-alterations");
59   Variable key_signature_interface_alteration_positions ("key-signature-interface::alteration-positions");
60   Variable layout_extract_page_properties ("layout-extract-page-properties");
61   Variable lilypond_main ("lilypond-main");
62   Variable line_markup ("line-markup");
63   Variable f_location ("%location");
64   Variable lookup_font ("lookup-font");
65   Variable lookup_markup_command ("lookup-markup-command");
66   Variable lookup_markup_list_command ("lookup-markup-list-command");
67   Variable ly_context_find ("ly:context-find");
68   Variable ly_context_set_property_x ("ly:context-set-property!");
69   Variable ly_event_p ("ly:event?");
70   Variable ly_make_event_class ("ly:make-event-class");
71   Variable ly_music_p ("ly:music?");
72   Variable make_music ("make-music");
73   Variable make_safe_lilypond_module ("make-safe-lilypond-module");
74   Variable make_span_event ("make-span-event");
75   Variable markup_p ("markup?");
76   Variable markup_list_p ("markup-list?");
77   Variable midi_program ("midi-program");
78 #if !GUILEV2
79   Variable module_export_all_x ("module-export-all!");
80 #endif
81   Variable f_parser ("%parser");
82   Variable percussion_p ("percussion?");
83   Variable pure_chain_offset_callback ("pure-chain-offset-callback");
84   Variable remove_stencil_warnings ("remove-stencil-warnings");
85   Variable scale_layout ("scale-layout");
86   Variable scm_to_string ("scm->string");
87   Variable score_lines_markup_list ("score-lines-markup-list");
88   Variable score_markup ("score-markup");
89   Variable scorify_music ("scorify-music");
90   Variable span_bar_notify_grobs_of_my_existence ("span-bar::notify-grobs-of-my-existence");
91   Variable stencil_whiteout ("stencil-whiteout");
92   Variable stencil_whiteout_box ("stencil-whiteout-box");
93   Variable symbol_list_p ("symbol-list?");
94   Variable tremolo_get_music_list ("tremolo::get-music-list");
95   Variable type_name ("type-name");
96   Variable volta_bracket_calc_hook_visibility ("volta-bracket::calc-hook-visibility");
97   Variable write_performances_midis ("write-performances-midis");
98 }
99
100 namespace Syntax {
101   Scm_module module ("scm ly-syntax-constructors");
102
103   Variable add_lyrics ("add-lyrics");
104   Variable argument_error ("argument-error");
105   Variable composed_markup_list ("composed-markup-list");
106   Variable context_change ("context-change");
107   Variable context_specification ("context-specification");
108   Variable event_chord ("event-chord");
109   Variable lyric_combine ("lyric-combine");
110   Variable lyric_event ("lyric-event");
111   Variable multi_measure_rest ("multi-measure-rest");
112   Variable music_function ("music-function");
113   Variable music_function_call_error ("music-function-call-error");
114   Variable property_operation ("property-operation");
115   Variable repeat ("repeat");
116   Variable repetition_chord ("repetition-chord");
117   Variable sequential_music ("sequential-music");
118   Variable simultaneous_music ("simultaneous-music");
119   Variable tempo ("tempo");
120   Variable unrelativable_music ("unrelativable-music");
121   Variable void_music ("void-music");
122 }