22 lines
1.1 KiB
Java
22 lines
1.1 KiB
Java
|
|
/*
|
||
|
|
* Copyright (c) 2005,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 ITabPanel extends IContainer {
|
||
|
|
public static final int STYLE_TOP = SWT.TOP;
|
||
|
|
public static final int STYLE_BOTTOM = SWT.BOTTOM;
|
||
|
|
|
||
|
|
public static final int MESSAGE_ADD_TAB = IContainer.LAST_MESSAGE_NUMBER + 1;
|
||
|
|
public static final int MESSAGE_REMOVE_TAB = IContainer.LAST_MESSAGE_NUMBER + 2;
|
||
|
|
public static final int MESSAGE_REPOSITION_TAB = IContainer.LAST_MESSAGE_NUMBER + 3;
|
||
|
|
/** Requests the client sort a subset of the tabs. The first parameter is the index of the first sorted tab. The second parameter is an integer array mapping to be used for the sort. */
|
||
|
|
public static final int MESSAGE_SORT_TABS = IContainer.LAST_MESSAGE_NUMBER + 4;
|
||
|
|
public static final int LAST_MESSAGE_NUMBER = IContainer.LAST_MESSAGE_NUMBER + 4;
|
||
|
|
}//ITabPanel//
|