01 /*
02 * SPDX-License-Identifier: Apache-2.0
03 *
04 * Copyright 2008-2017 the original author or authors.
05 *
06 * Licensed under the Apache License, Version 2.0 (the "License");
07 * you may not use this file except in compliance with the License.
08 * You may obtain a copy of the License at
09 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 package org.codehaus.griffon.runtime.lanterna;
19
20 import com.googlecode.lanterna.gui.GUIScreen;
21 import griffon.core.controller.ActionFactory;
22 import griffon.core.controller.ActionManager;
23 import griffon.core.injection.Module;
24 import griffon.core.threading.UIThreadManager;
25 import griffon.core.view.WindowManager;
26 import griffon.lanterna.LanternaWindowDisplayHandler;
27 import org.codehaus.griffon.runtime.core.injection.AbstractModule;
28 import org.codehaus.griffon.runtime.lanterna.controller.LanternaActionFactory;
29 import org.codehaus.griffon.runtime.lanterna.controller.LanternaActionManager;
30 import org.kordamp.jipsy.ServiceProviderFor;
31
32 import javax.inject.Named;
33
34 import static griffon.util.AnnotationUtils.named;
35
36 /**
37 * @author Andres Almiray
38 * @since 2.0.0
39 */
40 @Named("lanterna")
41 @ServiceProviderFor(Module.class)
42 public class LanternaModule extends AbstractModule {
43 @Override
44 protected void doConfigure() {
45 // tag::bindings[]
46 bind(GUIScreen.class)
47 .toProvider(GUIScreenProvider.class)
48 .asSingleton();
49
50 bind(LanternaWindowDisplayHandler.class)
51 .withClassifier(named("defaultWindowDisplayHandler"))
52 .to(DefaultLanternaWindowDisplayHandler.class)
53 .asSingleton();
54
55 bind(LanternaWindowDisplayHandler.class)
56 .withClassifier(named("windowDisplayHandler"))
57 .to(ConfigurableLanternaWindowDisplayHandler.class)
58 .asSingleton();
59
60 bind(WindowManager.class)
61 .to(DefaultLanternaWindowManager.class)
62 .asSingleton();
63
64 bind(UIThreadManager.class)
65 .to(LanternaUIThreadManager.class)
66 .asSingleton();
67
68 bind(ActionManager.class)
69 .to(LanternaActionManager.class)
70 .asSingleton();
71
72 bind(ActionFactory.class)
73 .to(LanternaActionFactory.class)
74 .asSingleton();
75 // end::bindings[]
76 }
77 }
|