/* Copyright (C) 2013-2015 Carl Hetherington This program 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, 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. */ #include "content_menu.h" #include "timeline_content_view.h" #include "lib/util.h" #include "lib/rect.h" #include "lib/film.h" #include #include #include #include class Film; class ContentPanel; class TimelineView; class TimelineTimeAxisView; class TimelineReelsView; class Timeline : public wxPanel { public: Timeline (wxWindow *, ContentPanel *, boost::shared_ptr); boost::shared_ptr film () const; void force_redraw (dcpomatic::Rect const &); int x_offset () const { return 8; } int width () const { return GetSize().GetWidth (); } int track_height () const { return 48; } boost::optional pixels_per_second () const { return _pixels_per_second; } Position tracks_position () const { return Position (8, 8); } int tracks () const; void setup_pixels_per_second (); void set_snap (bool s) { _snap = s; } bool snap () const { return _snap; } private: void paint (); void left_down (wxMouseEvent &); void left_up (wxMouseEvent &); void right_down (wxMouseEvent &); void mouse_moved (wxMouseEvent &); void film_changed (Film::Property); void film_content_changed (int); void resized (); void assign_tracks (); void set_position_from_event (wxMouseEvent &); void clear_selection (); void recreate_views (); boost::shared_ptr event_to_view (wxMouseEvent &); TimelineContentViewList selected_views () const; ContentList selected_content () const; void maybe_snap (DCPTime a, DCPTime b, boost::optional& nearest_distance) const; ContentPanel* _content_panel; boost::weak_ptr _film; TimelineViewList _views; boost::shared_ptr _time_axis_view; boost::shared_ptr _reels_view; int _tracks; boost::optional _pixels_per_second; bool _left_down; wxPoint _down_point; boost::shared_ptr _down_view; DCPTime _down_view_position; bool _first_move; ContentMenu _menu; bool _snap; boost::signals2::scoped_connection _film_changed_connection; boost::signals2::scoped_connection _film_content_changed_connection; };