/* * Copyright 2005-2009, Axel Dörfler, axeld@pinc-software.de. * All rights reserved. Distributed under the terms of the MIT License. */ #ifndef LOCALE_WINDOW_H #define LOCALE_WINDOW_H #include class BButton; class BListView; class BOutlineListView; class FormatView; class LocaleWindow : public BWindow { public: LocaleWindow(); ~LocaleWindow(); virtual void MessageReceived(BMessage* message); virtual void FrameMoved(BPoint newPosition); private: BButton* fRevertButton; BOutlineListView* fLanguageListView; BOutlineListView* fPreferredListView; FormatView* fFormatView; BMessage* fMsgPrefLanguagesChanged; }; #endif // LOCALE_WINDOW_H