diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-11-07 12:42:49 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-11-07 12:42:49 +0000 |
| commit | d1dd3e20b1ebc51e1506666b7fb4e64d72dea3f8 (patch) | |
| tree | 687c4b407231198f4e15a5d54fd6d888ab16e540 /src/wx/film_editor.h | |
| parent | 46048e975badaa69c28dae9faf462dda1b93e1a5 (diff) | |
Move video into a separate panel.
Diffstat (limited to 'src/wx/film_editor.h')
| -rw-r--r-- | src/wx/film_editor.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h index 07ef2431e..91bb761e3 100644 --- a/src/wx/film_editor.h +++ b/src/wx/film_editor.h @@ -46,7 +46,8 @@ public: boost::signals2::signal<void (std::string)> FileChanged; private: - void make_general_panel (); + void make_film_panel (); + void make_video_panel (); void make_audio_panel (); void make_subtitle_panel (); void connect_to_widgets (); @@ -95,8 +96,10 @@ private: void active_jobs_changed (bool); wxNotebook* _notebook; - wxPanel* _general_panel; - wxSizer* _general_sizer; + wxPanel* _film_panel; + wxSizer* _film_sizer; + wxPanel* _video_panel; + wxSizer* _video_sizer; wxPanel* _audio_panel; wxSizer* _audio_sizer; wxPanel* _subtitle_panel; |
