/* moveviewport.h header file for functions that change leftmeasurenum, rightmeasurenum, top_measure, bottom_measure for Denemo, a gtk+ frontend to GNU Lilypond (c) 2000-2005 Matthew Hiller */ #include #ifndef MOVEVIEWPORT_H #define MOVEVIEWPORT_H void update_hscrollbar (DenemoGUI *si); void update_vscrollbar (DenemoGUI *si); void set_rightmeasurenum (DenemoScore *si); void set_bottom_staff (DenemoGUI *gui); void isoffleftside (DenemoGUI *gui); void isoffrightside (DenemoGUI *gui); void move_viewport_up (DenemoGUI *gui); void move_viewport_down (DenemoGUI *si); void set_currentmeasurenum (DenemoGUI *si, gint dest); void vertical_scroll (GtkAdjustment *adjust, DenemoGUI *si); void horizontal_scroll (GtkAdjustment *adjust, DenemoGUI *si); void set_currentstaffnum(DenemoGUI *si, gint dest); #endif