1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef _RealTierEditor_h_
- #define _RealTierEditor_h_
- /* RealTierEditor.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 "TimeSoundEditor.h"
- #include "RealTier.h"
- Thing_define (RealTierEditor, TimeSoundEditor) {
- double ymin, ymax, ycursor;
- void v_createMenus ()
- override;
- void v_dataChanged ()
- override;
- void v_draw ()
- override;
- bool v_click (double xWC, double yWC, bool shiftKeyPressed)
- override;
- void v_play (double tmin, double tmax)
- override;
- void v_createMenuItems_view (EditorMenu menu)
- override;
- virtual double v_minimumLegalValue () { return undefined; }
- virtual double v_maximumLegalValue () { return undefined; }
- virtual conststring32 v_quantityText () { return U"Y"; } // normally includes units
- virtual conststring32 v_rightTickUnits () { return U""; }
- virtual double v_defaultYmin () { return 0.0; }
- virtual double v_defaultYmax () { return 1.0; }
- virtual conststring32 v_setRangeTitle () { return U"Set range..."; }
- virtual conststring32 v_defaultYminText () { return U"0.0"; }
- virtual conststring32 v_defaultYmaxText () { return U"1.0"; }
- virtual conststring32 v_yminText () { return U"Minimum"; } // normally includes units
- virtual conststring32 v_ymaxText () { return U"Maximum"; } // normally includes units
- };
- void RealTierEditor_updateScaling (RealTierEditor me);
- /*
- Computes the ymin and ymax values on the basis of the data.
- Call after every change in the data.
- */
- void RealTierEditor_init (RealTierEditor me, conststring32 title, RealTier data, Sound sound, bool ownSound);
- /*
- `sound` may be null;
- if `ownSound` is `true`, the editor will contain a deep copy of the Sound,
- which the editor will destroy when the editor is destroyed.
- */
- /* End of file RealTierEditor.h */
- #endif
|