#ifndef _SLIDESELECT_HPP_ #define _SLIDESELECT_HPP_ #include #include #include #include class SlideSelect : public DWindow { public: SlideSelect(HWND hParent); virtual ~SlideSelect(); WORD selectSlides(Block &pathFileNames); private: int DlgProc(UINT message,WPARAM wParam,LPARAM lParam); void handleBitmapEvent(void)const; void handleProjectEvent(void)const; void handleSelectEvent(LPARAM lParam); void handleListBoxEvent(LPARAM lParam)const; void freeBitmaps(void)const; void retrieveItemList(void); void copyList(Block &pathFileNames); void handleFileSelection(String &pathFileName); void parseProjectFile(String &pathFileNameString); HWND mhParent; Block mPathFileNames; }; #endif