X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fsession%2FAWTSessionInfo.java;h=088da9e009ea3c459163124008cab2b57a804f60;hb=87a17f3ca4b2602c396afdbb13cccb4c1e7cbd38;hp=5a806cfd36a86c8d73e962b800ab273bccb4135c;hpb=30bd4abd2a85c162bdf0a1cc687b366345182bc1;p=nikiroo-utils.git diff --git a/src/jexer/session/AWTSessionInfo.java b/src/jexer/session/AWTSessionInfo.java index 5a806cf..088da9e 100644 --- a/src/jexer/session/AWTSessionInfo.java +++ b/src/jexer/session/AWTSessionInfo.java @@ -162,26 +162,4 @@ public final class AWTSessionInfo implements SessionInfo { } - /** - * Convert pixel column position to text cell column position. - * - * @param x pixel column position - * @return text cell column position - */ - public int textColumn(final int x) { - Insets insets = frame.getInsets(); - return ((x - insets.left) / textWidth); - } - - /** - * Convert pixel row position to text cell row position. - * - * @param y pixel row position - * @return text cell row position - */ - public int textRow(final int y) { - Insets insets = frame.getInsets(); - return ((y - insets.top) / textHeight); - } - }