======================= Technical documentation ======================= Overview -------- The main modules ~~~~~~~~~~~~~~~~ - The motor of PYNWC is the main script `Pythonnwc`. For the Noteworthy Software application (NWC), `Pythonnwc` is just one user tool, but when started, you see a window where you have the choise between several tools. So PYNWC is a tool environment within the user tool environment of NWC. - The NWC file that's opened in NWC when you start `Pythonnwc` is read from the standard input (stdin). - The module `NWC classes` is used to create a 'score object' from the input file. - The module `NWC terms` contains:. - literals - dictionaries to validate NWC-objects. - type_field_lists: valid fields per object type - type_field_value_lists: valid values per type_field (special case: type_field_value_lists["ObjType"] contains the valid object types). """ - The module `NWC types` contains the definition of the types used in PYNWC. - The module `NWC object gui` shows and processes edit windows for NWC object properties. - The module `NWC xlsx writer` writes a workbook from a dictionary. Tool structure ~~~~~~~~~~~~~~ Present in every tool: - A docstring with a short one line description, followed by a blank line, followed by a full description of the tool. The first line will be shown in the reporting frame when a tool is selected. The lines after the blank line are used as help information when the button 'Help' is pressed. - The descriptive 'name' of the tool, which is shown in the selection frame of the main window. - A list 'report': each action taken by the tool is registered in this list and shown in the reporting frame of the main window. - A list 'summary': a summary overview of the actions. - A dictionary of 'features': - mode: 'edit' or 'report' - needs selection: 'Yes' or 'No' - has parameters: 'Yes' or 'No' - output file types: NWCtext Files (.nwctxt), Text Files (.txt) or XLSX Files (.xls) - An instance 'G' of a `DictClass`, containing the global variables: - the score - if the tool has parameters: - the layout for the tool parameter window - the parameter_values - a function to get the parameters from the tool parameter window - variables, specific for the tool itself - A function init(score: NWCFile, config: ParmDict). The function is called when a tool is selected and contains following actions: - restore the global variables to their original values; this is necessary because a tool can be selected more than once in the same session of PYNWC - store the argument 'score' in the global variables - if the tool has parameters: - initialise the parameter values: use the values from config if present or default values. - set global variables from the parameter values - create a layout for the tool parameter window - store a reference in the global variable to the function that gets the parameter values from the tool parameter window - Functions if the tool has parameters: - create_parameter_layout() - get_parameter_values(values) - process_parameters(parameter_values) - update_parameter_window(window, event, values) - A function run(). This function is called when the button 'Run Tool' on the main window is pressed. - A function finish() that restores the global variables. This function is called when a tool has been run and the main script has done the reporting. Scenario ~~~~~~~~ - Upon start: - the input file is read from stdin and a `NwcFile` object is created - the configuration file is read into a dictionary (with the tool name as key) - the main window is constructed - some information about the score is shown in the reporting window - if the command line contains arguments (see 'Installation for a specific tool' in :ref:`Installing PYNWC`), they are processsed - user interaction is awaited - actions after a user interaction: - Tool selection: - The tool name and its features are shown in the reporting frame. - The init() function of the tool is called. - Button 'HELP' is pressed: a help window is opened. - If no tool was selected, the general help text is shown. - If a tool is selected, the help text of that tool is shown. Via a radio button the user can get the general help text. - Button 'Show Score Info' is pressed: Some info about the score is shown in the reporting frame. - Button 'Tool Parameters' is pressed (only enabled when a tool with parameters is selected): - A parameter window is shown; the layout is determined by the specific tool function create_parameter_layout. - When the user exits this window, the values of that window are processed by the selected tool function get_parameter_values and stored in the global variables of the tool. - The parameter values for the tool are updated in the configuration dictionary. - Button 'Run Tool' is pressed: - The run() function of the selected tool is called. - The resulted report and summary lines are shown in the reporting frame. - A list of output lines is formed with: - If the tool has mode 'edit' and changes to the score are made: the new file representation. - If the tool had mode 'report': the report lines. - The finish() function of the selected tool is called. - Button 'Show Output' is pressed: the output lines are shown in the reporting frame. - Button 'Save Changes' is pressed: - A popup 'Save changes?' appears. - If the user confirms, the output lines with the representation of the changed score is written to stdout. - Button 'Save as' is pressed: - The output file path is set: - The folder must be specified by the user. - If the tool returned a value for 'output_filename', this is used as the default base file name, otherwise the input file name. - The extension is set on the basis of the tool feature 'output file types'. - The user has still the opportunity to change the file name. - The file is saved, after confirmation by the user. - Button 'EXIT' is pressed: - If the score was changed and has'nt been saved, a popup 'Save changes?' will appear and, if the user confirms, the output lines with the representation of the changed score is written to stdout. - The main window is closed. - The configuratioen dictionary with the tool parameters is saved in the configuration file. Main script ----------- Pythonnwc ~~~~~~~~~ .. automodule:: pythonnwc :members: General modules --------------- NWC classes ~~~~~~~~~~~ .. automodule:: nwc_classes :members: NWC terms ~~~~~~~~~~~ .. automodule:: nwc_terms :members: NWC Types ~~~~~~~~~ .. automodule:: nwc_types :members: NWC Object gui ~~~~~~~~~~~~~~ .. automodule:: nwc_object_gui Xlsx module ~~~~~~~~~~~ .. automodule:: my_xlsxwriter :members: Tool modules ------------ Add rest measures ~~~~~~~~~~~~~~~~~ .. automodule:: add_rest_measures :members: Analyse score ~~~~~~~~~~~~~ .. automodule:: analyse_score :members: Audit score ~~~~~~~~~~~~~ .. automodule:: audit_score :members: Color beams, slurs and triplets ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. automodule:: color_beams_slurs_triplets :members: Color flow changes ~~~~~~~~~~~~~~~~~~ .. automodule:: color_flow_changes :members: Configure new song ~~~~~~~~~~~~~~~~~~ .. automodule:: new_song :members: Construct medley ~~~~~~~~~~~~~~~~~~ .. automodule:: construct_medley :members: Layer voices ~~~~~~~~~~~~ .. automodule:: layer_voices :members: Make rehearsal file ~~~~~~~~~~~~~~~~~~~ .. automodule:: rehearsal_file :members: Organize files ~~~~~~~~~~~~~~ .. automodule:: organize_files :members: Search & Modify ~~~~~~~~~~~~~~~ .. automodule:: global_mod :members: Set Staff Properties ~~~~~~~~~~~~~~~~~~~~ .. automodule:: set_staff_properties :members: Show clip ~~~~~~~~~ .. automodule:: show_clip :members: Show collapsible sections ~~~~~~~~~~~~~~~~~~~~~~~~~ .. automodule:: show_collapsible :members: Show file ~~~~~~~~~ .. automodule:: show_file :members: Transfer selection ~~~~~~~~~~~~~~~~~~ .. automodule:: transfer_selection :members: Tool template ~~~~~~~~~~~~~~ .. automodule:: tool_template :members: