Package extracells.gui.widget

Examples of extracells.gui.widget.AbstractFluidWidget


        for (int x = 0; x < 9; x++)
        {
          int widgetIndex = y * 9 + x + currentScroll * 9;
          if (0 <= widgetIndex && widgetIndex < listSize)
          {
            AbstractFluidWidget widget = fluidWidgets.get(widgetIndex);
            widget.drawWidget(x * 18 + 7, y * 18 - 1);
          } else
          {
            break outerLoop;
          }
        }
View Full Code Here


      for (int y = 0; y < 4; y++)
      {
        int index = y * 9 + x;
        if (0 <= index && index < listSize)
        {
          AbstractFluidWidget widget = fluidWidgets.get(index);
          widget.mouseClicked(x * 18 + 7, y * 18 - 1, mouseX, mouseY);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of extracells.gui.widget.AbstractFluidWidget

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.