#ifndef IMAGESELECTORWIN_H #define IMAGESELECTORWIN_H #include "ImageWin.h" class ImageSelectorWin : public ImageWin { public: /*private*/ short xselection, yselection; short xselectionsize, yselectionsize; public: ImageSelectorWin(); virtual ~ImageSelectorWin(); void display(); void mouse (int button, int state, int x, int y); void motion (int x, int y); }; #endif