173a2ffbaSStephan Aßmus /* 273a2ffbaSStephan Aßmus * Copyright 2006, Haiku. All rights reserved. 373a2ffbaSStephan Aßmus * Distributed under the terms of the MIT License. 473a2ffbaSStephan Aßmus * 573a2ffbaSStephan Aßmus * Authors: 673a2ffbaSStephan Aßmus * Stephan Aßmus <superstippi@gmx.de> 773a2ffbaSStephan Aßmus */ 873a2ffbaSStephan Aßmus 973a2ffbaSStephan Aßmus #include <Application.h> 1073a2ffbaSStephan Aßmus 1173a2ffbaSStephan Aßmus #include "WonderBrushTranslator.h" 1273a2ffbaSStephan Aßmus #include "TranslatorWindow.h" 1373a2ffbaSStephan Aßmus 1473a2ffbaSStephan Aßmus int 1573a2ffbaSStephan Aßmus main() 1673a2ffbaSStephan Aßmus { 17*97c99097SRyan Leavengood BApplication app("application/x-vnd.Haiku-WonderBrushTranslator"); 1873a2ffbaSStephan Aßmus status_t result; 1973a2ffbaSStephan Aßmus result = LaunchTranslatorWindow(new WonderBrushTranslator, 2073a2ffbaSStephan Aßmus "WBI Settings", BRect(0, 0, 225, 175)); 2173a2ffbaSStephan Aßmus if (result == B_OK) { 2273a2ffbaSStephan Aßmus app.Run(); 2373a2ffbaSStephan Aßmus return 0; 2473a2ffbaSStephan Aßmus } else 2573a2ffbaSStephan Aßmus return 1; 2673a2ffbaSStephan Aßmus } 27