本文整理汇总了Java中org.eclipse.swt.SWT.UP属性的典型用法代码示例。如果您正苦于以下问题:Java SWT.UP属性的具体用法?Java SWT.UP怎么用?Java SWT.UP使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.swt.SWT
的用法示例。
在下文中一共展示了SWT.UP属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: widgetSelected
@Override
public void widgetSelected ( final SelectionEvent e )
{
final Table table = this.tableViewer.getTable ();
final TableColumn newColumn = (TableColumn)e.widget;
final TableColumn currentColumn = table.getSortColumn ();
final int currentDir = table.getSortDirection ();
int newDir = SWT.UP;
if ( newColumn == currentColumn )
{
newDir = currentDir == SWT.UP ? SWT.DOWN : SWT.UP;
}
else
{
table.setSortColumn ( newColumn );
}
table.setSortDirection ( newDir );
this.tableViewer.setSorter ( new Sorter ( (Columns)newColumn.getData ( COLUMN_KEY ), newDir ) );
}
示例2: widgetSelected
@Override
public void widgetSelected ( final SelectionEvent e )
{
final Table table = this.tableViewer.getTable ();
final TableColumn newColumn = (TableColumn)e.widget;
final TableColumn currentColumn = table.getSortColumn ();
final EventTableColumn column = (EventTableColumn)newColumn.getData ( COLUMN_KEY );
if ( column == EventTableColumn.reservedColumnSourceTimestamp || column == EventTableColumn.reservedColumnEntryTimestamp )
{
final int currentDir = table.getSortDirection ();
int newDir = SWT.UP;
if ( newColumn == currentColumn )
{
newDir = currentDir == SWT.UP ? SWT.DOWN : SWT.UP;
}
else
{
table.setSortColumn ( newColumn );
}
table.setSortDirection ( newDir );
this.tableViewer.setSorter ( new EventTableSorter ( column, newDir ) );
}
}
示例3: canContinue
private boolean canContinue() {
if (shell == null || shell.isDisposed())
return false;
if (shellBounds == null)
return true;
//System.out.println((slideIn ? "In" : "Out") + ";" + direction + ";S:" + shellBounds + ";" + endBounds);
if (slideIn) {
if (direction == SWT.UP) {
return shellBounds.y > endBounds.y;
}
// TODO: Other directions
} else {
if (direction == SWT.RIGHT) {
// stop early, because some OSes have trim, and won't allow the window
// to go smaller than it.
return shellBounds.width > 10;
}
}
return false;
}
示例4: selectSortColumn
private void selectSortColumn(TreeColumn column, int columnIndex) {
TreeColumn prevSortColumn = getTree().getSortColumn();
int sortDirection = SWT.DOWN;
if (prevSortColumn != null) {
int prevSortDirection = getTree().getSortDirection();
if (column.equals(prevSortColumn)) {
sortDirection = prevSortDirection == SWT.UP ? SWT.DOWN : SWT.UP;
getTree().setSortDirection(sortDirection);
} else {
getTree().setSortColumn(column);
getTree().setSortDirection(SWT.DOWN);
}
} else {
getTree().setSortColumn(column);
getTree().setSortDirection(SWT.DOWN);
}
int fSortDirection = sortDirection;
sortColumnSelectionListeners.forEach(listener -> listener.didSelectSortColumn(column, columnIndex, fSortDirection));
}
示例5: getDirection
public int getDirection() {
return direction == 1 ? SWT.DOWN : SWT.UP;
}