Package org.olat.core.gui.components.panel

Examples of org.olat.core.gui.components.panel.Panel


   * @param wControl
   */
  public SearchAdminController(UserRequest ureq, WindowControl wControl) {
    super(ureq,wControl)
   
    main = new Panel("searchmain");
    myContent = createVelocityContainer("index");
    startIndexingButton = LinkFactory.createButtonSmall("button.startindexing", myContent, this);
    stopIndexingButton = LinkFactory.createButtonSmall("button.stopindexing", myContent, this);
    myContent.contextPut("searchstatus", SearchServiceImpl.getInstance().getStatus());
   
View Full Code Here


  public JMXInfoController(UserRequest ureq, WindowControl wControl) {
    super(ureq, wControl);
   
    if (!JMXManager.getInstance().isActive()) {
      showError("nojmx");
      putInitialPanel(new Panel("empty"));
      return;
    }
   
    mainVc = createVelocityContainer("jmxmain");
    //dumpAllLink = LinkFactory.createButton("dumpall", mainVc, this);
View Full Code Here

   
    AutoCreator controllerCreator = (AutoCreator)CoreSpringFactory.getBean("clusterAdminControllerCreator");
    clusterController = controllerCreator.createController(ureq, wControl);
    tabbedPane.addTab("Cluster", clusterController.getInitialComponent());

    cachePanel = new Panel("cachepanel");
    tabbedPane.addTab("caches", cachePanel);
   
    VelocityContainer myBuildinfo = createVelocityContainer("buildinfo");
    fillBuildInfoTab(myBuildinfo);   
    tabbedPane.addTab("buildinfo", myBuildinfo);
View Full Code Here

    // we always start with a search controller
    contentCtr = new UsermanagerUserSearchController(ureq, getWindowControl());
    listenTo(contentCtr); // auto dispose later
   
    content = new Panel("content");
    content.setContent(contentCtr.getInitialComponent());

    columnLayoutCtr = new LayoutMain3ColsController(ureq, getWindowControl(), olatMenuTree, null, content, "useradminmain");
    listenTo(columnLayoutCtr); // auto dispose later
    putInitialPanel(columnLayoutCtr.getInitialComponent());
View Full Code Here

   * @param ureq
   * @param control
   */
  public InfoMessageControllerSingleVM(UserRequest ureq, WindowControl control) {
    super(ureq, control);
    container = new Panel("container");
    infoMsgView = createVelocityContainer("infomsg");
    infoMsgEdit = createVelocityContainer("infomsgEdit");
    infoMsgView.contextPut("cluster", Boolean.FALSE);
    infoMsgEdit.contextPut("cluster", Boolean.FALSE);
   
View Full Code Here

  public UserInfoMainController(UserRequest ureq, WindowControl wControl, Identity chosenIdentity) {
    super(ureq, wControl);
   
    this.chosenIdentity = chosenIdentity;

    main = new Panel("userinfomain");

    main.setContent(createComponent(ureq, CMD_HOMEPAGE, chosenIdentity));

    StringBuilder sb = new StringBuilder();
    sb.append(chosenIdentity.getUser().getProperty(UserConstants.FIRSTNAME, ureq.getLocale()));
View Full Code Here

    myContent.contextPut("type", this.type);
    chooseTestButton.setCustomDisplayText(translate("command.createSurvey"));
  }

  private void init(UserRequest ureq, CourseGroupManager groupMgr, WindowControl wControl) {   
    main = new Panel("iqeditpanel");
   
    myContent = this.createVelocityContainer("edit");   
    chooseTestButton = LinkFactory.createButtonSmall("command.chooseRepFile", myContent, this);
    changeTestButton = LinkFactory.createButtonSmall("command.changeRepFile", myContent, this);
    modConfigForm = new IQEditForm("iqeditform", getTranslator(), moduleConfiguration);
View Full Code Here

    this.courseEnv =  courseEnv;
    this.courseNode = courseNode;
    this.projectBrokerModuleConfiguration = projectBrokerModuleConfiguration;
    this.newCreatedProject = newCreatedProject;

    detailsPanel = new Panel("projectdetails_panel");
    runController = new ProjectDetailsDisplayController(ureq, wControl, project, courseEnv, courseNode, projectBrokerModuleConfiguration);
    runController.addControllerListener(this);
    detailsPanel.setContent(runController.getInitialComponent());

    editVC = createVelocityContainer("editProject");
View Full Code Here

    myContent = new VelocityContainer("deletestatus", VELOCITY_ROOT + "/deletestatus.html", pT, this);

    //used to translate the BusinessGroup.getType() String in the table model
    tableModelTypeTranslator = BGTranslatorFactory.createBGPackageTranslator(PACKAGE, /*doesnt matter*/BusinessGroup.TYPE_BUDDYGROUP, ureq.getLocale());
   
    repositoryDeleteStatusPanel = new Panel("repositoryDeleteStatusPanel");
    repositoryDeleteStatusPanel.addListener(this);
    myContent.put("repositoryDeleteStatusPanel", repositoryDeleteStatusPanel);
    myContent.contextPut("header", pT.translate("status.delete.email.header",
        new String [] { Integer.toString(GroupDeletionManager.getInstance().getDeleteEmailDuration()) }));
    initializeTableController(ureq);
View Full Code Here

  public AdvancedPropertiesController(UserRequest ureq, WindowControl wControl) {
    super(ureq,wControl);   
   
    //TODO: make special security check as soon as this controller can also modify polices (at the moment: read only)
   
    myPanel = new Panel("myPanel");
    myPanel.addListener(this);
   
    searchForm = new AdvancedPropertySearchForm(ureq, wControl);
    listenTo(searchForm);
   
View Full Code Here

TOP

Related Classes of org.olat.core.gui.components.panel.Panel

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.