MythTV
master
|
Public Types | |
using | genre_list = VideoMetadata::genre_list |
using | country_list = VideoMetadata::country_list |
using | cast_list = VideoMetadata::cast_list |
Public Member Functions | |
VideoMetadataImp (QString filename, QString sortFilename, QString hash, QString trailer, QString coverfile, QString screenshot, QString banner, QString fanart, const QString &title, QString sortTitle, const QString &subtitle, QString sortSubtitle, QString tagline, int year, const QDate releasedate, QString inetref, int collectionref, QString homepage, QString director, QString studio, QString plot, float userrating, QString rating, int length, int playcount, int season, int episode, const QDate insertdate, int id, ParentalLevel::Level showlevel, int categoryID, int childID, bool browse, bool watched, QString playcommand, QString category, genre_list genres, country_list countries, cast_list cast, QString host="", bool processed=false, VideoContentType contenttype=kContentUnknown) | |
VideoMetadataImp (MSqlQuery &query) | |
VideoMetadataImp (const VideoMetadataImp &other) | |
VideoMetadataImp & | operator= (const VideoMetadataImp &rhs) |
void | ensureSortFields (void) |
const QString & | GetPrefix () const |
void | SetPrefix (const QString &prefix) |
const QString & | getTitle () const |
const QString & | getSortTitle () const |
void | SetTitle (const QString &title, const QString &sortTitle="") |
const QString & | getSubtitle () const |
const QString & | getSortSubtitle () const |
void | SetSubtitle (const QString &subtitle, const QString &sortSubtitle="") |
const QString & | GetTagline () const |
void | SetTagline (const QString &tagline) |
const QString & | GetInetRef () const |
void | SetInetRef (const QString &inetRef) |
int | GetCollectionRef () const |
void | SetCollectionRef (int collectionref) |
const QString & | GetHomepage () const |
void | SetHomepage (const QString &homepage) |
const QString & | getDirector () const |
void | SetDirector (const QString &director) |
const QString & | getStudio () const |
void | SetStudio (const QString &studio) |
const QString & | getPlot () const |
void | SetPlot (const QString &plot) |
const QString & | GetRating () const |
void | SetRating (const QString &rating) |
const QString & | getPlayCommand () const |
void | SetPlayCommand (const QString &playCommand) |
const QString & | GetCategory () const |
const genre_list & | getGenres () const |
void | SetGenres (const genre_list &genres) |
const country_list & | GetCountries () const |
void | SetCountries (const country_list &countries) |
const cast_list & | GetCast () const |
void | SetCast (const cast_list &cast) |
const QString & | GetHost () const |
void | SetHost (const QString &host) |
const QString & | getFilename () const |
const QString & | getSortFilename () const |
void | SetFilename (const QString &filename, const QString &sortFilename="") |
bool | sortBefore (const VideoMetadataImp *rhs) const |
Returns true if the object should appear before the argument. More... | |
const QString & | GetHash () const |
void | SetHash (const QString &hash) |
const QString & | GetTrailer () const |
void | SetTrailer (const QString &trailer) |
const QString & | GetCoverFile () const |
void | SetCoverFile (const QString &coverFile) |
const QString & | GetScreenshot () const |
void | SetScreenshot (const QString &screenshot) |
const QString & | GetBanner () const |
void | SetBanner (const QString &banner) |
const QString & | GetFanart () const |
void | SetFanart (const QString &fanart) |
int | GetCategoryID () const |
void | SetCategoryID (int id) |
int | GetChildID () const |
void | SetChildID (int childID) |
int | getYear () const |
void | SetYear (int year) |
QDate | getReleaseDate () const |
void | SetReleaseDate (QDate releasedate) |
std::chrono::minutes | GetLength () const |
void | SetLength (std::chrono::minutes length) |
unsigned int | GetPlayCount () const |
void | SetPlayCount (int playcount) |
int | GetSeason () const |
void | SetSeason (int season) |
int | GetEpisode () const |
void | SetEpisode (int episode) |
QDate | GetInsertdate () const |
void | SetInsertdate (QDate date) |
ParentalLevel::Level | GetShowLevel () const |
void | SetShowLevel (ParentalLevel::Level showLevel) |
bool | GetBrowse () const |
void | SetBrowse (bool browse) |
bool | GetWatched () const |
void | SetWatched (bool watched) |
unsigned int | GetID () const |
void | SetID (int id) |
float | GetUserRating () const |
void | SetUserRating (float userRating) |
bool | GetProcessed () const |
void | SetProcessed (bool processed) |
VideoContentType | GetContentType () const |
void | SetContentType (VideoContentType contenttype) |
void | SaveToDatabase () |
void | UpdateDatabase () |
bool | DeleteFromDatabase () |
bool | DeleteFile () |
Deletes the file associated with a metadata entry. More... | |
void | Reset () |
bool | IsHostSet () const |
void | GetImageMap (InfoMap &imageMap) const |
QString | GetImage (const QString &name) const |
Private Member Functions | |
void | fillCountries () |
void | updateCountries () |
void | fillGenres () |
void | fillCast () |
void | updateGenres () |
void | updateCast () |
bool | removeDir (const QString &dirName) |
void | fromDBRow (MSqlQuery &query) |
Sets metadata from a DB row. More... | |
void | saveToDatabase () |
Private Attributes | |
QString | m_title |
QString | m_sortTitle |
QString | m_subtitle |
QString | m_sortSubtitle |
QString | m_tagline |
QString | m_inetref |
int | m_collectionref {0} |
QString | m_homepage |
QString | m_director |
QString | m_studio |
QString | m_plot |
QString | m_rating |
QString | m_playcommand |
QString | m_category |
genre_list | m_genres |
country_list | m_countries |
cast_list | m_cast |
QString | m_filename |
QString | m_sortFilename |
QString | m_hash |
QString | m_trailer |
QString | m_coverfile |
QString | m_screenshot |
QString | m_banner |
QString | m_fanart |
QString | m_host |
int | m_categoryID {0} |
int | m_childID {-1} |
int | m_year {VIDEO_YEAR_DEFAULT} |
QDate | m_releasedate |
std::chrono::minutes | m_length {0min} |
int | m_playcount {0} |
int | m_season {0} |
int | m_episode {0} |
QDate | m_insertdate |
ParentalLevel::Level | m_showlevel {ParentalLevel::plNone} |
bool | m_browse {true} |
bool | m_watched {false} |
unsigned int | m_id {0} |
float | m_userrating {0.0} |
bool | m_processed {false} |
VideoContentType | m_contenttype {kContentUnknown} |
QString | m_prefix |
Definition at line 27 of file videometadata.cpp.
Definition at line 30 of file videometadata.cpp.
Definition at line 31 of file videometadata.cpp.
Definition at line 32 of file videometadata.cpp.
|
inline |
Definition at line 35 of file videometadata.cpp.
|
inlineexplicit |
Definition at line 89 of file videometadata.cpp.
|
inline |
Definition at line 95 of file videometadata.cpp.
|
inline |
Definition at line 100 of file videometadata.cpp.
|
inline |
Definition at line 157 of file videometadata.cpp.
Referenced by fromDBRow(), operator=(), saveToDatabase(), SetFilename(), SetSubtitle(), SetTitle(), and VideoMetadataImp().
|
inline |
Definition at line 169 of file videometadata.cpp.
Referenced by VideoMetadata::GetPrefix().
|
inline |
Definition at line 170 of file videometadata.cpp.
Referenced by VideoMetadata::SetPrefix().
|
inline |
Definition at line 172 of file videometadata.cpp.
Referenced by VideoMetadata::GetTitle().
|
inline |
Definition at line 173 of file videometadata.cpp.
Referenced by VideoMetadata::GetSortTitle().
|
inline |
Definition at line 174 of file videometadata.cpp.
Referenced by VideoMetadata::SetTitle().
|
inline |
Definition at line 181 of file videometadata.cpp.
Referenced by VideoMetadata::GetSubtitle().
|
inline |
Definition at line 182 of file videometadata.cpp.
Referenced by VideoMetadata::GetSortSubtitle().
|
inline |
Definition at line 183 of file videometadata.cpp.
Referenced by VideoMetadata::SetSubtitle().
|
inline |
Definition at line 189 of file videometadata.cpp.
Referenced by VideoMetadata::GetTagline().
|
inline |
Definition at line 190 of file videometadata.cpp.
Referenced by VideoMetadata::SetTagline().
|
inline |
Definition at line 192 of file videometadata.cpp.
Referenced by VideoMetadata::GetInetRef().
|
inline |
Definition at line 193 of file videometadata.cpp.
Referenced by VideoMetadata::SetInetRef().
|
inline |
Definition at line 195 of file videometadata.cpp.
Referenced by VideoMetadata::GetCollectionRef().
|
inline |
Definition at line 196 of file videometadata.cpp.
Referenced by VideoMetadata::SetCollectionRef().
|
inline |
Definition at line 198 of file videometadata.cpp.
Referenced by VideoMetadata::GetHomepage().
|
inline |
Definition at line 199 of file videometadata.cpp.
Referenced by VideoMetadata::SetHomepage().
|
inline |
Definition at line 201 of file videometadata.cpp.
Referenced by VideoMetadata::GetDirector().
|
inline |
Definition at line 202 of file videometadata.cpp.
Referenced by VideoMetadata::SetDirector().
|
inline |
Definition at line 204 of file videometadata.cpp.
Referenced by VideoMetadata::GetStudio().
|
inline |
Definition at line 205 of file videometadata.cpp.
Referenced by VideoMetadata::SetStudio().
|
inline |
Definition at line 207 of file videometadata.cpp.
Referenced by VideoMetadata::GetPlot().
|
inline |
Definition at line 208 of file videometadata.cpp.
Referenced by VideoMetadata::SetPlot().
|
inline |
Definition at line 210 of file videometadata.cpp.
Referenced by VideoMetadata::GetRating().
|
inline |
Definition at line 211 of file videometadata.cpp.
Referenced by VideoMetadata::SetRating().
|
inline |
Definition at line 213 of file videometadata.cpp.
Referenced by VideoMetadata::GetPlayCommand().
|
inline |
Definition at line 214 of file videometadata.cpp.
Referenced by VideoMetadata::SetPlayCommand().
|
inline |
Definition at line 219 of file videometadata.cpp.
Referenced by VideoMetadata::GetCategory().
|
inline |
Definition at line 222 of file videometadata.cpp.
Referenced by VideoMetadata::GetGenres().
|
inline |
Definition at line 223 of file videometadata.cpp.
Referenced by VideoMetadata::SetGenres().
|
inline |
Definition at line 225 of file videometadata.cpp.
Referenced by VideoMetadata::GetCountries().
|
inline |
Definition at line 226 of file videometadata.cpp.
Referenced by VideoMetadata::SetCountries().
|
inline |
Definition at line 231 of file videometadata.cpp.
Referenced by VideoMetadata::GetCast().
|
inline |
Definition at line 232 of file videometadata.cpp.
Referenced by VideoMetadata::SetCast().
|
inline |
Definition at line 234 of file videometadata.cpp.
Referenced by VideoMetadata::GetHost(), GetImage(), and GetImageMap().
|
inline |
Definition at line 235 of file videometadata.cpp.
Referenced by VideoMetadata::SetHost().
|
inline |
Definition at line 237 of file videometadata.cpp.
Referenced by VideoMetadata::FillDataFromFilename(), and VideoMetadata::GetFilename().
|
inline |
Definition at line 238 of file videometadata.cpp.
Referenced by VideoMetadata::GetSortFilename().
|
inline |
Definition at line 239 of file videometadata.cpp.
Referenced by VideoMetadata::SetFilename().
bool VideoMetadataImp::sortBefore | ( | const VideoMetadataImp * | rhs | ) | const |
Returns true if the object should appear before the argument.
Definition at line 401 of file videometadata.cpp.
Referenced by VideoMetadata::sortBefore().
|
inline |
Definition at line 248 of file videometadata.cpp.
Referenced by VideoMetadata::GetHash().
|
inline |
Definition at line 249 of file videometadata.cpp.
Referenced by VideoMetadata::SetHash().
|
inline |
Definition at line 251 of file videometadata.cpp.
Referenced by VideoMetadata::GetTrailer().
|
inline |
Definition at line 252 of file videometadata.cpp.
Referenced by VideoMetadata::SetTrailer().
|
inline |
Definition at line 254 of file videometadata.cpp.
Referenced by VideoMetadata::GetCoverFile(), GetImage(), and GetImageMap().
|
inline |
Definition at line 255 of file videometadata.cpp.
Referenced by VideoMetadata::SetCoverFile().
|
inline |
Definition at line 257 of file videometadata.cpp.
Referenced by GetImage(), GetImageMap(), and VideoMetadata::GetScreenshot().
|
inline |
Definition at line 258 of file videometadata.cpp.
Referenced by VideoMetadata::SetScreenshot().
|
inline |
Definition at line 260 of file videometadata.cpp.
Referenced by VideoMetadata::GetBanner(), GetImage(), and GetImageMap().
|
inline |
Definition at line 261 of file videometadata.cpp.
Referenced by VideoMetadata::SetBanner().
|
inline |
Definition at line 263 of file videometadata.cpp.
Referenced by VideoMetadata::GetFanart(), GetImage(), and GetImageMap().
|
inline |
Definition at line 264 of file videometadata.cpp.
Referenced by VideoMetadata::SetFanart().
|
inline |
Definition at line 266 of file videometadata.cpp.
Referenced by VideoMetadata::GetCategoryID().
void VideoMetadataImp::SetCategoryID | ( | int | id | ) |
Definition at line 797 of file videometadata.cpp.
Referenced by VideoMetadata::SetCategoryID().
|
inline |
Definition at line 272 of file videometadata.cpp.
Referenced by VideoMetadata::GetChildID().
|
inline |
Definition at line 273 of file videometadata.cpp.
Referenced by VideoMetadata::SetChildID().
|
inline |
Definition at line 275 of file videometadata.cpp.
Referenced by VideoMetadata::GetYear().
|
inline |
Definition at line 276 of file videometadata.cpp.
Referenced by VideoMetadata::SetYear().
|
inline |
Definition at line 278 of file videometadata.cpp.
Referenced by VideoMetadata::GetReleaseDate().
|
inline |
Definition at line 279 of file videometadata.cpp.
Referenced by VideoMetadata::SetReleaseDate().
|
inline |
Definition at line 281 of file videometadata.cpp.
Referenced by VideoMetadata::GetLength().
|
inline |
Definition at line 282 of file videometadata.cpp.
Referenced by VideoMetadata::SetLength().
|
inline |
Definition at line 284 of file videometadata.cpp.
Referenced by VideoMetadata::GetPlayCount().
|
inline |
Definition at line 285 of file videometadata.cpp.
Referenced by VideoMetadata::SetPlayCount().
|
inline |
Definition at line 287 of file videometadata.cpp.
Referenced by GetImage(), GetImageMap(), and VideoMetadata::GetSeason().
|
inline |
Definition at line 288 of file videometadata.cpp.
Referenced by VideoMetadata::SetSeason().
|
inline |
Definition at line 290 of file videometadata.cpp.
Referenced by VideoMetadata::GetEpisode(), GetImage(), and GetImageMap().
|
inline |
Definition at line 291 of file videometadata.cpp.
Referenced by VideoMetadata::SetEpisode().
|
inline |
Definition at line 293 of file videometadata.cpp.
Referenced by VideoMetadata::GetInsertdate().
|
inline |
Definition at line 294 of file videometadata.cpp.
Referenced by VideoMetadata::SetInsertdate().
|
inline |
Definition at line 296 of file videometadata.cpp.
Referenced by VideoMetadata::GetShowLevel().
|
inline |
Definition at line 297 of file videometadata.cpp.
Referenced by VideoMetadata::SetShowLevel().
|
inline |
Definition at line 302 of file videometadata.cpp.
Referenced by VideoMetadata::GetBrowse().
|
inline |
Definition at line 303 of file videometadata.cpp.
Referenced by VideoMetadata::SetBrowse().
|
inline |
Definition at line 305 of file videometadata.cpp.
Referenced by VideoMetadata::GetWatched().
|
inline |
Definition at line 306 of file videometadata.cpp.
Referenced by VideoMetadata::SetWatched().
|
inline |
Definition at line 308 of file videometadata.cpp.
Referenced by VideoMetadata::GetID().
|
inline |
Definition at line 309 of file videometadata.cpp.
Referenced by VideoMetadata::SetID().
|
inline |
Definition at line 311 of file videometadata.cpp.
Referenced by VideoMetadata::GetUserRating().
|
inline |
Definition at line 312 of file videometadata.cpp.
Referenced by VideoMetadata::SetUserRating().
|
inline |
Definition at line 314 of file videometadata.cpp.
Referenced by VideoMetadata::GetProcessed().
|
inline |
Definition at line 315 of file videometadata.cpp.
Referenced by VideoMetadata::SetProcessed().
|
inline |
Definition at line 317 of file videometadata.cpp.
Referenced by VideoMetadata::GetContentType().
|
inline |
Definition at line 318 of file videometadata.cpp.
Referenced by VideoMetadata::SetContentType().
void VideoMetadataImp::SaveToDatabase | ( | ) |
Definition at line 763 of file videometadata.cpp.
Referenced by VideoMetadata::SaveToDatabase().
void VideoMetadataImp::UpdateDatabase | ( | ) |
Definition at line 768 of file videometadata.cpp.
Referenced by VideoMetadata::UpdateDatabase().
bool VideoMetadataImp::DeleteFromDatabase | ( | ) |
Definition at line 773 of file videometadata.cpp.
Referenced by VideoMetadata::DeleteFromDatabase().
bool VideoMetadataImp::DeleteFile | ( | ) |
Deletes the file associated with a metadata entry.
Definition at line 440 of file videometadata.cpp.
Referenced by VideoMetadata::DeleteFile().
void VideoMetadataImp::Reset | ( | ) |
Definition at line 471 of file videometadata.cpp.
Referenced by VideoMetadata::Reset().
bool VideoMetadataImp::IsHostSet | ( | ) | const |
Definition at line 490 of file videometadata.cpp.
Referenced by GetImage(), GetImageMap(), and VideoMetadata::IsHostSet().
void VideoMetadataImp::GetImageMap | ( | InfoMap & | imageMap | ) | const |
Definition at line 885 of file videometadata.cpp.
Referenced by VideoMetadata::GetImageMap(), and saveToDatabase().
QString VideoMetadataImp::GetImage | ( | const QString & | name | ) | const |
Definition at line 957 of file videometadata.cpp.
Referenced by VideoMetadata::GetImage().
|
private |
Definition at line 513 of file videometadata.cpp.
Referenced by fromDBRow().
|
private |
Definition at line 843 of file videometadata.cpp.
Referenced by saveToDatabase().
|
private |
Definition at line 495 of file videometadata.cpp.
Referenced by fromDBRow().
|
private |
Definition at line 531 of file videometadata.cpp.
Referenced by fromDBRow().
|
private |
Definition at line 822 of file videometadata.cpp.
Referenced by saveToDatabase().
|
private |
Definition at line 864 of file videometadata.cpp.
Referenced by saveToDatabase().
|
private |
Definition at line 411 of file videometadata.cpp.
Referenced by DeleteFile().
|
private |
Sets metadata from a DB row.
Query string in VideoMetadataListManager::loadAllFromDatabase
Definition at line 553 of file videometadata.cpp.
Referenced by VideoMetadataImp().
|
private |
Definition at line 609 of file videometadata.cpp.
Referenced by SaveToDatabase(), and UpdateDatabase().
|
private |
Definition at line 347 of file videometadata.cpp.
Referenced by ensureSortFields(), fromDBRow(), getTitle(), operator=(), saveToDatabase(), SetTitle(), and VideoMetadataImp().
|
private |
Definition at line 348 of file videometadata.cpp.
Referenced by ensureSortFields(), getSortTitle(), operator=(), SetTitle(), and sortBefore().
|
private |
Definition at line 349 of file videometadata.cpp.
Referenced by ensureSortFields(), fromDBRow(), getSubtitle(), operator=(), saveToDatabase(), SetSubtitle(), and VideoMetadataImp().
|
private |
Definition at line 350 of file videometadata.cpp.
Referenced by ensureSortFields(), getSortSubtitle(), operator=(), and SetSubtitle().
|
private |
Definition at line 351 of file videometadata.cpp.
Referenced by fromDBRow(), GetTagline(), operator=(), saveToDatabase(), and SetTagline().
|
private |
Definition at line 352 of file videometadata.cpp.
Referenced by fromDBRow(), GetInetRef(), operator=(), saveToDatabase(), and SetInetRef().
|
private |
Definition at line 353 of file videometadata.cpp.
Referenced by fromDBRow(), GetCollectionRef(), operator=(), saveToDatabase(), and SetCollectionRef().
|
private |
Definition at line 354 of file videometadata.cpp.
Referenced by fromDBRow(), GetHomepage(), operator=(), saveToDatabase(), and SetHomepage().
|
private |
Definition at line 355 of file videometadata.cpp.
Referenced by fromDBRow(), getDirector(), operator=(), saveToDatabase(), and SetDirector().
|
private |
Definition at line 356 of file videometadata.cpp.
Referenced by fromDBRow(), getStudio(), operator=(), saveToDatabase(), and SetStudio().
|
private |
Definition at line 357 of file videometadata.cpp.
Referenced by fromDBRow(), getPlot(), operator=(), saveToDatabase(), and SetPlot().
|
private |
Definition at line 358 of file videometadata.cpp.
Referenced by fromDBRow(), GetRating(), operator=(), saveToDatabase(), and SetRating().
|
private |
Definition at line 359 of file videometadata.cpp.
Referenced by fromDBRow(), getPlayCommand(), operator=(), saveToDatabase(), and SetPlayCommand().
|
private |
Definition at line 360 of file videometadata.cpp.
Referenced by fromDBRow(), GetCategory(), operator=(), SetCategoryID(), and VideoMetadataImp().
|
private |
Definition at line 361 of file videometadata.cpp.
Referenced by fillGenres(), getGenres(), operator=(), SetGenres(), and updateGenres().
|
private |
Definition at line 362 of file videometadata.cpp.
Referenced by fillCountries(), GetCountries(), operator=(), SetCountries(), and updateCountries().
|
private |
Definition at line 363 of file videometadata.cpp.
Referenced by fillCast(), GetCast(), operator=(), SetCast(), and updateCast().
|
private |
Definition at line 364 of file videometadata.cpp.
Referenced by DeleteFile(), DeleteFromDatabase(), ensureSortFields(), fromDBRow(), getFilename(), operator=(), Reset(), saveToDatabase(), SetFilename(), and VideoMetadataImp().
|
private |
Definition at line 365 of file videometadata.cpp.
Referenced by ensureSortFields(), getSortFilename(), operator=(), SetFilename(), and sortBefore().
|
private |
Definition at line 366 of file videometadata.cpp.
Referenced by fromDBRow(), GetHash(), operator=(), saveToDatabase(), and SetHash().
|
private |
Definition at line 367 of file videometadata.cpp.
Referenced by fromDBRow(), GetTrailer(), operator=(), saveToDatabase(), and SetTrailer().
|
private |
Definition at line 368 of file videometadata.cpp.
Referenced by fromDBRow(), GetCoverFile(), operator=(), saveToDatabase(), and SetCoverFile().
|
private |
Definition at line 369 of file videometadata.cpp.
Referenced by fromDBRow(), GetScreenshot(), operator=(), saveToDatabase(), and SetScreenshot().
|
private |
Definition at line 370 of file videometadata.cpp.
Referenced by fromDBRow(), GetBanner(), operator=(), saveToDatabase(), and SetBanner().
|
private |
Definition at line 371 of file videometadata.cpp.
Referenced by fromDBRow(), GetFanart(), operator=(), saveToDatabase(), and SetFanart().
|
private |
Definition at line 372 of file videometadata.cpp.
Referenced by DeleteFile(), fromDBRow(), GetHost(), IsHostSet(), operator=(), Reset(), saveToDatabase(), and SetHost().
|
private |
Definition at line 374 of file videometadata.cpp.
Referenced by fromDBRow(), GetCategoryID(), operator=(), saveToDatabase(), SetCategoryID(), and VideoMetadataImp().
|
private |
Definition at line 375 of file videometadata.cpp.
Referenced by fromDBRow(), GetChildID(), operator=(), saveToDatabase(), and SetChildID().
|
private |
Definition at line 376 of file videometadata.cpp.
Referenced by fromDBRow(), getYear(), operator=(), saveToDatabase(), and SetYear().
|
private |
Definition at line 377 of file videometadata.cpp.
Referenced by fromDBRow(), getReleaseDate(), operator=(), saveToDatabase(), and SetReleaseDate().
|
private |
Definition at line 378 of file videometadata.cpp.
Referenced by fromDBRow(), GetLength(), operator=(), saveToDatabase(), and SetLength().
|
private |
Definition at line 379 of file videometadata.cpp.
Referenced by fromDBRow(), GetPlayCount(), operator=(), saveToDatabase(), and SetPlayCount().
|
private |
Definition at line 380 of file videometadata.cpp.
Referenced by fromDBRow(), GetSeason(), operator=(), saveToDatabase(), SetSeason(), and VideoMetadataImp().
|
private |
Definition at line 381 of file videometadata.cpp.
Referenced by fromDBRow(), GetEpisode(), operator=(), saveToDatabase(), SetEpisode(), and VideoMetadataImp().
|
private |
Definition at line 382 of file videometadata.cpp.
Referenced by fromDBRow(), GetInsertdate(), operator=(), and SetInsertdate().
|
private |
Definition at line 383 of file videometadata.cpp.
Referenced by fromDBRow(), GetShowLevel(), operator=(), saveToDatabase(), and SetShowLevel().
Definition at line 384 of file videometadata.cpp.
Referenced by fromDBRow(), GetBrowse(), operator=(), saveToDatabase(), and SetBrowse().
Definition at line 385 of file videometadata.cpp.
Referenced by fromDBRow(), GetWatched(), operator=(), saveToDatabase(), and SetWatched().
|
private |
Definition at line 386 of file videometadata.cpp.
Referenced by DeleteFromDatabase(), fillCast(), fillCountries(), fillGenres(), fromDBRow(), GetID(), operator=(), Reset(), saveToDatabase(), SetID(), sortBefore(), updateCast(), updateCountries(), and updateGenres().
|
private |
Definition at line 387 of file videometadata.cpp.
Referenced by fromDBRow(), GetUserRating(), operator=(), saveToDatabase(), and SetUserRating().
Definition at line 388 of file videometadata.cpp.
Referenced by fromDBRow(), GetProcessed(), operator=(), saveToDatabase(), and SetProcessed().
|
private |
Definition at line 389 of file videometadata.cpp.
Referenced by fromDBRow(), GetContentType(), operator=(), saveToDatabase(), and SetContentType().
|
private |
Definition at line 392 of file videometadata.cpp.
Referenced by GetPrefix(), operator=(), Reset(), and SetPrefix().