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