00001 #ifndef _LOCAL_VIEW_H 00002 #define _LOCAL_VIEW_H 00003 00004 #include <gui/icondirview.h> 00005 #include "server.h" 00006 00014 class FTPLocalView : public os::IconDirectoryView 00015 { 00016 public: 00017 FTPLocalView(const os::Rect&, const String& zName ); 00018 00019 void SetServer( Server* pcServer ); 00020 Server* GetServer(); 00021 00022 void MouseUp( const Point& cPosition, uint32 nButtons, Message* pcData ); 00023 void MouseMove( const Point& cPos, int nCode, uint32 nButtons, Message* pcData ); 00024 00025 private: 00027 Server* m_pcServer; 00028 }; 00029 00030 #endif 00031 00032 00033 00034 00035 00036 00037 00038