xref: /haiku/src/preferences/locale/LocaleWindow.h (revision b289aaf66bbf6e173aa90fa194fc256965f1b34d)
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 BOutlineListView;
14 class FormatView;
15 
16 
17 class LocaleWindow : public BWindow {
18 public:
19 								LocaleWindow();
20 								~LocaleWindow();
21 
22 	virtual	void				MessageReceived(BMessage* message);
23 	virtual	void				FrameMoved(BPoint newPosition);
24 
25 private:
26 			BButton*			fRevertButton;
27 			BOutlineListView*	fLanguageListView;
28 			BOutlineListView*	fPreferredListView;
29 			FormatView*			fFormatView;
30 			BMessage*			fMsgPrefLanguagesChanged;
31 };
32 
33 #endif	// LOCALE_WINDOW_H
34 
35