Package org.olat.core.gui.control.util

Examples of org.olat.core.gui.control.util.ZIndexWrapper


        List zindexed = (List) wbo.getData("guimessage");
        if (zindexed == null) {
          zindexed = new ArrayList(3);
          wbo.putData("guimessage", zindexed);
        }
        zindexed.add(new ZIndexWrapper(guiMsgPlace, 20));
      }
    };
    myContent.put("guimessage", guiMsgPlace);
   
    backIcon = LinkFactory.createIconClose(closeButtonText, myContent, this);
View Full Code Here


        List<ZIndexWrapper> zindexed = (List<ZIndexWrapper>) wbo.getData("guimessage");
        if (zindexed == null) {
          zindexed = new ArrayList<ZIndexWrapper>(3);
          wbo.putData("guimessage", zindexed);
        }
        zindexed.add(new ZIndexWrapper(guiMsgPlace, 20));
      }
    };
    mainVC.put("guimessage", guiMsgPlace);

    if (title != null)
View Full Code Here

        List zindexed = (List) wbo.getData("guimessage");
        if (zindexed == null) {
          zindexed = new ArrayList(3);
          wbo.putData("guimessage", zindexed);
        }
        zindexed.add(new ZIndexWrapper(guiMsgPlace, 10));
      }
    };
    inset.put("cont", content);
    inset.put("guimsgplace", guiMsgPlace);
   
View Full Code Here

      Panel winnerP = null;
      int maxZ = -1;
      if (places != null) {
        // we have places where we can put the gui message
        for (Iterator it_places = places.iterator(); it_places.hasNext();) {
          ZIndexWrapper ziw = (ZIndexWrapper) it_places.next();
          int cind = ziw.getZindex();
          if (cind > maxZ) {
            maxZ = cind;
            winnerP = ziw.getPanel();
          }
        }
      } else {
        winnerP = guimsgHolder;
      }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.util.ZIndexWrapper

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.