TimeSoundEditor_prefs.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* TimeSoundEditor_prefs.h
  2. *
  3. * Copyright (C) 2013,2015 Paul Boersma
  4. *
  5. * This code is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This code is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. prefs_begin (TimeSoundEditor)
  19. prefs_add_enum_with_data (TimeSoundEditor, sound_scalingStrategy, 1, kTimeSoundEditor_scalingStrategy, DEFAULT)
  20. prefs_add_double_with_data (TimeSoundEditor, sound_scaling_height, 1, U"2.0")
  21. prefs_add_double_with_data (TimeSoundEditor, sound_scaling_minimum, 1, U"-1.0")
  22. prefs_add_double_with_data (TimeSoundEditor, sound_scaling_maximum, 1, U"1.0")
  23. prefs_add_bool (TimeSoundEditor, picture_preserveTimes, 1, true)
  24. prefs_add_double (TimeSoundEditor, picture_bottom, 1, U"0.0")
  25. prefs_add_double (TimeSoundEditor, picture_top, 1, U"0.0 (= auto)")
  26. prefs_add_bool (TimeSoundEditor, picture_garnish, 1, true)
  27. prefs_add_enum (TimeSoundEditor, extract_windowShape, 1, kSound_windowShape, DEFAULT)
  28. prefs_add_double (TimeSoundEditor, extract_relativeWidth, 1, U"1.0")
  29. prefs_add_bool (TimeSoundEditor, extract_preserveTimes, 1, true)
  30. prefs_add_double (TimeSoundEditor, extract_overlap, 1, U"0.01")
  31. prefs_end (TimeSoundEditor)
  32. /* End of file TimeSoundEditor_prefs.h */