# SPECTROGRAM
# window (int number of samples)
# window length of fft in number of samples (powers of 2 are best)
# overlap (int number of samples)
# overlap between adjacent windows
# window-function (string)
# available functions: boxcar triang blackman hamming hann bartlett
# flattop parzen bohman blackmanharris nuttall barthann
# high-pass / low-pass (int Hz)
# signal outside this pseudo-bandpass filter are dropped from
# analysis
# threshold (in dB)
# signals more than threshold dB below the peak of the recording are
# dropped
# log10-freq (bool)
# whether frequency values should be log10 transformed prior to the
# calculation of frequency excursion (see ...)
# invert-colors (bool)
# display white-on-black spectrogram
# border-color, line-color (color)
# colors of spectrogram window border and excursion line overlay see
# "COLORS" below for options
# ration (float)
# ... (name to change soon)
[spectrogram]
window = 256
overlap = 192
window-function = hamming
high-pass = 1250
low-pass = 10000
threshold = 14
log10-freq = false
invert-colors = false
border-color = dimgrey
line-color = royalblue
ratio = 8
# MAIN-WINDOW
# menu-visible, toolbar-visible, statusbar-visible (bool)
# whether these ui elements should be displayed
# mac-native-menu (bool)
# osx only: use osx-style integrated menu (not implemented yet)
# toolbar-position (?)
# not implemented yet
# toolbar-style (int)
# ...
# theme-name (str)
# ...
[main-window]
menubar-visible = true
mac-native-menu = false
toolbar-visible = true
toolbar-position = top
statusbar-visible = true
toolbar-style = %(QToolButton-FollowStyle)s
theme-name = oxygen
start-maximized = false
# COLORS
# All colors are specified as a string as one of the following:
# 1) hex digits:
# #RGB (each of R, G, and B is a single hex digit)
# #RRGGBB
# #AARRGGBB
# #RRRGGGBBB
# #RRRRGGGGBBBB
# 2) An svg color name
# (see https://www.w3.org/TR/SVG/types.html#ColorKeywords)
# 3) A Qt Color role variable (see VARIABLES below)
# VARIABLES
# This file uses pythons ConfigParser string interpolation. Any setting
# can include the value of another setting as "%(NAME)s". The following
# variables are set to the Qt defaults prior to this file being parsed
# and can be used as desired:
# QPalette-Window
# QPalette-Background
# QPalette-WindowText
# QPalette-Foreground
# QPalette-Base
# QPalette-AlternateBase
# QPalette-ToolTipBase
# QPalette-ToolTipText
# QPalette-Text
# QPalette-Button
# QPalette-ButtonText
# QPalette-BrightText
# QToolButton-IconOnly
# QToolButton-TextOnly
# QToolButton-TextBesideIcon
# QToolButton-TextUnderIcon
# QToolButton-FollowStyle