summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/LoginWindowLayout.java
blob: 683780c93ec11fd8a82b2d6986cb0ccad3d08e44 (plain) (blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package org.openslx.dozmod.gui.window.layout;

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.openslx.dozmod.gui.helper.Gui;

public abstract class LoginWindowLayout extends Composite {

	// TODO add ids to use for the authButtons group!
	protected static enum LOGIN_TYPE {
		BWIDM(0, "bwidm"),
		BWLP(1, "bwlp"),
		SAT(2, "sat");

		private final int id;
		private final String tag;

		private LOGIN_TYPE(final int id, final String tag) {
			this.id = id;
			this.tag = tag;
		}

		public int getId() {
			return this.id;
		}

		public String getTag() {
			return this.tag;
		}

		public static LOGIN_TYPE getEnum(String tag) {
			switch (tag) {
			case "bwidm":
				return LOGIN_TYPE.BWIDM;
			case "bwlp":
				return LOGIN_TYPE.BWLP;
			case "sat":
				return LOGIN_TYPE.SAT;
			default:
				return null;
			}
		}
	}

	// authentication method to use for login attempts
	protected LOGIN_TYPE loginType = null;

	private Image titleImage;

	// textfields for the username/password
	protected Text usernameText;
	protected Text passwordText;

	// ComboBox/label for the IDP
	protected final Combo idpCombo;
	protected final Label idpText;

	// buttons
	protected final Button loginButton;
	protected final Button saveUsernameCheck;
	protected final Button[] authButtons;

	private static final String title = "bwSuite - Login";
	private static final String authenticationGroupLabel = "Authentifizierungsart";

	/**
	 * Create a new login composite
	 * 
	 * @param mainShell
	 *            The shell it should be added to
	 */
	public LoginWindowLayout(final Shell mainShell) {
		super(mainShell, SWT.NONE);

		// title for composite
		mainShell.setText(title);

		// left authentication selection and right loginmask
		GridLayout gridLayout = new GridLayout(2, true);
		this.setLayout(gridLayout);

		// load the needed Picture
		loadImage();

		Label titlePicture = new Label(this, SWT.NONE);
		titlePicture.setImage(titleImage);
		GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, true);
		gridData.horizontalSpan = 2;
		gridData.horizontalAlignment = SWT.CENTER;
		titlePicture.setLayoutData(gridData);

		// group for the authentication method.
		// groups have borders and a title
		Group authGroup = new Group(this, SWT.NONE);
		authGroup.setText(authenticationGroupLabel);
		gridLayout = new GridLayout();
		gridLayout.numColumns = 1;
		authGroup.setLayout(gridLayout);
		gridData = new GridData(GridData.FILL, GridData.FILL, false, false);
		gridData.heightHint = 150;
		authGroup.setLayoutData(gridData);

		// add the authentication method selection buttons
		authButtons = new Button[3];
		authButtons[LOGIN_TYPE.BWIDM.id] = new Button(authGroup, SWT.RADIO);
		authButtons[LOGIN_TYPE.BWIDM.id].setText("Authentifizierung über bwIDM");
		gridData = new GridData(GridData.FILL, GridData.FILL, true, true);
		authButtons[LOGIN_TYPE.BWIDM.id].setLayoutData(gridData);

		authButtons[LOGIN_TYPE.BWLP.id] = new Button(authGroup, SWT.RADIO);
		authButtons[LOGIN_TYPE.BWLP.id].setText("Test-Zugang mit festem Benutzernamen");
		gridData = new GridData(GridData.FILL, GridData.FILL, true, true);
		authButtons[LOGIN_TYPE.BWLP.id].setLayoutData(gridData);

		authButtons[LOGIN_TYPE.SAT.id] = new Button(authGroup, SWT.RADIO);
		authButtons[LOGIN_TYPE.SAT.id].setText("Direkte Verbindung zum Satelliten");
		gridData = new GridData(GridData.FILL, GridData.FILL, true, true);
		authButtons[LOGIN_TYPE.SAT.id].setLayoutData(gridData);

		// group for the login mask
		final Group loginGroup = new Group(this, SWT.NONE);
		loginGroup.setText("Zugangsdaten");
		gridLayout = new GridLayout();
		gridLayout.numColumns = 2;
		loginGroup.setLayout(gridLayout);
		gridData = new GridData(GridData.FILL, GridData.CENTER, true, false);
		gridData.heightHint = 150;
		loginGroup.setLayoutData(gridData);

		idpText = new Label(loginGroup, SWT.NONE);
		idpText.setText("IdP:");

		idpCombo = new Combo(loginGroup, SWT.DROP_DOWN | SWT.READ_ONLY);
		idpCombo.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));

		new Label(loginGroup, SWT.NONE).setText("Benutzername:");
		usernameText = new Text(loginGroup, SWT.SINGLE | SWT.BORDER);
		usernameText.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));

		new Label(loginGroup, SWT.NONE).setText("Passwort:");
		passwordText = new Text(loginGroup, SWT.SINGLE | SWT.BORDER | SWT.PASSWORD);
		passwordText.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));
		// login button
		loginButton = new Button(loginGroup, SWT.PUSH);
		loginButton.setText("Login");
		saveUsernameCheck = new Button(loginGroup, SWT.CHECK);
		saveUsernameCheck.setText("Benutzername speichern");

	}

	private void loadImage() {
		try {
			// TODO use the ResourceLoader class to load the logo
			// this way, we can be sure to get an image
			// (since the ResourceLoader always returns an image,
			// even if it cannot load the specified one).
			titleImage = new Image(Gui.display, getClass().getResourceAsStream("/img/Logo_bwLehrpool.png"));
			ImageData imgData = titleImage.getImageData();
			imgData = imgData.scaledTo(imgData.width / 5, imgData.height / 5);
			titleImage = new Image(Gui.display, imgData);
		} catch (Exception e) {
			System.out.println("Cannot load image");
			System.out.println(e.getMessage());
		}
	}
}