Skip to content

Commit

Permalink
Fixes #60 Finally finished the docu and little cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kabel committed Sep 6, 2012
1 parent 1d4fd2d commit e432c06
Show file tree
Hide file tree
Showing 27 changed files with 681 additions and 422 deletions.
99 changes: 0 additions & 99 deletions ExportDialog.cpp

This file was deleted.

34 changes: 0 additions & 34 deletions ExportDialog.h

This file was deleted.

217 changes: 0 additions & 217 deletions ExportDialog.ui

This file was deleted.

12 changes: 12 additions & 0 deletions Globals.h
Expand Up @@ -52,6 +52,9 @@ enum MainWidgets {
WidgetMovies, WidgetMovieSets, WidgetTvShows
};

/**
* @brief The Actor struct
*/
struct Actor {
QString name;
QString role;
Expand All @@ -63,12 +66,18 @@ Q_DECLARE_METATYPE(Actor*);
Q_DECLARE_METATYPE(Movie*);
Q_DECLARE_METATYPE(QString*);

/**
* @brief The ScraperSearchResult struct
*/
struct ScraperSearchResult {
QString id;
QString name;
QDate released;
};

/**
* @brief The Poster struct
*/
struct Poster {
QString id;
QUrl originalUrl;
Expand All @@ -84,6 +93,9 @@ enum TvShowType {
TypeTvShow, TypeEpisode, TypeSeason
};

/**
* @brief The SettingsDir struct
*/
struct SettingsDir {
QString path;
QString mediaCenterPath;
Expand Down

0 comments on commit e432c06

Please sign in to comment.