gpt4 book ai didi

com.koolearn.klibrary.text.view.ZLTextRegion类的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 11:53:10 27 4
gpt4 key购买 nike

本文整理了Java中com.koolearn.klibrary.text.view.ZLTextRegion类的一些代码示例,展示了ZLTextRegion类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLTextRegion类的具体详情如下:
包路径:com.koolearn.klibrary.text.view.ZLTextRegion
类名称:ZLTextRegion

ZLTextRegion介绍

暂无

代码示例

代码示例来源:origin: ydcx/KooReader

boolean isAtRightOf(ZLTextRegion other) {
  return
      other == null ||
          getFirstArea().XStart >= other.getLastArea().XEnd;
}

代码示例来源:origin: Jiangzqts/EpubRead

public boolean accepts(ZLTextRegion region) {
    final Soul soul = region.getSoul();
    return
        soul instanceof ZLTextImageRegionSoul ||
            soul instanceof ZLTextHyperlinkRegionSoul;
  }
};

代码示例来源:origin: ydcx/KooReader

myReader.getViewWidget().reset();
myReader.getViewWidget().repaint();
myReader.runAction(ActionCode.OPEN_VIDEO, (ZLTextVideoRegionSoul) videoRegion.getSoul());
return;
final ZLTextRegion.Soul soul = region.getSoul();
if (soul instanceof ZLTextImageRegionSoul) { //y 如果选的是图片的
  String url = ((ZLTextImageRegionSoul) soul).ImageElement.URL;
  if (!OpenPhotoAction.isOpen) { // 防止多次点击
    OpenPhotoAction.openImage(url, region.getLeft(), region.getTop(), region.getRight(), region.getBottom());
    return;

代码示例来源:origin: Jiangzqts/EpubRead

public boolean add(ZLTextElementArea area) {
  synchronized (myAreas) {
    if (myCurrentElementRegion != null
      && myCurrentElementRegion.getSoul().accepts(area)) {
      myCurrentElementRegion.extend();
    } else {
      ZLTextRegion.Soul soul = null;
      final ZLTextHyperlink hyperlink = area.Style.Hyperlink;
      if (hyperlink.Id != null) {
        soul = new ZLTextHyperlinkRegionSoul(area, hyperlink);
      } else if (area.Element instanceof ZLTextImageElement) {
        soul = new ZLTextImageRegionSoul(area, (ZLTextImageElement)area.Element);
      } else if (area.Element instanceof ZLTextVideoElement) {
        soul = new ZLTextVideoRegionSoul(area, (ZLTextVideoElement)area.Element);
      } else if (area.Element instanceof ZLTextWord && !((ZLTextWord)area.Element).isASpace()) {
        soul = new ZLTextWordRegionSoul(area, (ZLTextWord)area.Element);
      } else if (area.Element instanceof ExtensionElement) {
        soul = new ExtensionRegionSoul(area, (ExtensionElement)area.Element);
      }
      if (soul != null) {
        myCurrentElementRegion = new ZLTextRegion(soul, myAreas, myAreas.size());
        myElementRegions.add(myCurrentElementRegion);
      } else {
        myCurrentElementRegion = null;
      }
    }
    return myAreas.add(area);
  }
}

代码示例来源:origin: ydcx/KooReader

public int getBottom() {
  return getLastArea().YEnd;
}

代码示例来源:origin: Jiangzqts/EpubRead

public int getTop() {
  return getFirstArea().YStart;
}

代码示例来源:origin: Jiangzqts/EpubRead

ZLTextRegion findRegion(int x, int y, int maxDistance, ZLTextRegion.Filter filter) {
  ZLTextRegion bestRegion = null;
  int distance = maxDistance + 1;
  synchronized (myAreas) {
    for (ZLTextRegion region : myElementRegions) {
      if (filter.accepts(region)) {
        final int d = region.distanceTo(x, y);
        if (d < distance) {
          bestRegion = region;
          distance = d;
        }
      }
    }
  }
  return bestRegion;
}

代码示例来源:origin: Jiangzqts/EpubRead

myReader.getViewWidget().reset();
myReader.getViewWidget().repaint();
myReader.runAction(ActionCode.OPEN_VIDEO, (ZLTextVideoRegionSoul) videoRegion.getSoul());
return;
final ZLTextRegion.Soul soul = region.getSoul();
if (soul instanceof ZLTextImageRegionSoul) { //y 如果选的是图片的
  String url = ((ZLTextImageRegionSoul) soul).ImageElement.URL;
  if (!OpenPhotoAction.isOpen) { // 防止多次点击
    OpenPhotoAction.openImage(url, region.getLeft(), region.getTop(), region.getRight(), region.getBottom());
    return;

代码示例来源:origin: ydcx/KooReader

public boolean add(ZLTextElementArea area) {
  synchronized (myAreas) {
    if (myCurrentElementRegion != null
      && myCurrentElementRegion.getSoul().accepts(area)) {
      myCurrentElementRegion.extend();
    } else {
      ZLTextRegion.Soul soul = null;
      final ZLTextHyperlink hyperlink = area.Style.Hyperlink;
      if (hyperlink.Id != null) {
        soul = new ZLTextHyperlinkRegionSoul(area, hyperlink);
      } else if (area.Element instanceof ZLTextImageElement) {
        soul = new ZLTextImageRegionSoul(area, (ZLTextImageElement)area.Element);
      } else if (area.Element instanceof ZLTextVideoElement) {
        soul = new ZLTextVideoRegionSoul(area, (ZLTextVideoElement)area.Element);
      } else if (area.Element instanceof ZLTextWord && !((ZLTextWord)area.Element).isASpace()) {
        soul = new ZLTextWordRegionSoul(area, (ZLTextWord)area.Element);
      } else if (area.Element instanceof ExtensionElement) {
        soul = new ExtensionRegionSoul(area, (ExtensionElement)area.Element);
      }
      if (soul != null) {
        myCurrentElementRegion = new ZLTextRegion(soul, myAreas, myAreas.size());
        myElementRegions.add(myCurrentElementRegion);
      } else {
        myCurrentElementRegion = null;
      }
    }
    return myAreas.add(area);
  }
}

代码示例来源:origin: Jiangzqts/EpubRead

public int getBottom() {
  return getLastArea().YEnd;
}

代码示例来源:origin: ydcx/KooReader

public int getTop() {
  return getFirstArea().YStart;
}

代码示例来源:origin: ydcx/KooReader

ZLTextRegion findRegion(int x, int y, int maxDistance, ZLTextRegion.Filter filter) {
  ZLTextRegion bestRegion = null;
  int distance = maxDistance + 1;
  synchronized (myAreas) {
    for (ZLTextRegion region : myElementRegions) {
      if (filter.accepts(region)) {
        final int d = region.distanceTo(x, y);
        if (d < distance) {
          bestRegion = region;
          distance = d;
        }
      }
    }
  }
  return bestRegion;
}

代码示例来源:origin: ydcx/KooReader

public boolean accepts(ZLTextRegion region) {
    final Soul soul = region.getSoul();
    return
        soul instanceof ZLTextImageRegionSoul ||
            soul instanceof ZLTextHyperlinkRegionSoul;
  }
};

代码示例来源:origin: ydcx/KooReader

boolean isUnder(ZLTextRegion other) {
  return
      other == null ||
          getFirstArea().YStart >= other.getLastArea().YEnd;
}

代码示例来源:origin: ydcx/KooReader

@Override
public ZLTextElementArea getEndArea(ZLTextPage page) {
  if (isEmpty()) {
    return null;
  }
  final ZLTextElementAreaVector vector = page.TextElementMap;
  final ZLTextRegion region = vector.getRegion(myRightMostRegionSoul);
  if (region != null) {
    return region.getLastArea();
  }
  final ZLTextElementArea lastArea = vector.getLastArea();
  if (lastArea != null && myRightMostRegionSoul.compareTo(lastArea) >= 0) {
    return lastArea;
  }
  return null;
}

代码示例来源:origin: ydcx/KooReader

@Override
public ZLTextElementArea getStartArea(ZLTextPage page) {
  if (isEmpty()) {
    return null;
  }
  final ZLTextElementAreaVector vector = page.TextElementMap;
  final ZLTextRegion region = vector.getRegion(myLeftMostRegionSoul);
  if (region != null) {
    return region.getFirstArea();
  }
  final ZLTextElementArea firstArea = vector.getFirstArea();
  if (firstArea != null && myLeftMostRegionSoul.compareTo(firstArea) <= 0) {
    return firstArea;
  }
  return null;
}

代码示例来源:origin: Jiangzqts/EpubRead

public boolean accepts(ZLTextRegion region) {
    return region.getSoul() instanceof ExtensionRegionSoul;
  }
};

代码示例来源:origin: Jiangzqts/EpubRead

boolean isAtRightOf(ZLTextRegion other) {
  return
      other == null ||
          getFirstArea().XStart >= other.getLastArea().XEnd;
}

代码示例来源:origin: Jiangzqts/EpubRead

@Override
public ZLTextElementArea getEndArea(ZLTextPage page) {
  if (isEmpty()) {
    return null;
  }
  final ZLTextElementAreaVector vector = page.TextElementMap;
  final ZLTextRegion region = vector.getRegion(myRightMostRegionSoul);
  if (region != null) {
    return region.getLastArea();
  }
  final ZLTextElementArea lastArea = vector.getLastArea();
  if (lastArea != null && myRightMostRegionSoul.compareTo(lastArea) >= 0) {
    return lastArea;
  }
  return null;
}

代码示例来源:origin: Jiangzqts/EpubRead

@Override
public ZLTextElementArea getStartArea(ZLTextPage page) {
  if (isEmpty()) {
    return null;
  }
  final ZLTextElementAreaVector vector = page.TextElementMap;
  final ZLTextRegion region = vector.getRegion(myLeftMostRegionSoul);
  if (region != null) {
    return region.getFirstArea();
  }
  final ZLTextElementArea firstArea = vector.getFirstArea();
  if (firstArea != null && myLeftMostRegionSoul.compareTo(firstArea) <= 0) {
    return firstArea;
  }
  return null;
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com