X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftimeline.h;h=fafb09c0e5aa0dc56b9c830131ae899a5c4616f7;hb=890cf574a7a82906fbc1086a17a6e9c514c61679;hp=566ca060a45174fe3539cbe50dd91ff3f44a961b;hpb=ecbfa72a19756eab3fb1e3b0a9c5cab1c0b2ed39;p=dcpomatic.git diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 566ca060a..fafb09c0e 100644 --- a/src/wx/timeline.h +++ b/src/wx/timeline.h @@ -21,20 +21,24 @@ #include #include #include -#include "util.h" +#include "lib/util.h" +#include "lib/rect.h" +#include "content_menu.h" class Film; class View; class ContentView; +class FilmEditor; +class TimeAxisView; class Timeline : public wxPanel { public: - Timeline (wxWindow *, boost::shared_ptr); + Timeline (wxWindow *, FilmEditor *, boost::shared_ptr); boost::shared_ptr film () const; - void force_redraw (Rect const &); + void force_redraw (dcpomatic::Rect const &); int x_offset () const { return 8; @@ -45,38 +49,63 @@ public: } int track_height () const { - return 64; + return 48; } - double pixels_per_time_unit () const { + boost::optional pixels_per_time_unit () const { return _pixels_per_time_unit; } - Position tracks_position () const { - return Position (8, 8); + Position tracks_position () const { + return Position (8, 8); } int tracks () const; + void setup_pixels_per_time_unit (); + + void set_snap (bool s) { + _snap = s; + } + + bool snap () const { + return _snap; + } + private: - void paint (wxPaintEvent &); + void paint (); void left_down (wxMouseEvent &); - void mouse_moved (wxMouseEvent &); void left_up (wxMouseEvent &); + void right_down (wxMouseEvent &); + void mouse_moved (wxMouseEvent &); void playlist_changed (); - void setup_pixels_per_time_unit (); - void resized (wxSizeEvent &); + void playlist_content_changed (int); + void resized (); void assign_tracks (); + void set_position_from_event (wxMouseEvent &); + void clear_selection (); + + typedef std::vector > ViewList; + typedef std::vector > ContentViewList; + + boost::shared_ptr event_to_view (wxMouseEvent &); + ContentViewList selected_views () const; + ContentList selected_content () const; - boost::weak_ptr _film; - std::list > _views; + FilmEditor* _film_editor; + boost::weak_ptr _film; + ViewList _views; + boost::shared_ptr _time_axis_view; int _tracks; - double _pixels_per_time_unit; + boost::optional _pixels_per_time_unit; bool _left_down; wxPoint _down_point; boost::shared_ptr _down_view; - Time _down_view_start; + Time _down_view_position; bool _first_move; + ContentMenu _menu; + bool _snap; - boost::signals2::scoped_connection _playlist_connection; + boost::signals2::scoped_connection _playlist_changed_connection; + boost::signals2::scoped_connection _playlist_content_changed_connection; };