123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #ifndef _TimeSoundAnalysisEditor_h_
- #define _TimeSoundAnalysisEditor_h_
- /* TimeSoundAnalysisEditor.h
- *
- * Copyright (C) 1992-2011,2012,2013,2014 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 "Sound_and_Spectrogram.h"
- #include "Pitch.h"
- #include "Intensity.h"
- #include "Formant.h"
- #include "PointProcess.h"
- #include "TimeSoundAnalysisEditor_enums.h"
- Thing_define (TimeSoundAnalysisEditor, TimeSoundEditor) {
- autoSpectrogram d_spectrogram;
- double d_spectrogram_cursor;
- autoPitch d_pitch;
- autoIntensity d_intensity;
- autoFormant d_formant;
- autoPointProcess d_pulses;
- GuiMenuItem spectrogramToggle, pitchToggle, intensityToggle, formantToggle, pulsesToggle;
- void v_destroy () noexcept
- override;
- void v_info ()
- override;
- void v_createMenuItems_query (EditorMenu menu)
- override;
- bool v_click (double xWC, double yWC, bool shiftKeyPressed)
- override;
- void v_createMenuItems_view_sound (EditorMenu menu)
- override;
- double v_getBottomOfSoundArea ()
- override
- {
- return p_spectrogram_show || p_pitch_show || p_intensity_show || p_formant_show ? 0.5 : 0.0;
- }
- virtual bool v_hasAnalysis () { return true; }
- virtual bool v_hasSpectrogram () { return true; }
- virtual bool v_hasPitch () { return true; }
- virtual bool v_hasIntensity () { return true; }
- virtual bool v_hasFormants () { return true; }
- virtual bool v_hasPulses () { return true; }
- virtual void v_reset_analysis ();
- virtual void v_createMenuItems_spectrum_picture (EditorMenu menu);
- virtual void v_createMenuItems_pitch_picture (EditorMenu menu);
- virtual void v_createMenuItems_intensity_picture (EditorMenu menu);
- virtual void v_createMenuItems_formant_picture (EditorMenu menu);
- virtual void v_createMenuItems_pulses_picture (EditorMenu menu);
- virtual void v_draw_analysis ();
- virtual void v_draw_analysis_pulses ();
- virtual void v_createMenuItems_query_log (EditorMenu menu);
- virtual void v_createMenus_analysis ();
- virtual void v_createMenuItems_view_sound_analysis (EditorMenu menu);
- #include "TimeSoundAnalysisEditor_prefs.h"
- };
- void TimeSoundAnalysisEditor_init (TimeSoundAnalysisEditor me,
- conststring32 title, Function data, Sampled sound, bool ownSound);
- void TimeSoundAnalysisEditor_computeSpectrogram (TimeSoundAnalysisEditor me);
- void TimeSoundAnalysisEditor_computePitch (TimeSoundAnalysisEditor me);
- void TimeSoundAnalysisEditor_computeIntensity (TimeSoundAnalysisEditor me);
- void TimeSoundAnalysisEditor_computeFormants (TimeSoundAnalysisEditor me);
- void TimeSoundAnalysisEditor_computePulses (TimeSoundAnalysisEditor me);
- /* End of file TimeSoundAnalysisEditor.h */
- #endif
|