All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.internal.win32.MINMAXINFO Maven / Gradle / Ivy

Go to download

SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2008 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.win32;

public class MINMAXINFO {
//	POINT ptReserved;
	/** @field accessor=ptReserved.x */
	public int ptReserved_x;
	/** @field accessor=ptReserved.y */
	public int ptReserved_y;
//	POINT ptMaxSize;
	/** @field accessor=ptMaxSize.x */
	public int ptMaxSize_x;
	/** @field accessor=ptMaxSize.y */
	public int ptMaxSize_y;
//	POINT ptMaxPosition;
	/** @field accessor=ptMaxPosition.x */
	public int ptMaxPosition_x;
	/** @field accessor=ptMaxPosition.y */
	public int ptMaxPosition_y;
//	POINT ptMinTrackSize;
	/** @field accessor=ptMinTrackSize.x */
	public int ptMinTrackSize_x;
	/** @field accessor=ptMinTrackSize.y */
	public int ptMinTrackSize_y;
//	POINT ptMaxTrackSize;
	/** @field accessor=ptMaxTrackSize.x */
	public int ptMaxTrackSize_x;
	/** @field accessor=ptMaxTrackSize.y */
	public int ptMaxTrackSize_y;
	public static final int sizeof = OS.MINMAXINFO_sizeof ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy