Improve CMS theming.
[lgpl/argeo-commons.git] / org.argeo.cms.ui / src / org / argeo / cms / web / MinimalWebApp.java
index fe8b20c92097286b31e9dc63986ac50502f7dbbb..188391c42e68d4b736d444fc88e374a06d142946 100644 (file)
@@ -1,11 +1,11 @@
 package org.argeo.cms.web;
 
-import static org.argeo.cms.ui.util.CmsTheme.CMS_THEME_BUNDLE_PROPERTY;
+import static org.argeo.cms.ui.util.BundleCmsTheme.CMS_THEME_BUNDLE_PROPERTY;
 
 import java.util.HashMap;
 import java.util.Map;
 
-import org.argeo.cms.ui.util.CmsTheme;
+import org.argeo.cms.ui.util.BundleCmsTheme;
 import org.eclipse.rap.rwt.RWT;
 import org.eclipse.rap.rwt.application.Application;
 import org.eclipse.rap.rwt.application.ApplicationConfiguration;
@@ -15,12 +15,12 @@ import org.osgi.framework.BundleContext;
 /** Lightweight web app using only RWT and not the whole Eclipse platform. */
 public class MinimalWebApp implements ApplicationConfiguration {
 
-       private CmsTheme theme;
+       private BundleCmsTheme theme;
 
        public void init(BundleContext bundleContext, Map<String, Object> properties) {
                if (properties.containsKey(CMS_THEME_BUNDLE_PROPERTY)) {
                        String cmsThemeBundle = properties.get(CMS_THEME_BUNDLE_PROPERTY).toString();
-                       theme = new CmsTheme(bundleContext, cmsThemeBundle);
+                       theme = new BundleCmsTheme(bundleContext, cmsThemeBundle);
                }
        }
 
@@ -36,16 +36,21 @@ public class MinimalWebApp implements ApplicationConfiguration {
        @Override
        public void configure(Application application) {
                if (theme != null)
-                       theme.apply(application);
+                       WebThemeUtils.apply(application, theme);
 
                Map<String, String> properties = new HashMap<>();
                if (theme != null) {
                        properties.put(WebClient.THEME_ID, theme.getThemeId());
-                       properties.put(WebClient.HEAD_HTML, theme.getAdditionalHeaders());
+                       properties.put(WebClient.HEAD_HTML, theme.getHtmlHeaders());
                } else {
                        properties.put(WebClient.THEME_ID, RWT.DEFAULT_THEME_ID);
                }
                addEntryPoints(application, properties);
 
        }
+
+       public void setTheme(BundleCmsTheme theme) {
+               this.theme = theme;
+       }
+
 }