| 647 | } |
| 648 | |
| 649 | bool ClientInterface::isImageFile(const QString &filePath) const |
| 650 | { |
| 651 | static const QSet<QString> imageExtensions = {"png", "jpg", "jpeg", "gif", "webp", "bmp", "svg"}; |
| 652 | |
| 653 | QFileInfo fileInfo(filePath); |
| 654 | QString extension = fileInfo.suffix().toLower(); |
| 655 | |
| 656 | return imageExtensions.contains(extension); |
| 657 | } |
| 658 | |
| 659 | QString ClientInterface::getMediaTypeForImage(const QString &filePath) const |
| 660 | { |
nothing calls this directly
no outgoing calls
no test coverage detected