30 lines
1.5 KiB
Java
30 lines
1.5 KiB
Java
/*
|
|
* Copyright (c) 2003,2009 Declarative Engineering LLC.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Declarative Engineering LLC
|
|
* verson 1 which accompanies this distribution, and is available at
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
|
*/
|
|
package com.foundation.tcv.swt;
|
|
|
|
import org.eclipse.swt.SWT;
|
|
|
|
public interface IContainer extends IScrollableComponent {
|
|
public static final int STYLE_NO_BACKGROUND = SWT.NO_BACKGROUND;
|
|
public static final int STYLE_NO_FOCUS = SWT.NO_FOCUS;
|
|
public static final int STYLE_NO_MERGE_PAINTS = SWT.NO_MERGE_PAINTS;
|
|
public static final int STYLE_NO_REDRAW_RESIZE = SWT.NO_REDRAW_RESIZE;
|
|
public static final int STYLE_NO_RADIO_GROUP = SWT.NO_RADIO_GROUP;
|
|
public static final int STYLE_EMBEDDED = SWT.EMBEDDED;
|
|
public static final int STYLE_DOUBLE_BUFFERED = SWT.DOUBLE_BUFFERED;
|
|
|
|
public static final int INHERIT_NONE = 0;
|
|
public static final int INHERIT_DEFAULT = 1;
|
|
public static final int INHERIT_FORCE = 2;
|
|
|
|
public static final int MESSAGE_LAYOUT = IScrollableComponent.LAST_MESSAGE_NUMBER + 1;
|
|
public static final int MESSAGE_SET_TAB_ORDER = IScrollableComponent.LAST_MESSAGE_NUMBER + 2;
|
|
public static final int MESSAGE_CENTER = IScrollableComponent.LAST_MESSAGE_NUMBER + 3;
|
|
public static final int MESSAGE_INHERIT_BACKGROUND = IScrollableComponent.LAST_MESSAGE_NUMBER + 4;
|
|
public static final int LAST_MESSAGE_NUMBER = IScrollableComponent.LAST_MESSAGE_NUMBER + 4;
|
|
}//IContainer// |