summaryrefslogblamecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/LectureImageListPageLayout.java
blob: 7461df1e7b36a6abb5e707503efb0fae89797f2b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                      
                                                                 






                                                                     
                                                     
 



                                                           

                                                                                   

                                                                   

                                                                           
                                   

         
package org.openslx.dozmod.gui.wizard.layout;

import org.openslx.dozmod.gui.control.ImageListViewer;
import org.openslx.dozmod.gui.control.ImageListViewer.FilterType;
import org.openslx.dozmod.gui.helper.GridManager;
import org.openslx.dozmod.gui.wizard.Wizard;
import org.openslx.dozmod.gui.wizard.WizardPage;

@SuppressWarnings("serial")
public abstract class LectureImageListPageLayout extends WizardPage {

	protected final ImageListViewer ctlImageList;

	/**
	 * Page for setting custom permissions of a lecture
	 */
	public LectureImageListPageLayout(Wizard wizard) {
		super(wizard, "VM verknüpfen");
		setDescription("Wählen Sie eine VM für diese Veranstaltung aus");
		GridManager grid = new GridManager(this, 1, false);

		ctlImageList = new ImageListViewer(FilterType.USABLE);
		grid.add(ctlImageList).fill(true, true).expand(true, true);
		grid.finish(false);
	}
}