Home
last modified time | relevance | path

Searched refs:movementnum (Results 1 – 6 of 6) sorted by relevance

/dports/audio/denemo/denemo-2.0.6/src/command/
H A Dscore.h27 gboolean goto_movement_staff_obj (DenemoProject * gui, gint movementnum, gint staffnum, gint measur…
34 DenemoObject *get_object_by_position (gint movementnum, gint staffnum, gint measurenum, gint objnum…
H A Dscorelayout.c86 get_location (guint movementnum, guint voicecount) in get_location() argument
88 return (movementnum << 16) | voicecount; in get_location()
94 guint movementnum = location >> 16; in navigate_to_location() local
96 goto_movement_staff_obj (NULL, movementnum, staffnum, 1, 0, 0); in navigate_to_location()
210 get_voicetag (gint movementnum, gint voice_count) in get_voicetag() argument
221 get_voicename (gint movementnum, gint voice_count) in get_voicename() argument
791 gchar *voicetag = get_voicetag (movementnum, voice_count); in install_voice()
792 gchar *voicename = get_voicename (movementnum, voice_count); in install_voice()
1592 do_verses (staff, vbox, movementnum, (*pvoice_count)); in install_staff_with_voices()
1624 gint movementnum = 1; in append_staff() local
[all …]
H A Dscore.c70 static void select_movement (gint movementnum) { in select_movement() argument
71 …gboolean ok = goto_movement_staff_obj (NULL, movementnum, 1, 1, 0, 0);// this was moving to the mo… in select_movement()
326 goto_movement_staff_obj (DenemoProject * possible_gui, gint movementnum, gint staffnum, gint measur… in goto_movement_staff_obj() argument
334 if (movementnum > 0 && (movementnum != gui->movement->currentmovementnum)) in goto_movement_staff_obj()
336 GList *this = g_list_nth (gui->movements, movementnum - 1); in goto_movement_staff_obj()
401 get_object_by_position (gint movementnum, gint staffnum, gint measurenum, gint objnum) in get_object_by_position() argument
404 GList *this = g_list_nth (gui->movements, movementnum - 1); in get_object_by_position()
/dports/audio/denemo/denemo-2.0.6/src/export/
H A Dexportlilypond.c2945 …gint movementnum = (intptr_t) g_object_get_data (G_OBJECT (anchor), MOVEMENTNUM);//g_print ("Getti… in get_object_at_lilypond() local
2946 return get_object_by_position (movementnum, staffnum, measurenum, objnum); in get_object_at_lilypond()
3004 gint movementnum = (intptr_t) g_object_get_data (G_OBJECT (anchor), MOVEMENTNUM); in goto_lilypond_position() local
3018 if (movementnum < 1) in goto_lilypond_position()
3024 if (!goto_movement_staff_obj (gui, movementnum, staffnum, measurenum, objnum, 0)) in goto_lilypond_position()
3127 gint movementnum = (intptr_t) g_object_get_data (G_OBJECT (anchor), MOVEMENTNUM); in lily_keypress() local
3129 if (movementnum < 1) in lily_keypress()
3131 if (!goto_movement_staff_obj (gui, movementnum, staffnum, measurenum, objnum, 0)) in lily_keypress()
/dports/audio/denemo/denemo-2.0.6/src/printview/
H A Dprintview.c2201 static gint firstmeasure, lastmeasure, firststaff, laststaff, movementnum; in retypeset() local
2215 …lilysync != Denemo.project->changecount) || (si->currentmovementnum != movementnum) || ((Denemo.pr… in retypeset()
2225 movementnum = si->currentmovementnum; in retypeset()
/dports/audio/denemo/denemo-2.0.6/src/scripting/
H A Dscheme-callbacks.c2480 gint movementnum, staffnum, measurenum, objectnum; in scheme_goto_position() local
2482 movementnum = scm_to_int (movement); in scheme_goto_position()
2484 movementnum = g_list_index (Denemo.project->movements, Denemo.project->movement) + 1; in scheme_goto_position()
2501 goto_movement_staff_obj (NULL, movementnum, staffnum, measurenum, objectnum, 0); in scheme_goto_position()
2502 …if ((movementnum == g_list_index (Denemo.project->movements, Denemo.project->movement) + 1) && (st… in scheme_goto_position()