/******************************************************************************* * Copyright (c) 2000, 2017 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.internal.cocoa; public class NSClipView extends NSView { public NSClipView() { super(); } public NSClipView(long /*int*/ id) { super(id); } public NSClipView(id id) { super(id); } public boolean copiesOnScroll() { return OS.objc_msgSend_bool(this.id, OS.sel_copiesOnScroll); } public NSCursor documentCursor() { long /*int*/ result = OS.objc_msgSend(this.id, OS.sel_documentCursor); return result != 0 ? new NSCursor(result) : null; } public void scrollToPoint(NSPoint newOrigin) { OS.objc_msgSend(this.id, OS.sel_scrollToPoint_, newOrigin); } public void setCopiesOnScroll(boolean copiesOnScroll) { OS.objc_msgSend(this.id, OS.sel_setCopiesOnScroll_, copiesOnScroll); } public void setDocumentCursor(NSCursor documentCursor) { OS.objc_msgSend(this.id, OS.sel_setDocumentCursor_, documentCursor != null ? documentCursor.id : 0); } public void setDrawsBackground(boolean drawsBackground) { OS.objc_msgSend(this.id, OS.sel_setDrawsBackground_, drawsBackground); } }