X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTRadioGroup.java;h=365c074e99b3655671ba2e2e38282f83a88831ad;hb=0d47c5460c8e9d1198928308767a63ad35f46eb8;hp=c1b652352d1b4b36049be132fed9fa229d96382e;hpb=00d2622b0fff2411dc81ee2a0cc43a5f3f52564c;p=fanfix.git diff --git a/src/jexer/TRadioGroup.java b/src/jexer/TRadioGroup.java index c1b6523..365c074 100644 --- a/src/jexer/TRadioGroup.java +++ b/src/jexer/TRadioGroup.java @@ -65,7 +65,7 @@ public final class TRadioGroup extends TWidget { * @param button new button that became selected */ void setSelected(final TRadioButton button) { - assert (button.getSelected()); + assert (button.isSelected()); if (selectedButton != null) { selectedButton.setSelected(false); } @@ -84,13 +84,9 @@ public final class TRadioGroup extends TWidget { final String label) { // Set parent and window - super(parent); + super(parent, x, y, label.length() + 4, 2); - setX(x); - setY(y); - setHeight(2); this.label = label; - setWidth(label.length() + 4); } /** @@ -100,7 +96,7 @@ public final class TRadioGroup extends TWidget { public void draw() { CellAttributes radioGroupColor; - if (getAbsoluteActive()) { + if (isAbsoluteActive()) { radioGroupColor = getTheme().getColor("tradiogroup.active"); } else { radioGroupColor = getTheme().getColor("tradiogroup.inactive"); @@ -110,7 +106,7 @@ public final class TRadioGroup extends TWidget { radioGroupColor, radioGroupColor, 3, false); getScreen().hLineXY(1, 0, label.length() + 2, ' ', radioGroupColor); - getScreen().putStrXY(2, 0, label, radioGroupColor); + getScreen().putStringXY(2, 0, label, radioGroupColor); } /**