Project

General

Profile

Download (1.06 KB) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright 2005, CHISEL Group, University of Victoria, Victoria, BC, Canada.
3
 * All rights reserved. This program and the accompanying materials are made
4
 * available under the terms of the Eclipse Public License v1.0 which
5
 * accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 * 
8
 * Contributors: The Chisel Group, University of Victoria
9
 *******************************************************************************/
10
package org.eclipse.zest.layouts;
11

    
12
/**
13
 * @author Ian Bull
14
 */
15
public interface LayoutStyles {
16

    
17
	/** Default layout style constant. */
18
	public final static int NONE = 0x00;
19

    
20
	/** 
21
	 * Layout constant indicating that the layout algorithm 
22
	 * should NOT resize any of the nodes.
23
	 */
24
	public final static int NO_LAYOUT_NODE_RESIZING = 0x01;
25

    
26
	/**
27
	 * Some layouts may prefer to expand their bounds beyond those of the requested bounds. This
28
	 * flag asks the layout not to do so.
29
	 */
30
	public static final int ENFORCE_BOUNDS = 0X02;
31

    
32
}
(10-10/12)