diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-05-09 22:54:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-05-09 22:54:07 +0100 |
| commit | bdbddbe89d4996a39dc6e695f23a6457c03774ae (patch) | |
| tree | 2434303ff9c2f47a258dadb9e499eb4e7b73ef67 /src | |
| parent | f08d36982bf940dbd59caf6f24a90c1429fca5f8 (diff) | |
Basic retained-mode-style canvas for timeline; allow selection.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/types.cc | 25 | ||||
| -rw-r--r-- | src/lib/types.h | 2 | ||||
| -rw-r--r-- | src/lib/util.cc | 16 | ||||
| -rw-r--r-- | src/wx/timeline.cc | 416 | ||||
| -rw-r--r-- | src/wx/timeline.h | 32 |
5 files changed, 363 insertions, 128 deletions
diff --git a/src/lib/types.cc b/src/lib/types.cc index 1e0f48327..c077bad3e 100644 --- a/src/lib/types.cc +++ b/src/lib/types.cc @@ -19,6 +19,9 @@ #include "types.h" +using std::max; +using std::min; + bool operator== (Crop const & a, Crop const & b) { return (a.left == b.left && a.right == b.right && a.top == b.top && a.bottom == b.bottom); @@ -29,3 +32,25 @@ bool operator!= (Crop const & a, Crop const & b) return !(a == b); } + +/** @param other A Rect. + * @return The intersection of this with `other'. + */ +Rect +Rect::intersection (Rect const & other) const +{ + int const tx = max (x, other.x); + int const ty = max (y, other.y); + + return Rect ( + tx, ty, + min (x + width, other.x + other.width) - tx, + min (y + height, other.y + other.height) - ty + ); +} + +bool +Rect::contains (Position p) const +{ + return (p.x >= x && p.x <= (x + width) && p.y >= y && p.y <= (y + height)); +} diff --git a/src/lib/types.h b/src/lib/types.h index f9e9b2f4b..5e4826918 100644 --- a/src/lib/types.h +++ b/src/lib/types.h @@ -105,6 +105,8 @@ struct Rect } Rect intersection (Rect const & other) const; + + bool contains (Position) const; }; #endif diff --git a/src/lib/util.cc b/src/lib/util.cc index 6c8166143..5e957f923 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -608,22 +608,6 @@ Socket::read_uint32 () return ntohl (v); } -/** @param other A Rect. - * @return The intersection of this with `other'. - */ -Rect -Rect::intersection (Rect const & other) const -{ - int const tx = max (x, other.x); - int const ty = max (y, other.y); - - return Rect ( - tx, ty, - min (x + width, other.x + other.width) - tx, - min (y + height, other.y + other.height) - ty - ); -} - /** Round a number up to the nearest multiple of another number. * @param c Index. * @param s Array of numbers to round, indexed by c. diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 253903888..731e72168 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -27,69 +27,260 @@ using std::list; using std::cout; using std::max; using boost::shared_ptr; +using boost::dynamic_pointer_cast; using boost::bind; -int const Timeline::_track_height = 64; - -Timeline::Timeline (wxWindow* parent, shared_ptr<Playlist> pl) - : wxPanel (parent) - , _playlist (pl) +class View { - SetDoubleBuffered (true); - - Connect (wxID_ANY, wxEVT_PAINT, wxPaintEventHandler (Timeline::paint), 0, this); +public: + View (Timeline& t) + : _timeline (t) + { - if (pl->audio_from() == Playlist::AUDIO_FFMPEG) { - SetMinSize (wxSize (640, _track_height * 2 + 96)); - } else { - SetMinSize (wxSize (640, _track_height * (max (size_t (1), pl->audio().size()) + 1) + 96)); } + + virtual void paint (wxGraphicsContext *) = 0; + virtual Rect bbox () const = 0; - pl->Changed.connect (bind (&Timeline::playlist_changed, this)); - pl->ContentChanged.connect (bind (&Timeline::playlist_changed, this)); -} +protected: + int time_x (Time t) const + { + return _timeline.tracks_position().x + t * _timeline.pixels_per_second(); + } + + Timeline& _timeline; +}; -template <class T> -int -plot_content_list ( - list<shared_ptr<const T> > content, wxGraphicsContext* gc, int x, int y, double pixels_per_second, int track_height, wxString type, bool consecutive - ) +class ContentView : public View { - Time t = 0; - for (typename list<shared_ptr<const T> >::iterator i = content.begin(); i != content.end(); ++i) { - Time const len = (*i)->temporal_length (); +public: + ContentView (Timeline& tl, boost::shared_ptr<const Content> c, Time s, int t) + : View (tl) + , _content (c) + , _start (s) + , _track (t) + , _selected (false) + { + + } + + void paint (wxGraphicsContext* gc) + { + shared_ptr<const Content> content = _content.lock (); + if (!content) { + return; + } + + Time const len = content->temporal_length (); + + gc->SetPen (*wxBLACK_PEN); + +#if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9 + gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 4, wxPENSTYLE_SOLID)); + if (_selected) { + gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (200, 200, 200), wxBRUSHSTYLE_SOLID)); + } else { + gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (colour(), wxBRUSHSTYLE_SOLID)); + } +#else + gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 4, wxSOLID)); + if (_selected) { + gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (200, 200, 200), wxSOLID)); + } else { + gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (colour(), wxSOLID)); + } +#endif + wxGraphicsPath path = gc->CreatePath (); - path.MoveToPoint (x + t * pixels_per_second, y); - path.AddLineToPoint (x + (t + len) * pixels_per_second, y); - path.AddLineToPoint (x + (t + len) * pixels_per_second, y + track_height); - path.AddLineToPoint (x + t * pixels_per_second, y + track_height); - path.AddLineToPoint (x + t * pixels_per_second, y); + path.MoveToPoint (time_x (_start), y_pos (_track)); + path.AddLineToPoint (time_x (_start + len), y_pos (_track)); + path.AddLineToPoint (time_x (_start + len), y_pos (_track + 1)); + path.AddLineToPoint (time_x (_start), y_pos (_track + 1)); + path.AddLineToPoint (time_x (_start), y_pos (_track)); gc->StrokePath (path); gc->FillPath (path); - wxString name = wxString::Format (wxT ("%s [%s]"), std_to_wx ((*i)->file().filename().string()).data(), type.data()); + wxString name = wxString::Format (wxT ("%s [%s]"), std_to_wx (content->file().filename().string()).data(), type().data()); wxDouble name_width; wxDouble name_height; wxDouble name_descent; wxDouble name_leading; gc->GetTextExtent (name, &name_width, &name_height, &name_descent, &name_leading); - gc->Clip (wxRegion (x + t * pixels_per_second, y, len * pixels_per_second, track_height)); - gc->DrawText (name, t * pixels_per_second + 12, y + track_height - name_height - 4); + gc->Clip (wxRegion (time_x (_start), y_pos (_track), len * _timeline.pixels_per_second(), _timeline.track_height())); + gc->DrawText (name, time_x (_start) + 12, y_pos (_track + 1) - name_height - 4); gc->ResetClip (); + } - if (consecutive) { - t += len; - } else { - y += track_height; + Rect bbox () const + { + shared_ptr<const Content> content = _content.lock (); + if (!content) { + return Rect (); } + + return Rect (time_x (_start), y_pos (_track), content->temporal_length() * _timeline.pixels_per_second(), _timeline.track_height()); + } + + void set_selected (bool s) { + _selected = s; + _timeline.force_redraw (bbox ()); + } + + bool selected () const { + return _selected; } - if (consecutive) { - y += track_height; + virtual wxString type () const = 0; + virtual wxColour colour () const = 0; + +private: + + int y_pos (int t) const + { + return _timeline.tracks_position().y + t * _timeline.track_height(); + } + + boost::weak_ptr<const Content> _content; + Time _start; + int _track; + bool _selected; +}; + +class AudioContentView : public ContentView +{ +public: + AudioContentView (Timeline& tl, boost::shared_ptr<const Content> c, Time s, int t) + : ContentView (tl, c, s, t) + {} + +private: + wxString type () const + { + return _("audio"); + } + + wxColour colour () const + { + return wxColour (149, 121, 232, 255); + } +}; + +class VideoContentView : public ContentView +{ +public: + VideoContentView (Timeline& tl, boost::shared_ptr<const Content> c, Time s, int t) + : ContentView (tl, c, s, t) + {} + +private: + + wxString type () const + { + return _("video"); + } + + wxColour colour () const + { + return wxColour (242, 92, 120, 255); + } +}; + +class TimeAxisView : public View +{ +public: + TimeAxisView (Timeline& tl, int y) + : View (tl) + , _y (y) + {} + + void paint (wxGraphicsContext* gc) + { +#if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9 + gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 1, wxPENSTYLE_SOLID)); +#else + gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 1, wxSOLID)); +#endif + + int mark_interval = rint (128 / _timeline.pixels_per_second ()); + if (mark_interval > 5) { + mark_interval -= mark_interval % 5; + } + if (mark_interval > 10) { + mark_interval -= mark_interval % 10; + } + if (mark_interval > 60) { + mark_interval -= mark_interval % 60; + } + if (mark_interval > 3600) { + mark_interval -= mark_interval % 3600; + } + + if (mark_interval < 1) { + mark_interval = 1; + } + + wxGraphicsPath path = gc->CreatePath (); + path.MoveToPoint (_timeline.x_offset(), _y); + path.AddLineToPoint (_timeline.width(), _y); + gc->StrokePath (path); + + Time t = 0; + while ((t * _timeline.pixels_per_second()) < _timeline.width()) { + wxGraphicsPath path = gc->CreatePath (); + path.MoveToPoint (time_x (t), _y - 4); + path.AddLineToPoint (time_x (t), _y + 4); + gc->StrokePath (path); + + int tc = t; + int const h = tc / 3600; + tc -= h * 3600; + int const m = tc / 60; + tc -= m * 60; + int const s = tc; + + wxString str = wxString::Format (wxT ("%02d:%02d:%02d"), h, m, s); + wxDouble str_width; + wxDouble str_height; + wxDouble str_descent; + wxDouble str_leading; + gc->GetTextExtent (str, &str_width, &str_height, &str_descent, &str_leading); + + int const tx = _timeline.x_offset() + t * _timeline.pixels_per_second(); + if ((tx + str_width) < _timeline.width()) { + gc->DrawText (str, time_x (t), _y + 16); + } + t += mark_interval; + } } - return y; + Rect bbox () const + { + return Rect (0, _y - 4, _timeline.width(), 24); + } + +private: + int _y; +}; + +Timeline::Timeline (wxWindow* parent, shared_ptr<Playlist> pl) + : wxPanel (parent) + , _playlist (pl) + , _pixels_per_second (0) +{ + SetDoubleBuffered (true); + + setup_pixels_per_second (); + + Connect (wxID_ANY, wxEVT_PAINT, wxPaintEventHandler (Timeline::paint), 0, this); + Connect (wxID_ANY, wxEVT_LEFT_DOWN, wxMouseEventHandler (Timeline::left_down), 0, this); + + SetMinSize (wxSize (640, tracks() * track_height() + 96)); + + playlist_changed (); + + pl->Changed.connect (bind (&Timeline::playlist_changed, this)); + pl->ContentChanged.connect (bind (&Timeline::playlist_changed, this)); } void @@ -107,94 +298,99 @@ Timeline::paint (wxPaintEvent &) return; } - int const x_offset = 8; - int y = 8; - int const width = GetSize().GetWidth(); - double const pixels_per_second = (width - x_offset * 2) / (pl->content_length() / pl->video_frame_rate()); - gc->SetFont (gc->CreateFont (*wxNORMAL_FONT)); - gc->SetPen (*wxBLACK_PEN); -#if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9 - gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 4, wxPENSTYLE_SOLID)); - gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (149, 121, 232, 255), wxBRUSHSTYLE_SOLID)); -#else - gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 4, wxSOLID)); - gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (149, 121, 232, 255), wxSOLID)); -#endif - y = plot_content_list (pl->video (), gc, x_offset, y, pixels_per_second, _track_height, _("video"), true); - -#if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9 - gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (242, 92, 120, 255), wxBRUSHSTYLE_SOLID)); -#else - gc->SetBrush (*wxTheBrushList->FindOrCreateBrush (wxColour (242, 92, 120, 255), wxSOLID)); -#endif - y = plot_content_list (pl->audio (), gc, x_offset, y, pixels_per_second, _track_height, _("audio"), pl->audio_from() == Playlist::AUDIO_FFMPEG); + /* XXX */ + _pixels_per_second = (width() - x_offset() * 2) / (pl->content_length() / pl->video_frame_rate()); - /* Time axis */ + for (list<shared_ptr<View> >::iterator i = _views.begin(); i != _views.end(); ++i) { + (*i)->paint (gc); + } -#if wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9 - gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 1, wxPENSTYLE_SOLID)); -#else - gc->SetPen (*wxThePenList->FindOrCreatePen (wxColour (0, 0, 0), 1, wxSOLID)); -#endif - - int mark_interval = rint (128 / pixels_per_second); - if (mark_interval > 5) { - mark_interval -= mark_interval % 5; + delete gc; +} + +void +Timeline::playlist_changed () +{ + shared_ptr<Playlist> pl = _playlist.lock (); + if (!pl) { + return; } - if (mark_interval > 10) { - mark_interval -= mark_interval % 10; + + _views.clear (); + + int track = 0; + Time time = 0; + list<shared_ptr<const VideoContent> > vc = pl->video (); + for (list<shared_ptr<const VideoContent> >::const_iterator i = vc.begin(); i != vc.end(); ++i) { + _views.push_back (shared_ptr<View> (new VideoContentView (*this, *i, time, track))); + time += (*i)->temporal_length (); } - if (mark_interval > 60) { - mark_interval -= mark_interval % 60; + + ++track; + time = 0; + list<shared_ptr<const AudioContent> > ac = pl->audio (); + for (list<shared_ptr<const AudioContent> >::const_iterator i = ac.begin(); i != ac.end(); ++i) { + _views.push_back (shared_ptr<View> (new AudioContentView (*this, *i, time, track))); + if (pl->audio_from() != Playlist::AUDIO_FFMPEG) { + ++track; + } else { + time += (*i)->temporal_length (); + } + } + + _views.push_back (shared_ptr<View> (new TimeAxisView (*this, tracks() * track_height() + 32))); + + Refresh (); +} + +int +Timeline::tracks () const +{ + shared_ptr<Playlist> pl = _playlist.lock (); + if (!pl) { + return 0; } - if (mark_interval > 3600) { - mark_interval -= mark_interval % 3600; + + if (pl->audio_from() == Playlist::AUDIO_FFMPEG) { + return 2; } - if (mark_interval < 1) { - mark_interval = 1; - } + return 1 + max (size_t (1), pl->audio().size()); +} - wxGraphicsPath path = gc->CreatePath (); - path.MoveToPoint (x_offset, y + 40); - path.AddLineToPoint (width, y + 40); - gc->StrokePath (path); +void +Timeline::setup_pixels_per_second () +{ + shared_ptr<Playlist> pl = _playlist.lock (); + if (!pl) { + return; + } - double t = 0; - while ((t * pixels_per_second) < width) { - wxGraphicsPath path = gc->CreatePath (); - path.MoveToPoint (x_offset + t * pixels_per_second, y + 36); - path.AddLineToPoint (x_offset + t * pixels_per_second, y + 44); - gc->StrokePath (path); + /* XXX */ + _pixels_per_second = (width() - x_offset() * 2) / (pl->content_length() / pl->video_frame_rate()); +} - int tc = t; - int const h = tc / 3600; - tc -= h * 3600; - int const m = tc / 60; - tc -= m * 60; - int const s = tc; - - wxString str = wxString::Format (wxT ("%02d:%02d:%02d"), h, m, s); - wxDouble str_width; - wxDouble str_height; - wxDouble str_descent; - wxDouble str_leading; - gc->GetTextExtent (str, &str_width, &str_height, &str_descent, &str_leading); - - int const tx = x_offset + t * pixels_per_second; - if ((tx + str_width) < width) { - gc->DrawText (str, x_offset + t * pixels_per_second, y + 60); - } - t += mark_interval; +void +Timeline::left_down (wxMouseEvent& ev) +{ + list<shared_ptr<View> >::iterator i = _views.begin(); + Position const p (ev.GetX(), ev.GetY()); + while (i != _views.end() && !(*i)->bbox().contains (p)) { + ++i; } - delete gc; + for (list<shared_ptr<View> >::iterator j = _views.begin(); j != _views.end(); ++j) { + shared_ptr<ContentView> cv = dynamic_pointer_cast<ContentView> (*j); + if (cv) { + cv->set_selected (i == j); + } + } } void -Timeline::playlist_changed () +Timeline::force_redraw (Rect const & r) { - Refresh (); + RefreshRect (wxRect (r.x, r.y, r.width, r.height), false); } diff --git a/src/wx/timeline.h b/src/wx/timeline.h index 1993eb9c2..59800e7ad 100644 --- a/src/wx/timeline.h +++ b/src/wx/timeline.h @@ -20,19 +20,47 @@ #include <boost/shared_ptr.hpp> #include <boost/weak_ptr.hpp> #include <wx/wx.h> +#include "util.h" class Playlist; +class View; class Timeline : public wxPanel { public: Timeline (wxWindow *, boost::shared_ptr<Playlist>); + void force_redraw (Rect const &); + + int x_offset () const { + return 8; + } + + int width () const { + return GetSize().GetWidth (); + } + + int track_height () const { + return 64; + } + + double pixels_per_second () const { + return _pixels_per_second; + } + + Position tracks_position () const { + return Position (8, 8); + } + + int tracks () const; + private: void paint (wxPaintEvent &); + void left_down (wxMouseEvent &); void playlist_changed (); + void setup_pixels_per_second (); - static int const _track_height; - boost::weak_ptr<Playlist> _playlist; + std::list<boost::shared_ptr<View> > _views; + double _pixels_per_second; }; |
