summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 ();
-}