summaryrefslogtreecommitdiff
path: root/src/wx/film_editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/film_editor.h')
-rw-r--r--src/wx/film_editor.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h
index c5fe4b6cc..07ef2431e 100644
--- a/src/wx/film_editor.h
+++ b/src/wx/film_editor.h
@@ -28,6 +28,8 @@
#include <boost/signals2.hpp>
#include "lib/film.h"
+class wxNotebook;
+
class Film;
/** @class FilmEditor
@@ -44,6 +46,11 @@ public:
boost::signals2::signal<void (std::string)> FileChanged;
private:
+ void make_general_panel ();
+ void make_audio_panel ();
+ void make_subtitle_panel ();
+ void connect_to_widgets ();
+
/* Handle changes to the view */
void name_changed (wxCommandEvent &);
void use_dci_name_toggled (wxCommandEvent &);
@@ -87,6 +94,14 @@ private:
void active_jobs_changed (bool);
+ wxNotebook* _notebook;
+ wxPanel* _general_panel;
+ wxSizer* _general_sizer;
+ wxPanel* _audio_panel;
+ wxSizer* _audio_sizer;
+ wxPanel* _subtitle_panel;
+ wxSizer* _subtitle_sizer;
+
/** The film we are editing */
boost::shared_ptr<Film> _film;
/** The Film's name */
@@ -146,7 +161,5 @@ private:
std::vector<Format const *> _formats;
- wxSizer* _sizer;
-
bool _generally_sensitive;
};