summaryrefslogtreecommitdiff
path: root/src/wx/video_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-11-11 18:04:16 +0000
committerCarl Hetherington <cth@carlh.net>2013-11-11 18:04:16 +0000
commit1415214ff18e05e5b609aab8c4efb89e5b9e0cc0 (patch)
treea6dc41099617933a048a937fce47e0cc539135c8 /src/wx/video_panel.h
parent329de46d6fb600c1958678ec5d09ef21532130d5 (diff)
Try to neaten things up; first wxChoice.
Diffstat (limited to 'src/wx/video_panel.h')
-rw-r--r--src/wx/video_panel.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/wx/video_panel.h b/src/wx/video_panel.h
index b4e0eb71b..577bbf0e7 100644
--- a/src/wx/video_panel.h
+++ b/src/wx/video_panel.h
@@ -38,16 +38,15 @@ public:
private:
void edit_filters_clicked ();
void ratio_changed ();
- void frame_type_changed ();
void edit_colour_conversion_clicked ();
void setup_description ();
- wxChoice* _frame_type;
- ContentWidget<VideoContent, wxSpinCtrl>* _left_crop;
- ContentWidget<VideoContent, wxSpinCtrl>* _right_crop;
- ContentWidget<VideoContent, wxSpinCtrl>* _top_crop;
- ContentWidget<VideoContent, wxSpinCtrl>* _bottom_crop;
+ ContentChoice<VideoContent, VideoFrameType>* _frame_type;
+ ContentSpinCtrl<VideoContent>* _left_crop;
+ ContentSpinCtrl<VideoContent>* _right_crop;
+ ContentSpinCtrl<VideoContent>* _top_crop;
+ ContentSpinCtrl<VideoContent>* _bottom_crop;
wxChoice* _ratio;
wxStaticText* _ratio_description;
wxStaticText* _description;