This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
35 lines
979 B
Plaintext
35 lines
979 B
Plaintext
TODO list for spectrum analyser
|
|
===============================
|
|
|
|
Bug fixes
|
|
---------
|
|
|
|
|
|
New features
|
|
------------
|
|
|
|
* Wrap user-visible strings in tr()
|
|
|
|
* Allow user to set frequency range
|
|
There should be some constraints on this, e.g.
|
|
- Maximum frequency must not be greater than Nyquist frequency
|
|
- Range is divisible by number of bars?
|
|
|
|
* Add more visualizers other than bar spectrogram
|
|
e.g. Funky OpenGL visualizers, particle effects etc
|
|
|
|
|
|
Non-functional stuff
|
|
--------------------
|
|
|
|
* Improve robustness of QComboBox -> enum mapping
|
|
At the moment, SettingsDialog relies on casting the combobox item index directly to the enumerated type. This is clearly a bit fragile...
|
|
|
|
* For functions which take or return qint64 values, make a clear distinction between duration (microseconds) and length (bytes).
|
|
A sensible convention would be that the default is bytes - i.e. microseconds must be indicated by adding a Us suffix, where not already obvious from the function name.
|
|
|
|
|
|
|
|
|
|
|