diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-19 13:23:54 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-19 13:23:54 +0100 |
| commit | 86461ade4087f8473c1e8b063907d92884813843 (patch) | |
| tree | a45f3954cad0753be9b1d438efb0dfa4b1cb521a /src/wx/timeline.h | |
| parent | abc6fa5ea5877a3a4d6eb65b7819821ed99a042c (diff) | |
Basic repeat.
Diffstat (limited to 'src/wx/timeline.h')
| -rw-r--r-- | src/wx/timeline.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 6979d6a78..a50f8e692 100644 --- a/src/wx/timeline.h +++ b/src/wx/timeline.h @@ -64,13 +64,19 @@ public: private: void paint (wxPaintEvent &); 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 assign_tracks (); void set_start_from_event (wxMouseEvent &); + void clear_selection (); + void repeat (wxCommandEvent &); + + boost::shared_ptr<View> event_to_view (wxMouseEvent &); + boost::shared_ptr<ContentView> selected () const; FilmEditor* _film_editor; boost::weak_ptr<Film> _film; @@ -83,6 +89,7 @@ private: boost::shared_ptr<ContentView> _down_view; Time _down_view_start; bool _first_move; + wxMenu* _menu; boost::signals2::scoped_connection _playlist_connection; }; |
