X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Ftimeline.h;h=c8424541eb8eb226a7cd0b6e707107df901cbf4c;hp=4ba1cc425f022b6fe11d634052f7915a5c012ee8;hb=3828baf56467224f5d44049bf1e7a7ed11f43a05;hpb=4e411ea97b4dab8a5fa282d1d4cf7971ef1e24ad diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 4ba1cc425..c8424541e 100644 --- a/src/wx/timeline.h +++ b/src/wx/timeline.h @@ -1,49 +1,49 @@ /* - Copyright (C) 2013 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington - 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 . */ +#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 -#include -#include "lib/util.h" -#include "lib/rect.h" -#include "content_menu.h" class Film; -class View; -class ContentView; -class FilmEditor; -class TimeAxisView; +class ContentPanel; +class TimelineView; +class TimelineTimeAxisView; +class TimelineReelsView; +class TimelineLabelsView; class Timeline : public wxPanel { public: - Timeline (wxWindow *, FilmEditor *, boost::shared_ptr); + 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 (); } @@ -57,7 +57,7 @@ public: } Position tracks_position () const { - return Position (8, 8); + return _tracks_position; } int tracks () const; @@ -72,38 +72,46 @@ public: return _snap; } + void set_selection (ContentList selection); + private: void paint (); void left_down (wxMouseEvent &); void left_up (wxMouseEvent &); void right_down (wxMouseEvent &); void mouse_moved (wxMouseEvent &); - void playlist_changed (); + void film_changed (Film::Property); + void film_content_changed (int, bool frequent); void resized (); void assign_tracks (); void set_position_from_event (wxMouseEvent &); void clear_selection (); + void recreate_views (); - typedef std::vector > ViewList; - typedef std::vector > ContentViewList; - - boost::shared_ptr event_to_view (wxMouseEvent &); - ContentViewList selected_views () const; + 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; - FilmEditor* _film_editor; + ContentPanel* _content_panel; boost::weak_ptr _film; - ViewList _views; - boost::shared_ptr _time_axis_view; + TimelineViewList _views; + boost::shared_ptr _time_axis_view; + boost::shared_ptr _reels_view; + boost::shared_ptr _labels_view; int _tracks; boost::optional _pixels_per_second; bool _left_down; wxPoint _down_point; - boost::shared_ptr _down_view; + boost::shared_ptr _down_view; DCPTime _down_view_position; bool _first_move; ContentMenu _menu; bool _snap; + std::list _start_snaps; + std::list _end_snaps; + Position _tracks_position; - boost::signals2::scoped_connection _playlist_connection; + boost::signals2::scoped_connection _film_changed_connection; + boost::signals2::scoped_connection _film_content_changed_connection; };