IMDb plugin: optionally download actors and actresses
[cinaest] / src / plugins / imdb-download-dialog.vala
index 0811b74..165c6c9 100644 (file)
@@ -21,10 +21,12 @@ using Hildon;
 
 class IMDbDownloadDialog : Note {
        private bool plots;
+       private bool actors;
 
-       public IMDbDownloadDialog (Gtk.Window window, bool _plots) {
+       public IMDbDownloadDialog (Gtk.Window window, bool _plots, bool _actors) {
                transient_parent = window;
                plots = _plots;
+               actors = _actors;
        }
 
        construct {
@@ -40,6 +42,8 @@ class IMDbDownloadDialog : Note {
                        int flags = IMDbDownloader.MOVIES | IMDbDownloader.GENRES | IMDbDownloader.RATINGS | IMDbDownloader.AKAS;
                        if (plots)
                                flags |= IMDbDownloader.PLOTS;
+                       if (actors)
+                               flags |= IMDbDownloader.ACTORS;
 
                        server.download (mirror, flags);
                } catch (DBus.Error e) {