01 /*
02 * Copyright 2008-2015 the original author or authors.
03 *
04 * Licensed under the Apache License, Version 2.0 (the "License");
05 * you may not use this file except in compliance with the License.
06 * You may obtain a copy of the License at
07 *
08 * http://www.apache.org/licenses/LICENSE-2.0
09 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package griffon.builder.pivot.factory
17
18 import org.apache.pivot.wtk.Component
19 import org.apache.pivot.wtk.Window
20
21 /**
22 * @author Andres Almiray
23 */
24 class ApplicationFactory extends SingleElementContainerFactory {
25 ApplicationFactory() {
26 super(Window, "content", Component)
27 }
28
29 public Object newInstance(FactoryBuilderSupport builder, Object name, Object value, Map attributes) {
30 String windowName = attributes.remove('name') ?: computeWindowName()
31 def window = builder.application.createApplicationContainer([:])
32 if (!window.name) window.name = windowName
33 builder.application.windowManager.attach(window.name, window)
34 window
35 }
36
37 private static int COUNT = 0
38
39 private static String computeWindowName() {
40 'window' + (COUNT++)
41 }
42 }
|