Subversion Repositories eFlore/Applications.coel

Rev

Rev 1680 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1680 Rev 1790
Line 2... Line 2...
2
 
2
 
3
import com.extjs.gxt.ui.client.widget.Window;
3
import com.extjs.gxt.ui.client.widget.Window;
4
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
4
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
Line 5... Line 5...
5
import com.google.gwt.core.client.GWT;
5
import com.google.gwt.core.client.GWT;
Line 6... Line 6...
6
 
6
 
7
public class FenetreForm extends Window{
7
public class FenetreForm extends Window {
8
 
8
 
9
	public FenetreForm(String titre) {
9
	public FenetreForm(String titre) {
10
		int hauteur = (int) Math.ceil(com.google.gwt.user.client.Window.getClientHeight() * .8);
10
		int hauteur = (int) Math.ceil(com.google.gwt.user.client.Window.getClientHeight() * .8);
11
		int largeur = (int) Math.ceil(com.google.gwt.user.client.Window.getClientWidth() * .8);
11
		int largeur = (int) Math.ceil(com.google.gwt.user.client.Window.getClientWidth() * .8);
12
		setSize(largeur, hauteur);
12
		setSize(largeur, hauteur);
13
		setPlain(true);
13
		setPlain(true);
14
		setModal(true);
14
		setModal(true);
-
 
15
		setBlinkModal(true);
15
		setBlinkModal(true);
16
		setHeadingHtml(titre);
16
		setHeadingHtml(titre);
17
		setLayout(new FitLayout());