1 #ifndef _PitchEditor_h_
2 #define _PitchEditor_h_
3 /* PitchEditor.h
4  *
5  * Copyright (C) 1992-2005,2007,2009-2012,2015,2016,2018,2020 Paul Boersma
6  *
7  * This code is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or (at
10  * your option) any later version.
11  *
12  * This code is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  * See the GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this work. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #include "FunctionEditor.h"
22 #include "Pitch.h"
23 
Thing_define(PitchEditor,FunctionEditor)24 Thing_define (PitchEditor, FunctionEditor) {
25 	void v_createMenus ()
26 		override;
27 	void v_createHelpMenuItems (EditorMenu menu)
28 		override;
29 	void v_draw ()
30 		override;
31 	void v_play (double tmin, double tmax)
32 		override;
33 	bool v_mouseInWideDataView (GuiDrawingArea_MouseEvent event, double x_world, double y_fraction)
34 		override;
35 };
36 
37 autoPitchEditor PitchEditor_create (conststring32 title, Pitch pitch);
38 
39 /* End of file PitchEditor.h */
40 #endif
41