0ba004b1fa
there is no need to enforce whole interger positions for UI elements. Especially with the recent font changes this was causing alignment problems on high resolution displays. Elements with non-whole number sizes and positions should be used sparingly, but there's no reason to strictly align them.
87 lines
2.2 KiB
Java
87 lines
2.2 KiB
Java
/*
|
|
* Pixel Dungeon
|
|
* Copyright (C) 2012-2015 Oleg Dolya
|
|
*
|
|
* Shattered Pixel Dungeon
|
|
* Copyright (C) 2014-2015 Evan Debenham
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
package com.shatteredpixel.shatteredpixeldungeon.ui;
|
|
|
|
import com.watabou.noosa.BitmapText;
|
|
import com.watabou.noosa.NinePatch;
|
|
import com.watabou.noosa.ui.Component;
|
|
import com.shatteredpixel.shatteredpixeldungeon.Chrome;
|
|
import com.shatteredpixel.shatteredpixeldungeon.scenes.PixelScene;
|
|
|
|
public class Toast extends Component {
|
|
|
|
private static final float MARGIN_HOR = 2;
|
|
private static final float MARGIN_VER = 2;
|
|
|
|
protected NinePatch bg;
|
|
protected SimpleButton close;
|
|
protected BitmapText text;
|
|
|
|
public Toast( String text ) {
|
|
super();
|
|
text( text );
|
|
|
|
width = this.text.width() + close.width() + bg.marginHor() + MARGIN_HOR * 3;
|
|
height = Math.max( this.text.height(), close.height() ) + bg.marginVer() + MARGIN_VER * 2;
|
|
}
|
|
|
|
@Override
|
|
protected void createChildren() {
|
|
super.createChildren();
|
|
|
|
bg = Chrome.get( Chrome.Type.TOAST_TR );
|
|
add( bg );
|
|
|
|
close = new SimpleButton( Icons.get( Icons.CLOSE ) ) {
|
|
protected void onClick() {
|
|
onClose();
|
|
};
|
|
};
|
|
add( close );
|
|
|
|
text = PixelScene.createMultiline(8);
|
|
add( text );
|
|
}
|
|
|
|
@Override
|
|
protected void layout() {
|
|
super.layout();
|
|
|
|
bg.x = x;
|
|
bg.y = y;
|
|
bg.size( width, height );
|
|
|
|
close.setPos(
|
|
bg.x + bg.width() - bg.marginHor() / 2 - MARGIN_HOR - close.width(),
|
|
y + (height - close.height()) / 2 );
|
|
|
|
text.x = close.left() - MARGIN_HOR - text.width();
|
|
text.y = y + (height - text.height()) / 2;
|
|
}
|
|
|
|
public void text( String txt ) {
|
|
text.text( txt );
|
|
text.measure();
|
|
}
|
|
|
|
protected void onClose() {};
|
|
}
|