xref: /haiku/src/preferences/keymap/KeymapApplication.h (revision 922e7ba1f3228e6f28db69b0ded8f86eb32dea17)
1 /*
2  * Copyright 2004-2006 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Sandor Vroemisse
7  *		Jérôme Duval
8  */
9 
10 #ifndef KEYMAP_APPLICATION_H
11 #define KEYMAP_APPLICATION_H
12 
13 
14 #include "KeymapWindow.h"
15 
16 #include <Application.h>
17 #include <Catalog.h>
18 #include <Entry.h>
19 #include <Locale.h>
20 
21 
22 class KeymapApplication : public BApplication {
23 	public:
24 		KeymapApplication();
25 
26 		void MessageReceived(BMessage* message);
27 		bool UseKeymap(BEntry* keymap);
28 
29 	private:
30 		KeymapWindow* fWindow;
31 };
32 
33 #endif // KEYMAP_APPLICATION_H
34