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