blob: 14659810e1bda9c31160c66aa471f03d2253ec6c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.dialogs;
/**
* ILayoutConstants defines common dialog constants used when laying
* out dialogs. Units of measurement are character widths and heights
* unless otherwise specified.
*
* This interface is not intended to be implemented
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @since 3.5
*/
public interface ILayoutConstants {
public static final int DEFAULT_DESCRIPTION_HEIGHT = 4;
public static final int MINIMUM_DESCRIPTION_HEIGHT = 1;
public static final int DEFAULT_SITEDETAILS_HEIGHT = 2;
public static final int DEFAULT_PRIMARY_COLUMN_WIDTH = 60;
public static final int DEFAULT_COLUMN_WIDTH = 40;
public static final int DEFAULT_SMALL_COLUMN_WIDTH = 20;
public static final int DEFAULT_TABLE_HEIGHT = 10;
public static final int DEFAULT_TABLE_WIDTH = 80;
public static final int[] IUS_TO_DETAILS_WEIGHTS = new int[] {80, 20};
}