Package org.olat.instantMessaging.ui

Examples of org.olat.instantMessaging.ui.ConnectedClientsListController


  public void event(UserRequest ureq, Component source, Event event) {
    if (source == showOtherUsers) {
        // show list of other online users that are connected to jabber server
      ControllerCreator ctrlCreator = new ControllerCreator() {
        public Controller createController(UserRequest lureq, WindowControl lwControl) {
          return new ConnectedClientsListController(lureq, lwControl);
        }         
      };
      //wrap the content controller into a full header layout
      ControllerCreator layoutCtrlr = BaseFullWebappPopupLayoutFactory.createAuthMinimalPopupLayout(ureq, ctrlCreator);
      //open in new browser window
View Full Code Here


  public void event(UserRequest ureq, Component source, Event event) {
    if (source == showOtherUsers) {
        // show list of other online users that are connected to jabber server
      ControllerCreator ctrlCreator = new ControllerCreator() {
        public Controller createController(UserRequest lureq, WindowControl lwControl) {
          ConnectedClientsListController clientsListCtr = new ConnectedClientsListController(lureq, lwControl);
          LayoutMain3ColsController mainLayoutCtr = new LayoutMain3ColsController(lureq, lwControl, null, null, clientsListCtr.getInitialComponent(), null);
          mainLayoutCtr.addDisposableChildController(clientsListCtr);
          return mainLayoutCtr;
        }         
      };
      //wrap the content controller into a full header layout
View Full Code Here

       
      } else if (source == showOtherUsers) {
        //open new window with a list of online users
        ControllerCreator ctrlCreator = new ControllerCreator() {
          public Controller createController(UserRequest lureq, WindowControl lwControl) {
            ConnectedClientsListController clientsListCtr = new ConnectedClientsListController(lureq, lwControl);
            LayoutMain3ColsController mainLayoutCtr = new LayoutMain3ColsController(lureq, lwControl, null, null, clientsListCtr.getInitialComponent(), null);
            mainLayoutCtr.addDisposableChildController(clientsListCtr);
            return mainLayoutCtr;
          }         
        };
        //wrap the content controller into a full header layout
View Full Code Here

TOP

Related Classes of org.olat.instantMessaging.ui.ConnectedClientsListController

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.