當前位置: 首頁>>代碼示例>>Java>>正文


Java SWT.UP屬性代碼示例

本文整理匯總了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 ) );
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:20,代碼來源:MonitorsViewTable.java

示例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 ) );
    }
}
 
開發者ID:eclipse,項目名稱:neoscada,代碼行數:24,代碼來源:EventViewTable.java

示例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;
}
 
開發者ID:BiglySoftware,項目名稱:BiglyBT,代碼行數:22,代碼來源:ShellSlider.java

示例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));
}
 
開發者ID:technology16,項目名稱:pgsqlblocks,代碼行數:19,代碼來源:TMTreeViewer.java

示例5: getDirection

public int getDirection() {
	return direction == 1 ? SWT.DOWN : SWT.UP;
}
 
開發者ID:gw4e,項目名稱:gw4e.project,代碼行數:3,代碼來源:CustomProperties.java


注:本文中的org.eclipse.swt.SWT.UP屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。