MainWindow.hpp
changeset 2 b2772bffb62f
parent 1 506e0fc65ba3
--- a/MainWindow.hpp	Sun Apr 24 14:03:52 2011 +0200
+++ b/MainWindow.hpp	Sun Apr 24 14:26:29 2011 +0200
@@ -2,17 +2,25 @@
 #define _HEADER_MAINWINDOW_HPP_
 
 #include <wx/wx.h>
+#include <vector>
 #include "CropArea.hpp"
 
+class wxPictureWindow;
+
 DECLARE_EVENT_TYPE(EVT_NEXTPICTURE, -1)
 
 class MainWindow : public wxFrame
 {
 public:
-    MainWindow(const wxImage &img, CropArea area, wxSize size);
+    MainWindow(const std::vector<wxString> &imgs, const wxSize size);
 
     void OnNextPicture(wxCommandEvent &e);
 
+private:
+    const std::vector<wxString> _imgs;
+    wxPictureWindow *_picture;
+    int _counter;
+
     DECLARE_EVENT_TABLE ();
 };