示例#1
0
文件: Tools.php 项目: kremsy/manialib
 /**
  * Returns the position of an element in relation to another element and
  * according to their respective alignments
  * 
  * @param \ManiaLib\Gui\Element Parent element
  * @param string Horizontal alignement of the element you want to place
  * @param string Vertical alignement of the element you want to place
  * @return array Calculated position of the element you want to place. The
  * array contains 2 elements with "x" and "y" indexes
  */
 public static final function getAlignedPos(\ManiaLib\Gui\Element $object, $newHalign, $newValign)
 {
     $newPosX = self::getAlignedPosX($object->getPosX(), $object->getRealSizeX(), $object->getHalign(), $newHalign);
     $newPosY = self::getAlignedPosY($object->getPosY(), $object->getRealSizeY(), $object->getValign(), $newValign);
     return array('x' => $newPosX, 'y' => $newPosY);
 }