blob: 3c756572908ddca4d26d390c38266511d3fcf95a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package kz.ilotterytea.frogartha.gwt;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.backends.gwt.GwtApplication;
import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
import com.badlogic.gdx.backends.gwt.preloader.Preloader;
import com.github.czyzby.websocket.GwtWebSockets;
import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Style;
import com.google.gwt.user.client.ui.Panel;
import kz.ilotterytea.frogartha.FrogarthaGame;
/**
* Launches the GWT application.
*/
public class GwtLauncher extends GwtApplication {
@Override
public Preloader.PreloaderCallback getPreloaderCallback() {
return createPreloaderPanel(GWT.getHostPageBaseURL() + "preloadlogo.png");
}
@Override
protected void adjustMeterPanel(Panel meterPanel, Style meterStyle) {
meterPanel.setStyleName("gdx-meter");
meterPanel.addStyleName("nostripes");
meterStyle.setProperty("backgroundColor", "#70ffaa");
meterStyle.setProperty("backgroundImage", "none");
}
@Override
public GwtApplicationConfiguration getConfig() {
// Resizable application, uses available space in browser with no padding:
// cfg = new GwtApplicationConfiguration(true);
//cfg.padVertical = 0;
//cfg.padHorizontal = 0;
//return cfg;
// If you want a fixed size application, comment out the above resizable section,
// and uncomment below:
return new GwtApplicationConfiguration(800, 600);
}
@Override
public ApplicationListener createApplicationListener() {
GwtWebSockets.initiate();
return FrogarthaGame.getInstance();
}
}
|