summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-05-09 00:55:00 +0100
committerCarl Hetherington <cth@carlh.net>2019-05-09 00:55:00 +0100
commitf1af9a6c1186cefff5bb44e603e51d7eab9f9143 (patch)
tree102a293f10f23774f7ac0ad0624a0b1098fc6f84
parent9a93173d2424fad7ca115399e46c53a786b09212 (diff)
Tweaks to not-yet-built SimpleVideoView.
-rw-r--r--src/wx/simple_video_view.cc18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/wx/simple_video_view.cc b/src/wx/simple_video_view.cc
index 895a072a0..3cc14625e 100644
--- a/src/wx/simple_video_view.cc
+++ b/src/wx/simple_video_view.cc
@@ -29,12 +29,11 @@ SimpleVideoView::SimpleVideoView (wxWindow* parent)
_panel->SetBackgroundStyle (wxBG_STYLE_PAINT);
_panel->SetBackgroundColour (*wxBLACK);
- _panel->Bind (wxEVT_PAINT, boost::bind (&SimpleVideoView::paint_panel, this));
- _panel->Bind (wxEVT_SIZE, boost::bind (&SimpleVideoView::panel_sized, this, _1));
+ _panel->Bind (wxEVT_PAINT, boost::bind (&SimpleVideoView::paint, this));
}
void
-SimpleVideoView::paint_panel ()
+SimpleVideoView::paint ()
{
wxPaintDC dc (_panel);
@@ -103,16 +102,3 @@ SimpleVideoView::paint_panel ()
dc.DrawRectangle (_inter_position.x, _inter_position.y + (_panel_size.height - _out_size.height) / 2, _inter_size.width, _inter_size.height);
}
}
-
-void
-SimpleVideoView::panel_sized (wxSizeEvent& ev)
-{
- _panel_size.width = ev.GetSize().GetWidth();
- _panel_size.height = ev.GetSize().GetHeight();
-
- calculate_sizes ();
- if (!quick_refresh()) {
- slow_refresh ();
- }
- PositionChanged ();
-}