Results 3 issues of Alex

### 播放不分WAV文件时没有声音,进度条正常。 VERSION: "3.2.0" , COMMIT: 8b06a38e8f833650e8e273e97f6a0c0f34fd7ec5 播放时的日志输出 ``` BottomWidget::positionChanged => sliderSong->value()= 5 position 1672 swr_init failed: Invalid argument swr_init failed: Invalid argument BottomWidget::positionChanged => sliderSong->value()= 5 position 1718 BottomWidget::positionChanged...

优化了calendar_view/DayScrollView的弹出速度 #840 通过使用生成器避免过早实例化对象带来的卡顿,函数运行时间从690ms下降至580ms before: ![图片](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/assets/23147652/76ff9537-3111-43b0-bf86-a14d3a208a15) after: ![图片](https://github.com/zhiyiYo/PyQt-Fluent-Widgets/assets/23147652/37c1bd19-b7b0-4ab9-ba60-0ceb1af1ee97)

支持自定义侧边导航栏的控件的文字颜色 通过设置`lightColor`和`darkColor`两个属性即可设置字体颜色,支持使用QSS样式设置。 示例代码: ```Python from PyQt5.QtGui import QColor, QImage from PyQt5.QtCore import Qt, QSize from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QVBoxLayout from qfluentwidgets import FluentWindow, qconfig, Theme, isDarkTheme, QConfig, setTheme,...