X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftimeline.h;h=ef1d10797c6e75d114c9d55d7b5d97ff40777279;hb=72eedf0b240c71b9dbd27d1f95b109b48e3200a2;hp=52b29de8653d466e1ba94d2079041ca84f0b9b66;hpb=c77dabbe4e6bb031edf4aa82f5e890fe605bafe1;p=dcpomatic.git diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 52b29de86..ef1d10797 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,36 +49,61 @@ public: } int track_height () const { - return 64; + return 48; } double 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 &); - - boost::weak_ptr _film; - std::list > _views; + 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; + + FilmEditor* _film_editor; + boost::weak_ptr _film; + ViewList _views; + boost::shared_ptr _time_axis_view; + int _tracks; double _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; };