org.eclipse.swt.widgets.DateTime.getSelection()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(243)

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

DateTime.getSelection介绍

[英]returns selected text
[中]返回所选文本

代码示例

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

void onTextMouseClick (GdkEventButton event) {
  Point sel = getSelection ();
  for (int i = 0; i < fieldCount; i++) {
    if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) {
      currentField = i;
      break;
    }
  }
  selectField (currentField);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

void onTextMouseClick (GdkEventButton event) {
  Point sel = getSelection ();
  for (int i = 0; i < fieldCount; i++) {
    if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) {
      currentField = i;
      break;
    }
  }
  selectField (currentField);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

void onTextMouseClick (GdkEventButton event) {
  Point sel = getSelection ();
  for (int i = 0; i < fieldCount; i++) {
    if (sel.x >= fieldIndices[i].x && sel.x <= fieldIndices[i].y) {
      currentField = i;
      break;
    }
  }
  selectField (currentField);
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc

void selectField (int index) {
  if (index != currentField) {
    commitCurrentField ();
  }
  final int start = fieldIndices[index].x;
  final int end = fieldIndices[index].y;
  Point pt = getSelection ();
  if (index == currentField && start == pt.x && end == pt.y) {
    return;
  }
  currentField = index;
  display.syncExec (new Runnable () {
    @Override
    public void run () {
      if (textEntryHandle != 0) {
        String value = getText (getText (),start, end - 1);
        int s = value.lastIndexOf (' ');
        s = (s == -1) ? start : start + s + 1;
        setSelection (s, end);
      }
    }
  });
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc

void selectField (int index) {
  if (index != currentField) {
    commitCurrentField ();
  }
  final int start = fieldIndices[index].x;
  final int end = fieldIndices[index].y;
  Point pt = getSelection ();
  if (index == currentField && start == pt.x && end == pt.y) {
    return;
  }
  currentField = index;
  display.syncExec (new Runnable () {
    @Override
    public void run () {
      if (textEntryHandle != 0) {
        String value = getText (getText (),start, end - 1);
        int s = value.lastIndexOf (' ');
        s = (s == -1) ? start : start + s + 1;
        setSelection (s, end);
      }
    }
  });
}

代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x

void selectField (int index) {
  if (index != currentField) {
    commitCurrentField ();
  }
  final int start = fieldIndices[index].x;
  final int end = fieldIndices[index].y;
  Point pt = getSelection ();
  if (index == currentField && start == pt.x && end == pt.y) {
    return;
  }
  currentField = index;
  display.syncExec (new Runnable () {
    @Override
    public void run () {
      if (textEntryHandle != 0) {
        String value = getText (getText (),start, end - 1);
        int s = value.lastIndexOf (' ');
        s = (s == -1) ? start : start + s + 1;
        setSelection (s, end);
      }
    }
  });
}

相关文章

DateTime类方法