Package org.olat.core.gui.control.generic.layout

Examples of org.olat.core.gui.control.generic.layout.MainLayout3ColumnsController


   * @param ureq
   * @param wControl
   * @param root
   */
  private void displayCP(UserRequest ureq, WindowControl wControl, VFSContainer root) {
    MainLayout3ColumnsController cpCtr = CPUIFactory.getInstance().createMainLayoutController(ureq, wControl, root, true);
    this.putInitialPanel(cpCtr.getInitialComponent());
  }
View Full Code Here


   * @param initialUri can be NULL, will use first page then
   * @return A main layout controller
   */
  public MainLayout3ColumnsController createMainLayoutController(UserRequest ureq, WindowControl wControl, VFSContainer rootContainer, boolean showMenu, boolean activateFirstPage, String initialUri, OLATResourceable ores) {
    CPDisplayController cpCtr = new CPDisplayController(ureq, wControl, rootContainer, showMenu, activateFirstPage, initialUri, ores);   
    MainLayout3ColumnsController layoutCtr = new LayoutMain3ColsController(ureq, wControl, cpCtr.getMenuComponent(), null, cpCtr.getInitialComponent(), rootContainer.getName());
    layoutCtr.addDisposableChildController(cpCtr); // cascade disposing requests
    return layoutCtr;
  }
View Full Code Here

   * @param initialUri can be NULL, will use first page then
   * @return A main layout controller
   * @return the resource listening wrapper
   */
  public OLATResourceableListeningWrapperController createMainLayoutResourceableListeningWrapperController(OLATResourceable res, UserRequest ureq, WindowControl wControl, VFSContainer rootContainer, boolean showMenu, boolean activateFirstPage, String initialUri) {
    MainLayout3ColumnsController layoutCtr = createMainLayoutController(ureq, wControl, rootContainer, showMenu, activateFirstPage, initialUri, res);
    return new OLATResourceableListeningWrapperController(ureq, wControl, res, layoutCtr, ureq.getIdentity());
  }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.generic.layout.MainLayout3ColumnsController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.