OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cursorPatch
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
TextArea.java
253
protected void drawCursor (Drawable
cursorPatch
, Batch batch, BitmapFont font, float x, float y) {
256
cursorPatch
.draw(batch, x + textOffset + fontOffset + font.getData().cursorX,
257
y - font.getDescent() / 2 - (cursorLine - firstLineShowing + 1) * font.getLineHeight(),
cursorPatch
.getMinWidth(),
TextField.java
278
final Drawable
cursorPatch
= style.cursor;
321
if (cursorOn &&
cursorPatch
!= null) {
322
drawCursor(
cursorPatch
, batch, font, x + bgLeftWidth, y + textY);
350
protected void drawCursor (Drawable
cursorPatch
, Batch batch, BitmapFont font, float x, float y) {
351
cursorPatch
.draw(batch,
353
y - textHeight - font.getDescent(),
cursorPatch
.getMinWidth(), textHeight);
[
all
...]
Completed in 44 milliseconds