Package chrriis.common.UIUtils

Examples of chrriis.common.UIUtils.TransparencyType


    Rectangle[] shape = UIUtils.getComponentVisibleArea(this, new Filter<Component>() {
      public Acceptance accept(Component c) {
        if(c instanceof EmbeddedPanel) {
          return Acceptance.NO;
        }
        TransparencyType transparency = UIUtils.getComponentTransparency(c);
        switch(transparency) {
          case TRANSPARENT_WITH_OPAQUE_CHILDREN: return Acceptance.TEST_CHILDREN;
          case NOT_VISIBLE: return Acceptance.NO;
        }
        if(IS_DEBUGGING_SHAPE) {
View Full Code Here

TOP

Related Classes of chrriis.common.UIUtils.TransparencyType

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.