1 /* 2 ** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the OpenBeOS License. 4 */ 5 #ifndef FILE_WINDOW_H 6 #define FILE_WINDOW_H 7 8 9 #include "ProbeWindow.h" 10 11 class ProbeView; 12 13 14 class FileWindow : public ProbeWindow { 15 public: 16 FileWindow(BRect rect, entry_ref *ref, const BMessage *settings = NULL); 17 18 virtual bool QuitRequested(); 19 virtual bool Contains(const entry_ref &ref, const char *attribute); 20 21 private: 22 ProbeView *fProbeView; 23 }; 24 25 #endif /* FILE_WINDOW_H */ 26