1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef _PitchTierEditor_h_
- #define _PitchTierEditor_h_
- /* PitchTierEditor.h
- *
- * Copyright (C) 1992-2011,2012,2015,2017 Paul Boersma
- *
- * This code is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or (at
- * your option) any later version.
- *
- * This code is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this work. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "RealTierEditor.h"
- #include "PitchTier.h"
- #include "Sound.h"
- Thing_define (PitchTierEditor, RealTierEditor) {
- void v_createHelpMenuItems (EditorMenu menu)
- override;
- void v_play (double tmin, double tmax)
- override;
- double v_minimumLegalValue ()
- override { return 0.0; }
- conststring32 v_quantityText ()
- override { return U"Frequency (Hz)"; }
- conststring32 v_rightTickUnits ()
- override { return U" Hz"; }
- double v_defaultYmin ()
- override { return 50.0; }
- double v_defaultYmax ()
- override { return 600.0; }
- conststring32 v_setRangeTitle ()
- override { return U"Set frequency range..."; }
- conststring32 v_defaultYminText ()
- override { return U"50.0"; }
- conststring32 v_defaultYmaxText ()
- override { return U"600.0"; }
- conststring32 v_yminText ()
- override { return U"Minimum frequency (Hz)"; }
- conststring32 v_ymaxText ()
- override { return U"Maximum frequency (Hz)"; }
- };
- autoPitchTierEditor PitchTierEditor_create (conststring32 title,
- PitchTier pitch,
- Sound sound, // may be null
- bool ownSound);
- /* End of file PitchTierEditor.h */
- #endif
|