/** * Copyright (c) 2014 - 2017 Frank Appel * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Frank Appel - initial API and implementation */ package com.codeaffine.eclipse.swt.widget.scrollable; import static com.codeaffine.eclipse.swt.widget.scrollable.context.AdaptionContext.OVERLAY_OFFSET; import static com.codeaffine.eclipse.swt.widget.scrollbar.FlatScrollBar.BAR_BREADTH; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.graphics.Rectangle; import org.eclipse.swt.widgets.Scrollable; import com.codeaffine.eclipse.swt.widget.scrollable.context.AdaptionContext; class AdaptionContextHelper { static final int STUB_VERTICAL_BAR_OFFSET = OVERLAY_OFFSET - BAR_BREADTH; static final int OFFSET = 0; static final int BORDER_WIDTH = 2; static final int BORDER_ADJUSTMENT = BORDER_WIDTH * 2; enum Horizontal { H_VISIBLE( true ), H_INVISIBLE( false ); final boolean value; Horizontal( boolean value ) { this.value = value; } } enum Vertical { V_VISIBLE( true ), V_INVISIBLE( false ); final boolean value; Vertical( boolean value ) { this.value = value; } } static AdaptionContext<Scrollable> stubContext( Vertical vBarVisible, Horizontal hBarVisible, Point preferredSize, Rectangle area, Demeanor demeanor ) { @SuppressWarnings("unchecked") AdaptionContext<Scrollable> result = mock( AdaptionContext.class ); when( result.isVerticalBarVisible() ).thenReturn( vBarVisible.value ); when( result.isHorizontalBarVisible() ).thenReturn( hBarVisible.value ); when( result.getPreferredSize() ).thenReturn( preferredSize ); when( result.getVerticalBarOffset() ).thenReturn( STUB_VERTICAL_BAR_OFFSET ); when( result.getOffset() ).thenReturn( OFFSET ); when( result.getBorderWidth() ).thenReturn( BORDER_WIDTH ); when( result.getVisibleArea() ) .thenReturn( new Rectangle( area.x, area.y, area.width + BORDER_ADJUSTMENT, area.height + BORDER_ADJUSTMENT ) ); when( result.getOriginOfScrollableOrdinates() ) .thenReturn( new Point( area.x - BORDER_WIDTH, area.y - BORDER_WIDTH ) ); when( result.get( Demeanor.class ) ).thenReturn( demeanor ); return result; } }