Movie window: display cast information
[cinaest] / src / movie-window.vala
index 0aef805..42409dd 100644 (file)
@@ -27,11 +27,14 @@ public class MovieWindow : StackableWindow {
        private Image image;
        private VBox details;
        private PannableArea pannable;
+       private Label title_label;
+       private Label rating_label;
+       private Label cast_label;
        private Label plot;
        private bool portrait_mode;
 
        public MovieWindow.with_movie (Movie movie, MovieListStore store) {
-               set_title (movie.title);
+               update_title (movie);
 
                // View menu
                menu = new MovieMenu (movie, store, this);
@@ -41,47 +44,23 @@ public class MovieWindow : StackableWindow {
                // Poster
                image = new Image ();
 
-               if (movie.poster != null && movie.poster.pixbuf != null) {
-                       image.pixbuf = movie.poster.pixbuf;
-               } else {
-                       movie.notify.connect (this.on_movie_changed);
-                       if (movie.poster != null && movie.poster.thumbnail != null) {
-                               // FIXME
-                               image.pixbuf = movie.poster.thumbnail.scale_simple (268, 424, Gdk.InterpType.BILINEAR);
-                       } else {
-                               // FIXME
-                               if (no_poster == null) try {
-                                       no_poster = new Gdk.Pixbuf.from_file ("/usr/share/icons/hicolor/124x124/hildon/general_video.png");
-                               } catch (Error e) {
-                                       critical ("Missing general_video icon: %s\n", e.message);
-                               }
-                               image.pixbuf = no_poster;
-                       }
-                       try {
-                               poster_factory = MoviePoster.Factory.get_instance ();
-                               poster_factory.queue (movie, receive_poster);
-                       } catch (Error e) {
-                               warning ("Failed to queue poster request: %s\n", e.message);
-                       }
-               }
-
-               // Text area
-               string year = movie.year > 0 ? " (%d)".printf (movie.year) : "";
-               string text = "<big><b>%s</b></big>%s\n<small>%s</small>".printf (movie.title, year, movie.secondary);
-               var label = new Label (text);
-               label.wrap = true;
-               label.use_markup = true;
-               label.set_alignment (0.0f, 0.0f);
+               title_label = new Label (title_label_markup (movie));
+               title_label.wrap = true;
+               title_label.use_markup = true;
+               title_label.set_alignment (0.0f, 0.0f);
 
                var header = new HBox (false, 0);
-               header.pack_start (label, true, true, 0);
-               if (movie.rating > 0) {
-                       text = "<big><b>%d.%d</b></big>".printf (movie.rating / 10, movie.rating % 10);
-                       var rating = new Label (text);
-                       rating.use_markup = true;
-                       rating.set_alignment (0.5f, 0.0f);
-                       header.pack_start (rating, false, false, MARGIN_DOUBLE);
-               }
+               header.pack_start (title_label, true, true, 0);
+
+               rating_label = new Label (rating_label_markup (movie));
+               rating_label.use_markup = true;
+               rating_label.set_alignment (0.5f, 0.0f);
+               header.pack_start (rating_label, false, false, MARGIN_DOUBLE);
+
+               cast_label = new Label (cast_label_markup (movie));
+               cast_label.wrap = true;
+               cast_label.use_markup = true;
+               cast_label.set_alignment (0.0f, 0.0f);
 
                plot = new Label (movie.get_plot ());
                plot.wrap = true;
@@ -89,6 +68,7 @@ public class MovieWindow : StackableWindow {
 
                details = new VBox (false, MARGIN_DOUBLE);
                details.pack_start (header, false, false, 0);
+               details.pack_start (cast_label, false, false, 0);
                details.pack_start (plot, false, false, 0);
 
                var pannable = new PannableArea ();
@@ -108,7 +88,7 @@ public class MovieWindow : StackableWindow {
                } else {
                        hbox.pack_start (image, false, false, MARGIN_DOUBLE);
                        hbox.reorder_child (image, 0);
-                       plot.set_size_request (800 - 268 /* image */ - 3 * MARGIN_DOUBLE, -1);
+                       plot.set_size_request (800 - 288 /* image */ - 3 * MARGIN_DOUBLE, -1);
                        pannable.set_size_request (-1, 424);
                }
 
@@ -118,22 +98,122 @@ public class MovieWindow : StackableWindow {
                // Connect signals
                menu.movie_deleted.connect (() => { destroy (); });
                Gdk.Screen.get_default ().size_changed.connect (on_orientation_changed);
+               movie.notify.connect (this.on_movie_changed);
+
+               if (movie.poster != null && movie.poster.large != null) {
+                       image.pixbuf = movie.poster.large;
+               } else {
+                       if (movie.poster != null && movie.poster.small != null) {
+                               // FIXME
+                               image.pixbuf = movie.poster.small.scale_simple (288, 400, Gdk.InterpType.HYPER);
+                       } else {
+                               // FIXME
+                               if (no_poster == null) try {
+                                       no_poster = new Gdk.Pixbuf.from_file ("/usr/share/icons/hicolor/64x64/hildon/general_no_thumbnail.png");
+                               } catch (Error e) {
+                                       critical ("Missing general_no_thumbnail icon: %s\n", e.message);
+                               }
+                               image.pixbuf = no_poster;
+                       }
+                       try {
+                               poster_factory = MoviePoster.Factory.get_instance ();
+                               poster_factory.queue (movie, 288, 400, false, receive_poster);
+                       } catch (Error e) {
+                               warning ("Failed to queue poster request: %s\n", e.message);
+                       }
+               }
+       }
+
+       private void update_title (Movie movie) {
+               Gdk.Color color;
+               this.ensure_style ();
+               if (this.style.lookup_color ("SecondaryTextColor", out color))
+                       set_markup ("%s <span size=\"small\" fgcolor=\"%s\">(%d)</span>".printf (movie.title, color.to_string (), movie.year));
+               else
+                       set_markup ("%s <small>(%d)</small>".printf (movie.title, movie.year));
+       }
+
+       private string title_label_markup (Movie movie) {
+               Gdk.Color color;
+               this.ensure_style ();
+               string year = "";
+               if (this.style.lookup_color ("SecondaryTextColor", out color)) {
+                       if (movie.year > 0)
+                               year = " <span fgcolor=\"%s\">(%d)</span>".printf (color.to_string (), movie.year);
+                       return "<big><b>%s</b></big>%s\n<span size=\"small\" fgcolor=\"%s\">%s</span>".printf (movie.title, year, color.to_string (), movie.secondary);
+               } else {
+                       if (movie.year > 0)
+                               year = " (%d)".printf (movie.year);
+                       return "<big><b>%s</b></big>%s\n<small>%s</small>".printf (movie.title, year, movie.secondary);
+               }
+       }
+
+       private string rating_label_markup (Movie movie) {
+               if (movie.rating > 0)
+                       return "<big><b>%d.%d</b></big>".printf (movie.rating / 10, movie.rating % 10);
+               else
+                       return "";
+       }
+
+       private string cast_label_markup (Movie movie) {
+               List<Role> cast = movie.get_cast ();
+               var markup = new StringBuilder ();
+               Gdk.Color color;
+               this.ensure_style ();
+
+               if (this.style.lookup_color ("SecondaryTextColor", out color)) {
+                       foreach (Role role in cast) {
+                               if (markup.len > 0)
+                                       markup.append (",\n");
+                               markup.append_printf ("%s <span size=\"small\" fgcolor=\"%s\">(%s)</span>", display_name (role.actor_name), color.to_string (), role.character);
+                       }
+               } else {
+                       foreach (Role role in cast) {
+                               if (markup.len > 0)
+                                       markup.append (",\n");
+                               markup.append_printf ("%s <small>(%s)</small>", display_name (role.actor_name), role.character);
+                       }
+               }
+
+               return markup.str;
+       }
+
+       private string display_name (string name) {
+               string[] parts;
+               if (name.has_suffix (")"))
+                       parts = name.ndup (name.length - 4).split (", ");
+               else
+                       parts = name.split (", ");
+               if (parts.length == 2) {
+                       return parts[1] + " " + parts[0];
+               } else {
+                       return name;
+               }
        }
 
        private void receive_poster (Gdk.Pixbuf pixbuf, Movie movie) {
                var poster = new Poster();
 
-               poster.pixbuf = pixbuf;
-               if (movie.poster != null)
-                       poster.thumbnail = movie.poster.thumbnail;
+               poster.large = pixbuf;
+               if (movie.poster != null) {
+                       poster.icon = movie.poster.icon;
+                       poster.small = movie.poster.small;
+               }
                movie.poster = poster;
        }
 
        private void on_movie_changed (GLib.Object source, GLib.ParamSpec spec) {
                var movie = (Movie) source;
 
-               if ((spec.name == "poster") && (movie.poster != null) && (movie.poster.pixbuf != null)) {
-                       image.pixbuf = movie.poster.pixbuf;
+               if ((spec.name == "title") || (spec.name == "year")) {
+                       update_title (movie);
+                       title_label.set_markup (title_label_markup (movie));
+               }
+               if (spec.name == "rating") {
+                       rating_label.set_markup (rating_label_markup (movie));
+               }
+               if ((spec.name == "poster") && (movie.poster != null) && (movie.poster.large != null)) {
+                       image.pixbuf = movie.poster.large;
                }
        }
 
@@ -153,7 +233,7 @@ public class MovieWindow : StackableWindow {
                        hbox.pack_start (image, false, false, MARGIN_DOUBLE);
                        hbox.reorder_child (image, 0);
                        pannable.set_size_request (-1, 424);
-                       plot.set_size_request (800 - 268 /* image */ - 3 * MARGIN_DOUBLE, -1);
+                       plot.set_size_request (800 - 288 /* image */ - 3 * MARGIN_DOUBLE, -1);
                }
        }
 }