本文整理了Java中org.eclipse.swt.widgets.DateTime.incrementField()
方法的一些代码示例,展示了DateTime.incrementField()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DateTime.incrementField()
方法的具体详情如下:
包路径:org.eclipse.swt.widgets.DateTime
类名称:DateTime
方法名:incrementField
暂无
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
/**
* Output signal is called when Spinner's arrow buttons are triggered,
* usually by clicking the mouse on the [gtk2: up/down] [gtk3: +/-] buttons.
* On every click output is called twice presenting current and previous value.
* This method compares two values and determines if Up or down arrow was called.
*/
@Override
long /*int*/ gtk_output (long /*int*/ widget) {
if (calendar == null) {
return 0; //Guard: Object not fully initialized yet.
}
int arrowType = getArrow (widget);
switch (arrowType) {
case SWT.ARROW_UP: //Gtk2 arrow up. Gtk3 "+" button.
commitCurrentField ();
incrementField (+1);
break;
case SWT.ARROW_DOWN: //Gtk2 arrow down. Gtk3 "-" button.
commitCurrentField ();
incrementField (-1);
break;
}
return 1;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
/**
* Output signal is called when Spinner's arrow buttons are triggered,
* usually by clicking the mouse on the [gtk2: up/down] [gtk3: +/-] buttons.
* On every click output is called twice presenting current and previous value.
* This method compares two values and determines if Up or down arrow was called.
*/
@Override
int /*long*/ gtk_output (int /*long*/ widget) {
if (calendar == null) {
return 0; //Guard: Object not fully initialized yet.
}
int arrowType = getArrow (widget);
switch (arrowType) {
case SWT.ARROW_UP: //Gtk2 arrow up. Gtk3 "+" button.
commitCurrentField ();
incrementField (+1);
break;
case SWT.ARROW_DOWN: //Gtk2 arrow down. Gtk3 "-" button.
commitCurrentField ();
incrementField (-1);
break;
}
return 1;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
/**
* Output signal is called when Spinner's arrow buttons are triggered,
* usually by clicking the mouse on the [gtk2: up/down] [gtk3: +/-] buttons.
* On every click output is called twice presenting current and previous value.
* This method compares two values and determines if Up or down arrow was called.
*/
@Override
int /*long*/ gtk_output (int /*long*/ widget) {
if (calendar == null) {
return 0; //Guard: Object not fully initialized yet.
}
int arrowType = getArrow (widget);
switch (arrowType) {
case SWT.ARROW_UP: //Gtk2 arrow up. Gtk3 "+" button.
commitCurrentField ();
incrementField (+1);
break;
case SWT.ARROW_DOWN: //Gtk2 arrow down. Gtk3 "-" button.
commitCurrentField ();
incrementField (-1);
break;
}
return 1;
}
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.aix.ppc
case OS.GDK_Up:
case OS.GDK_KP_Up:
incrementField (+1);
commitCurrentField ();
break;
case OS.GDK_Down:
case OS.GDK_KP_Down:
incrementField (-1);
commitCurrentField ();
break;
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.ppc
case OS.GDK_Up:
case OS.GDK_KP_Up:
incrementField (+1);
commitCurrentField ();
break;
case OS.GDK_Down:
case OS.GDK_KP_Down:
incrementField (-1);
commitCurrentField ();
break;
代码示例来源:origin: org.eclipse.platform/org.eclipse.swt.gtk.linux.s390x
case OS.GDK_Up:
case OS.GDK_KP_Up:
incrementField (+1);
commitCurrentField ();
break;
case OS.GDK_Down:
case OS.GDK_KP_Down:
incrementField (-1);
commitCurrentField ();
break;
内容来源于网络,如有侵权,请联系作者删除!