41 lines
2.3 KiB
Java
41 lines
2.3 KiB
Java
/*
|
|
* Copyright (c) 2003,2007 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 IButton extends IComponent {
|
|
public static final int STYLE_ARROW = SWT.ARROW;
|
|
public static final int STYLE_CHECK = SWT.CHECK;
|
|
public static final int STYLE_PUSH = SWT.PUSH;
|
|
public static final int STYLE_RADIO = SWT.RADIO;
|
|
public static final int STYLE_TOGGLE = SWT.TOGGLE;
|
|
public static final int STYLE_FLAT = SWT.FLAT;
|
|
public static final int STYLE_LEFT = SWT.LEFT;
|
|
public static final int STYLE_RIGHT = SWT.RIGHT;
|
|
public static final int STYLE_CENTER = SWT.CENTER;
|
|
public static final int STYLE_UP = SWT.UP;
|
|
public static final int STYLE_DOWN = SWT.DOWN;
|
|
|
|
public static final int MESSAGE_SET_TEXT = IComponent.LAST_MESSAGE_NUMBER + 1;
|
|
public static final int MESSAGE_SET_IMAGE = IComponent.LAST_MESSAGE_NUMBER + 2;
|
|
public static final int MESSAGE_SET_ACCELERATOR = IComponent.LAST_MESSAGE_NUMBER + 3;
|
|
public static final int MESSAGE_SET_IS_SELECTED = IComponent.LAST_MESSAGE_NUMBER + 4;
|
|
public static final int MESSAGE_VIEW_REFRESH_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 5;
|
|
public static final int MESSAGE_VIEW_SYNCHRONIZE_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 6;
|
|
public static final int MESSAGE_SET_AUTO_SYNCHRONIZE_SELECTION = IComponent.LAST_MESSAGE_NUMBER + 7;
|
|
public static final int MESSAGE_SET_AUTO_SYNCHRONIZE_SELECTION_DELAY = IComponent.LAST_MESSAGE_NUMBER + 8;
|
|
public static final int MESSAGE_ADD_SELECTION_LINK = IComponent.LAST_MESSAGE_NUMBER + 9;
|
|
public static final int MESSAGE_SET_BLOCK_ON_SELECTIONS = IComponent.LAST_MESSAGE_NUMBER + 10;
|
|
public static final int LAST_MESSAGE_NUMBER = IComponent.LAST_MESSAGE_NUMBER + 10;
|
|
|
|
public static final int LINK_TARGET_SELECTION = IComponent.LAST_LINK_TARGET + 1;
|
|
public static final int LINK_TARGET_IMAGE = IComponent.LAST_LINK_TARGET + 2;
|
|
public static final int LINK_TARGET_TEXT = IComponent.LAST_LINK_TARGET + 3;
|
|
public static final int LAST_LINK_TARGET = IComponent.LAST_LINK_TARGET + 3;
|
|
}//IButton// |