xref: /haiku/src/add-ons/translators/wonderbrush/WonderBrushMain.cpp (revision 73a2ffba3bb47d5fa3811f0e609f7afa815db9bc)
1*73a2ffbaSStephan Aßmus /*
2*73a2ffbaSStephan Aßmus  * Copyright 2006, Haiku. All rights reserved.
3*73a2ffbaSStephan Aßmus  * Distributed under the terms of the MIT License.
4*73a2ffbaSStephan Aßmus  *
5*73a2ffbaSStephan Aßmus  * Authors:
6*73a2ffbaSStephan Aßmus  *		Stephan Aßmus <superstippi@gmx.de>
7*73a2ffbaSStephan Aßmus  */
8*73a2ffbaSStephan Aßmus 
9*73a2ffbaSStephan Aßmus #include <Application.h>
10*73a2ffbaSStephan Aßmus 
11*73a2ffbaSStephan Aßmus #include "WonderBrushTranslator.h"
12*73a2ffbaSStephan Aßmus #include "TranslatorWindow.h"
13*73a2ffbaSStephan Aßmus 
14*73a2ffbaSStephan Aßmus int
15*73a2ffbaSStephan Aßmus main()
16*73a2ffbaSStephan Aßmus {
17*73a2ffbaSStephan Aßmus 	BApplication app("application/x-vnd.haiku-wbi-translator");
18*73a2ffbaSStephan Aßmus 	status_t result;
19*73a2ffbaSStephan Aßmus 	result = LaunchTranslatorWindow(new WonderBrushTranslator,
20*73a2ffbaSStephan Aßmus 		"WBI Settings", BRect(0, 0, 225, 175));
21*73a2ffbaSStephan Aßmus 	if (result == B_OK) {
22*73a2ffbaSStephan Aßmus 		app.Run();
23*73a2ffbaSStephan Aßmus 		return 0;
24*73a2ffbaSStephan Aßmus 	} else
25*73a2ffbaSStephan Aßmus 		return 1;
26*73a2ffbaSStephan Aßmus }
27