blob: 30cabb8eec3f8f16ecd9dafe96521d1ec4a109d0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.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
*
* @since 3.5
*/
public interface ILayoutConstants {
public static final int DEFAULT_DESCRIPTION_HEIGHT = 3;
public static final int DEFAULT_SITEDETAILS_HEIGHT = 2;
public static final int DEFAULT_COLUMN_WIDTH = 60;
public static final int DEFAULT_SMALL_COLUMN_WIDTH = 20;
public static final int DEFAULT_TABLE_HEIGHT = 15;
public static final int DEFAULT_TABLE_WIDTH = 120;
}