1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.ui.client; |
17 | |
|
18 | |
import org.kuali.student.common.ui.client.theme.Theme; |
19 | |
import org.kuali.student.common.ui.client.widgets.KSErrorDialog; |
20 | |
import org.kuali.student.common.ui.client.widgets.progress.KSBlockingProgressIndicator; |
21 | |
|
22 | |
import com.google.gwt.core.client.EntryPoint; |
23 | |
import com.google.gwt.dom.client.StyleElement; |
24 | |
import com.google.gwt.dom.client.StyleInjector; |
25 | |
|
26 | 0 | public class CommonUI implements EntryPoint { |
27 | |
public StyleElement commonStyle; |
28 | |
public StyleElement resetStyle; |
29 | |
public StyleElement initStyle; |
30 | |
|
31 | |
public void onModuleLoad() { |
32 | 0 | KSErrorDialog.bindUncaughtExceptionHandler(); |
33 | 0 | KSBlockingProgressIndicator.initialize(); |
34 | 0 | resetStyle = StyleInjector.injectStylesheet(Theme.INSTANCE.getCommonCss().getResetCssString()); |
35 | 0 | initStyle = StyleInjector.injectStylesheet(Theme.INSTANCE.getCommonCss().getInitializeCssString()); |
36 | 0 | commonStyle = StyleInjector.injectStylesheet(Theme.INSTANCE.getCommonCss().getCssString()); |
37 | 0 | } |
38 | |
} |