diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-30 21:34:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-30 21:34:16 +0100 |
| commit | c57e92b12c64d4ad1a7f23876a97471565f9a252 (patch) | |
| tree | 008213d35e4be34c55caa51760ab7aef6fa33113 /src/wx/timing_panel.h | |
| parent | e241b3d295fe4158239170f17391e08473e159c5 (diff) | |
Somewhat untested and sketchy basics of trimming.
Diffstat (limited to 'src/wx/timing_panel.h')
| -rw-r--r-- | src/wx/timing_panel.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/wx/timing_panel.h b/src/wx/timing_panel.h index b5c9ef026..b84ea52be 100644 --- a/src/wx/timing_panel.h +++ b/src/wx/timing_panel.h @@ -29,9 +29,13 @@ public: void film_content_changed (boost::shared_ptr<Content>, int); private: - void start_changed (); + void position_changed (); void length_changed (); + void trim_start_changed (); + void trim_end_changed (); - Timecode* _start; + Timecode* _position; Timecode* _length; + Timecode* _trim_start; + Timecode* _trim_end; }; |
