summaryrefslogtreecommitdiff
path: root/src/wx2/film_viewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx2/film_viewer.h')
-rw-r--r--src/wx2/film_viewer.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/wx2/film_viewer.h b/src/wx2/film_viewer.h
deleted file mode 100644
index b0a6aab04..000000000
--- a/src/wx2/film_viewer.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#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;
-};