1 /* 2 * Copyright 2005-2009, Axel Dörfler, axeld@pinc-software.de. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 #ifndef LOCALE_WINDOW_H 6 #define LOCALE_WINDOW_H 7 8 9 #include <Window.h> 10 11 class BButton; 12 class BListView; 13 class FormatView; 14 15 16 class LocaleWindow : public BWindow { 17 public: 18 LocaleWindow(); 19 20 virtual bool QuitRequested(); 21 virtual void MessageReceived(BMessage* message); 22 23 private: 24 BButton* fRevertButton; 25 BListView* fPreferredListView; 26 FormatView* fFormatView; 27 }; 28 29 #endif // LOCALE_WINDOW_H 30 31