00001 #ifndef FINDER_WINDOW_H 00002 #define FINDER_WINDOW_H 00003 00004 #include "MWindow.h" 00005 #include "MListView.h" 00006 #include "MTextControl.h" 00007 #include "MButton.h" 00008 #include "MStringView.h" 00009 00013 class FinderWindow : public MWindow 00014 { 00015 private: 00016 MTextControl * m_text; 00017 MListView * m_list; 00018 MStringView * m_status; 00019 00020 enum { 00021 SEARCH_BUTTON = 'SeBu', 00022 LIST = 'List' 00023 }; 00024 00025 public: 00026 FinderWindow(); 00027 virtual ~FinderWindow(); 00028 00029 virtual bool QuitRequested(); 00030 00031 virtual void MessageReceived( BMessage * ); 00032 }; 00033 00034 #endif