xref: /haiku/src/preferences/keymap/KeymapApplication.h (revision cfc3fa87da824bdf593eb8b817a83b6376e77935)
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 <Entry.h>
18 
19 
20 class KeymapApplication : public BApplication {
21 	public:
22 		KeymapApplication();
23 
24 		void MessageReceived(BMessage* message);
25 		bool UseKeymap(BEntry* keymap);
26 
27 	private:
28 		KeymapWindow* fWindow;
29 };
30 
31 #endif // KEYMAP_APPLICATION_H
32