No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / wx / content_panel.cc
index 654378248b3f61433a505909b6788a14215a3e59..d1a00c02122ba354fdfdd4ea03146df1fc53b302 100644 (file)
@@ -1,19 +1,20 @@
 /*
     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
 
-    This program is free software; you can redistribute it and/or modify
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; either version 2 of the License, or
     (at your option) any later version.
 
-    This program is distributed in the hope that it will be useful,
+    DCP-o-matic is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
 
 */
 
@@ -149,45 +150,42 @@ ContentPanel::selected ()
        return sel;
 }
 
-VideoContentList
+ContentList
 ContentPanel::selected_video ()
 {
-       VideoContentList vc;
+       ContentList vc;
 
        BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
-               shared_ptr<VideoContent> t = dynamic_pointer_cast<VideoContent> (i);
-               if (t) {
-                       vc.push_back (t);
+               if (i->video) {
+                       vc.push_back (i);
                }
        }
 
        return vc;
 }
 
-AudioContentList
+ContentList
 ContentPanel::selected_audio ()
 {
-       AudioContentList ac;
+       ContentList ac;
 
        BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
-               shared_ptr<AudioContent> t = dynamic_pointer_cast<AudioContent> (i);
-               if (t) {
-                       ac.push_back (t);
+               if (i->audio) {
+                       ac.push_back (i);
                }
        }
 
        return ac;
 }
 
-SubtitleContentList
+ContentList
 ContentPanel::selected_subtitle ()
 {
-       SubtitleContentList sc;
+       ContentList sc;
 
        BOOST_FOREACH (shared_ptr<Content> i, selected ()) {
-               shared_ptr<SubtitleContent> t = dynamic_pointer_cast<SubtitleContent> (i);
-               if (t) {
-                       sc.push_back (t);
+               if (i->subtitle) {
+                       sc.push_back (i);
                }
        }
 
@@ -388,8 +386,8 @@ ContentPanel::setup_sensitivity ()
        _add_folder->Enable (_generally_sensitive);
 
        ContentList selection = selected ();
-       VideoContentList video_selection = selected_video ();
-       AudioContentList audio_selection = selected_audio ();
+       ContentList video_selection = selected_video ();
+       ContentList audio_selection = selected_audio ();
 
        _remove->Enable   (!selection.empty() && _generally_sensitive);
        _earlier->Enable  (selection.size() == 1 && _generally_sensitive);
@@ -398,7 +396,7 @@ ContentPanel::setup_sensitivity ()
 
        _video_panel->Enable    (video_selection.size() > 0 && _generally_sensitive);
        _audio_panel->Enable    (audio_selection.size() > 0 && _generally_sensitive);
-       _subtitle_panel->Enable (selection.size() == 1 && dynamic_pointer_cast<SubtitleContent> (selection.front()) && _generally_sensitive);
+       _subtitle_panel->Enable (selection.size() == 1 && selection.front()->subtitle && _generally_sensitive);
        _timing_panel->Enable   (selection.size() == 1 && _generally_sensitive);
 }