diff options
Diffstat (limited to 'src/wx2/film_viewer.h')
| -rw-r--r-- | src/wx2/film_viewer.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/wx2/film_viewer.h b/src/wx2/film_viewer.h new file mode 100644 index 000000000..b0a6aab04 --- /dev/null +++ b/src/wx2/film_viewer.h @@ -0,0 +1,21 @@ +#include <wx/wx.h> + +class Film; +class ThumbPanel; + +class FilmViewer +{ +public: + FilmViewer (Film *, wxFrame *); + + void load_thumbnail (int); + wxPanel* get_widget (); + +private: + Film* _film; + + wxImage* _image; + wxImage* _scaled_image; + wxBitmap* _bitmap; + ThumbPanel* _thumb_panel; +}; |
