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