-Localized Keymap preflet and translated it to french git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33790 a95241bf-73f2-0310-859d-f6bbb57e9c96
41 lines
628 B
C++
41 lines
628 B
C++
/*
|
|
* Copyright 2004-2006 Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Sandor Vroemisse
|
|
* Jérôme Duval
|
|
*/
|
|
|
|
#include "KeymapApplication.h"
|
|
|
|
|
|
KeymapApplication::KeymapApplication()
|
|
: BApplication("application/x-vnd.Haiku-Keymap")
|
|
{
|
|
be_locale->GetAppCatalog(&fCatalog);
|
|
// create the window
|
|
fWindow = new KeymapWindow();
|
|
fWindow->Show();
|
|
}
|
|
|
|
|
|
void
|
|
KeymapApplication::MessageReceived(BMessage* message)
|
|
{
|
|
BApplication::MessageReceived(message);
|
|
}
|
|
|
|
|
|
// #pragma mark -
|
|
|
|
|
|
int
|
|
main(int, char**)
|
|
{
|
|
new KeymapApplication;
|
|
be_app->Run();
|
|
delete be_app;
|
|
return B_OK;
|
|
}
|