Jocy 2017-05-09 17:04:14 +02:00
parent 0a7c4d0437
commit d6620cacc9
4 changed files with 13 additions and 16 deletions

View File

@ -199,12 +199,12 @@ class ManiaExchangeList implements CallbackListener, ManialinkPageAnswerListener
$headFrame->setY($posY - 12); $headFrame->setY($posY - 12);
$labelLine = new LabelLine($headFrame); $labelLine = new LabelLine($headFrame);
$labelLine->addLabelEntryText('Id', $posX + 3.5, 9); $labelLine->addLabelEntryText('Id', $posX + 3.5, 8);
$labelLine->addLabelEntryText('Name', $posX + 12.5, 38.5); $labelLine->addLabelEntryText('Name', $posX + 12.5, 37.5);
$labelLine->addLabelEntryText('Author', $posX + 59, 44); $labelLine->addLabelEntryText('Author', $posX + 59, 43);
$labelLine->addLabelEntryText('Type', $posX + 103, 15); $labelLine->addLabelEntryText('Type', $posX + 103, 14);
$labelLine->addLabelEntryText('Mood', $posX + 118, 12); $labelLine->addLabelEntryText('Mood', $posX + 118, 11);
$labelLine->addLabelEntryText('Last Update', $posX + 130, $width - ($posX + 130)); $labelLine->addLabelEntryText('Last Update', $posX + 130, $width - ($posX + 131));
$labelLine->render(); $labelLine->render();

View File

@ -34,7 +34,7 @@ class ManialinkManager implements ManialinkPageAnswerListener, CallbackListener,
const ACTION_CLOSEWIDGET = 'ManiaLinkManager.CloseWidget'; const ACTION_CLOSEWIDGET = 'ManiaLinkManager.CloseWidget';
const CB_MAIN_WINDOW_CLOSED = 'ManialinkManagerCallback.MainWindowClosed'; const CB_MAIN_WINDOW_CLOSED = 'ManialinkManagerCallback.MainWindowClosed';
const CB_MAIN_WINDOW_OPENED = 'ManialinkManagerCallback.MainWindowOpened'; const CB_MAIN_WINDOW_OPENED = 'ManialinkManagerCallback.MainWindowOpened';
const MAIN_MANIALINK_Z_VALUE = 20; const MAIN_MANIALINK_Z_VALUE = 150;
/* /*

View File

@ -111,11 +111,13 @@ class StyleManager implements UsageInformationAble {
return $descriptionLabel; return $descriptionLabel;
} }
/** /**
* Gets the default buttons and textbox for a map search * Gets the default buttons and textbox for a map search
* *
* @param string $actionMapNameSearch * @param $actionMapNameSearch
* @param string $actionAuthorSearch * @param $actionAuthorSearch
* @param null $actionReset
* @return \FML\Controls\Frame * @return \FML\Controls\Frame
*/ */
public function getDefaultMapSearch($actionMapNameSearch, $actionAuthorSearch, $actionReset = null) { public function getDefaultMapSearch($actionMapNameSearch, $actionAuthorSearch, $actionReset = null) {
@ -229,13 +231,7 @@ class StyleManager implements UsageInformationAble {
// mainframe // mainframe
$frame = new Frame(); $frame = new Frame();
$frame->setSize($width, $height)->setZ(ManialinkManager::MAIN_MANIALINK_Z_VALUE); //TODO place before scoreboards $frame->setSize($width, $height)->setZ(ManialinkManager::MAIN_MANIALINK_Z_VALUE);
//TODO remove: (just temporary fix for tm bug)
if ($this->maniaControl->getMapManager()->getCurrentMap()->getGame() === 'tm') {
$frame->setSize($width, $height)->setZ(32);
}
// Background Quad // Background Quad
$backgroundQuad = new Quad(); $backgroundQuad = new Quad();

View File

@ -97,6 +97,7 @@ class InstallMenu implements ConfiguratorMenu, ManialinkPageAnswerListener {
$pagerNext = clone $pagerPrev; $pagerNext = clone $pagerPrev;
$frame->addChild($pagerNext); $frame->addChild($pagerNext);
$pagerNext->setX($width * 0.45); $pagerNext->setX($width * 0.45);
$pagerNext->setSubStyle($pagerPrev::SUBSTYLE_ArrowNext);
$pageCountLabel = new Label_Text(); $pageCountLabel = new Label_Text();
$frame->addChild($pageCountLabel); $frame->addChild($pageCountLabel);