Toob Player UI

This commit is contained in:
Robin E. R. Davies
2025-06-07 21:52:23 -04:00
parent 82f94cb152
commit 6ea45f46df
29 changed files with 1860 additions and 319 deletions
+4
View File
@@ -106,6 +106,9 @@ namespace pipedal::impl {
int64_t width,
int64_t height,
const std::vector<uint8_t> &thumbnailData);
void UpdateFilePosition(
int64_t idFile,
int32_t position);
private:
@@ -124,6 +127,7 @@ namespace pipedal::impl {
std::unique_ptr<SQLite::Statement> deleteFileQuery;
std::unique_ptr<SQLite::Statement> updateThumbnailInfoQueryByName;
std::unique_ptr<SQLite::Statement> updateThumbnailInfoQueryById;
std::unique_ptr<SQLite::Statement> updatePositionQuery;
std::filesystem::path path;
};
}