com.swfm.mica.core
Interface MiiActionTypes
- All Known Subinterfaces:
- MiiAction, MiiActionNames
- All Known Implementing Classes:
- MiAction, MiActionCallback, MiActionManager, MiAutoAdjustShapeAroundTextActionHandler, MiColorChooser, MiConnectMenuCommands, MiDeletePartsCommand, MiDockingPanelManager, MiDrawingGrid, MiEditMenuCommands, MiEditor, MiEditorBackgroundMenuCommands, MiEditorPalette, MiEditorStatusBar, MiFontChooser, MiGeneralAttributesDialog, MiGraphicsBaseViewManager, MiGraphicsViewManager, MiGraphMenuCommands, MiGroupPartsCommand, MiHelpViewer, MiHierarchicalInspector, MiIClickAndDrop, MiIconifyPartsCommand, MiICreateConnection, MiICreateConnectionUsingConnPoint, MiICreateMultiPointObject, MiICreateObject, MiICreateSelectDeleteManagedPoints, MiICreateText, MiIDisplayContextMenu, MiIDragConnection, MiIDragConnectionSegment, MiIDragObjectUnderMouse, MiIDuplicateSelectedParts, MiISingleKeyCreateObject, MiLayerTabs, MiLayoutMenuCommands, MiLayoutPartsCommand, MiMagnificationStatusField, MiManagedPointsAttributesDialog, MiManagedPointsAttributesPanel, MiManagedPointValidator, MiModelEntity, MiModelPropertyViewManager, MiMultiLineSingleButtonDialogBox, MiPaletteBackgroundMenu, MiPaletteViewManager, MiPart, MiPropertyWidgets, MiScrolledBox, MiSelectionBox, MiSelectionManager, MiShapeAttributesDialog, MiShapeAttributesPanel, MiShapeMenuCommands, MiShapePopupMenuCommands, MiStatusBarFocusManager, MiStatusBarFocusStatusField, MiSwatchesColorPalette, MiTableEditCellUsingOverlayTextField, MiTableInteractiveCellCopyTool, MiTableSelectionManager, MiTextArea, MiTextField, MiTriggerToTargetActionHandler, MiTwoStateWidgetEventHandler, MiViewMenuCommands, MiWaitUntilActionHandler, MiWhatsSelectedStatusField
- public interface MiiActionTypes
This interface specifies all the built-in types of MiiActions.
New MiiAction types can be defined at runtime by using the following
approach:
protected static final int MY_EDIT_TEXT_ACTION_TYPE = MiActionManager.registerAction("myEditText");
and this can be used thus:
miPart.appendActionHandler(myActionHandler,
new MiEvent(Mi_LEFT_MOUSE_DBLCLICK_EVENT), MY_EDIT_TEXT_ACTION_TYPE);
MiiActions are dispatched to their MiiActionHandlers in 4 distinct phases:
1. Mi_REQUEST_ACTION_PHASE
In this phase, the action is sent to all MiiActionHandlers which have requested
interest in this action during this phase. Each MiiActionHandler has the opportunity
to veto any further dispatch of the action.
2. Mi_EXECUTE_ACTION_PHASE
In this phase, the action is sent to all MiiActionHandlers which have requested
interest in this action during this phase. Each MiiActionHandler can decide to
execute code either before or instead (this is supported only rarely by the
code that dispatches the MiiAction - for example the MiDragAndDropManager
or MiPart#copy) of the default code.
3. Mi_COMMIT_ACTION_PHASE
In this phase, the action is sent to all MiiActionHandlers which have requested
interest in this action during this phase. This is the typical phase during
which the MiiActionHandler executes some code in response to the action's occurance.
4. Mi_CANCEL_ACTION_PHASE
In this phase, the action is sent to all MiiActionHandlers which have requested
interest in this action during this phase. This is the phsae that the MiiAction
enters if it was vetoed during the request phase. This allows all MiiActionHandlers
to free resources they may have allocated resources during the request phase.
- Version:
- %I% %G%
- Author:
- Michael L. Davis
- See Also:
MiiAction,
MiiActionHandler,
MiPart.appendActionHandler(com.swfm.mica.core.MiiAction, com.swfm.mica.events.MiEvent)
Mi_COMMIT_ACTION_PHASE
public static final int Mi_COMMIT_ACTION_PHASE
- See Also:
- Constant Field Values
Mi_REQUEST_ACTION_PHASE
public static final int Mi_REQUEST_ACTION_PHASE
- See Also:
- Constant Field Values
Mi_EXECUTE_ACTION_PHASE
public static final int Mi_EXECUTE_ACTION_PHASE
- See Also:
- Constant Field Values
Mi_CANCEL_ACTION_PHASE
public static final int Mi_CANCEL_ACTION_PHASE
- See Also:
- Constant Field Values
Mi_ACTION_PHASE_MASK
public static final int Mi_ACTION_PHASE_MASK
- See Also:
- Constant Field Values
Mi_ACTIONS_OF_PARTS_OF_OBSERVED
public static final int Mi_ACTIONS_OF_PARTS_OF_OBSERVED
- See Also:
- Constant Field Values
Mi_ACTIONS_OF_OBSERVED
public static final int Mi_ACTIONS_OF_OBSERVED
- See Also:
- Constant Field Values
Mi_ALL_ACTION_TYPES
public static final int Mi_ALL_ACTION_TYPES
- See Also:
- Constant Field Values
Mi_CREATE_ACTION
public static final int Mi_CREATE_ACTION
- See Also:
- Constant Field Values
Mi_DELETE_ACTION
public static final int Mi_DELETE_ACTION
- See Also:
- Constant Field Values
Mi_COPY_ACTION
public static final int Mi_COPY_ACTION
- See Also:
- Constant Field Values
Mi_REPLACE_ACTION
public static final int Mi_REPLACE_ACTION
- See Also:
- Constant Field Values
Mi_REMOVE_FROM_CONTAINER_ACTION
public static final int Mi_REMOVE_FROM_CONTAINER_ACTION
- See Also:
- Constant Field Values
Mi_ADD_TO_CONTAINER_ACTION
public static final int Mi_ADD_TO_CONTAINER_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_PICKUP_ACTION
public static final int Mi_DRAG_AND_DROP_PICKUP_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_MOVE_ACTION
public static final int Mi_DRAG_AND_DROP_MOVE_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_ENTER_ACTION
public static final int Mi_DRAG_AND_DROP_ENTER_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_EXIT_ACTION
public static final int Mi_DRAG_AND_DROP_EXIT_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_PAUSE_ACTION
public static final int Mi_DRAG_AND_DROP_PAUSE_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_CONTINUE_ACTION
public static final int Mi_DRAG_AND_DROP_CONTINUE_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_CANCEL_ACTION
public static final int Mi_DRAG_AND_DROP_CANCEL_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_COMMIT_ACTION
public static final int Mi_DRAG_AND_DROP_COMMIT_ACTION
- See Also:
- Constant Field Values
Mi_DRAG_AND_DROP_VETO_ACTION
public static final int Mi_DRAG_AND_DROP_VETO_ACTION
- See Also:
- Constant Field Values
Mi_SELECTED_ACTION
public static final int Mi_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_DESELECTED_ACTION
public static final int Mi_DESELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ACTIVATED_ACTION
public static final int Mi_ACTIVATED_ACTION
- See Also:
- Constant Field Values
Mi_SELECT_REPEATED_ACTION
public static final int Mi_SELECT_REPEATED_ACTION
- See Also:
- Constant Field Values
Mi_GOT_MOUSE_FOCUS_ACTION
public static final int Mi_GOT_MOUSE_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_LOST_MOUSE_FOCUS_ACTION
public static final int Mi_LOST_MOUSE_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_GOT_KEYBOARD_FOCUS_ACTION
public static final int Mi_GOT_KEYBOARD_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_LOST_KEYBOARD_FOCUS_ACTION
public static final int Mi_LOST_KEYBOARD_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_GOT_ENTER_KEY_FOCUS_ACTION
public static final int Mi_GOT_ENTER_KEY_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_LOST_ENTER_KEY_FOCUS_ACTION
public static final int Mi_LOST_ENTER_KEY_FOCUS_ACTION
- See Also:
- Constant Field Values
Mi_MOUSE_ENTER_ACTION
public static final int Mi_MOUSE_ENTER_ACTION
- See Also:
- Constant Field Values
Mi_MOUSE_EXIT_ACTION
public static final int Mi_MOUSE_EXIT_ACTION
- See Also:
- Constant Field Values
Mi_INVISIBLE_ACTION
public static final int Mi_INVISIBLE_ACTION
- See Also:
- Constant Field Values
Mi_VISIBLE_ACTION
public static final int Mi_VISIBLE_ACTION
- See Also:
- Constant Field Values
Mi_PART_SHOWING_ACTION
public static final int Mi_PART_SHOWING_ACTION
- See Also:
- Constant Field Values
Mi_PART_NOT_SHOWING_ACTION
public static final int Mi_PART_NOT_SHOWING_ACTION
- See Also:
- Constant Field Values
Mi_HIDDEN_ACTION
public static final int Mi_HIDDEN_ACTION
- See Also:
- Constant Field Values
Mi_UNHIDDEN_ACTION
public static final int Mi_UNHIDDEN_ACTION
- See Also:
- Constant Field Values
Mi_TEXT_CHANGE_ACTION
public static final int Mi_TEXT_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_MENU_POPPED_UP_ACTION
public static final int Mi_MENU_POPPED_UP_ACTION
- See Also:
- Constant Field Values
Mi_MENU_POPPED_DOWN_ACTION
public static final int Mi_MENU_POPPED_DOWN_ACTION
- See Also:
- Constant Field Values
Mi_TABBED_FOLDER_OPENED_ACTION
public static final int Mi_TABBED_FOLDER_OPENED_ACTION
- See Also:
- Constant Field Values
Mi_TABBED_FOLDER_CLOSED_ACTION
public static final int Mi_TABBED_FOLDER_CLOSED_ACTION
- See Also:
- Constant Field Values
Mi_INVALID_VALUE_ACTION
public static final int Mi_INVALID_VALUE_ACTION
- See Also:
- Constant Field Values
Mi_VALUE_CHANGED_ACTION
public static final int Mi_VALUE_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_ENTER_KEY_ACTION
public static final int Mi_ENTER_KEY_ACTION
- See Also:
- Constant Field Values
Mi_NODE_EXPANDED_ACTION
public static final int Mi_NODE_EXPANDED_ACTION
- See Also:
- Constant Field Values
Mi_NODE_COLLAPSED_ACTION
public static final int Mi_NODE_COLLAPSED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_SELECTED_ACTION
public static final int Mi_ITEM_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_DESELECTED_ACTION
public static final int Mi_ITEM_DESELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_BROWSED_ACTION
public static final int Mi_ITEM_BROWSED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_DEBROWSED_ACTION
public static final int Mi_ITEM_DEBROWSED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_ADDED_ACTION
public static final int Mi_ITEM_ADDED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_REMOVED_ACTION
public static final int Mi_ITEM_REMOVED_ACTION
- See Also:
- Constant Field Values
Mi_ALL_ITEMS_SELECTED_ACTION
public static final int Mi_ALL_ITEMS_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ALL_ITEMS_DESELECTED_ACTION
public static final int Mi_ALL_ITEMS_DESELECTED_ACTION
- See Also:
- Constant Field Values
Mi_NO_ITEMS_SELECTED_ACTION
public static final int Mi_NO_ITEMS_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ONE_ITEM_SELECTED_ACTION
public static final int Mi_ONE_ITEM_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_MANY_ITEMS_SELECTED_ACTION
public static final int Mi_MANY_ITEMS_SELECTED_ACTION
- See Also:
- Constant Field Values
Mi_ITEM_SCROLLED_ACTION
public static final int Mi_ITEM_SCROLLED_ACTION
- See Also:
- Constant Field Values
Mi_ITEMS_SCROLLED_AND_MAGNIFIED_ACTION
public static final int Mi_ITEMS_SCROLLED_AND_MAGNIFIED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_VIEWPORT_CHANGED_ACTION
public static final int Mi_EDITOR_VIEWPORT_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_WORLD_TRANSLATED_ACTION
public static final int Mi_EDITOR_WORLD_TRANSLATED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_WORLD_RESIZED_ACTION
public static final int Mi_EDITOR_WORLD_RESIZED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_DEVICE_TRANSLATED_ACTION
public static final int Mi_EDITOR_DEVICE_TRANSLATED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_DEVICE_RESIZED_ACTION
public static final int Mi_EDITOR_DEVICE_RESIZED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_UNIVERSE_RESIZED_ACTION
public static final int Mi_EDITOR_UNIVERSE_RESIZED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_CONTENTS_GEOMETRY_CHANGED_ACTION
public static final int Mi_EDITOR_CONTENTS_GEOMETRY_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_LAYER_ADDED_ACTION
public static final int Mi_EDITOR_LAYER_ADDED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_LAYER_REMOVED_ACTION
public static final int Mi_EDITOR_LAYER_REMOVED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_LAYER_ORDER_CHANGED_ACTION
public static final int Mi_EDITOR_LAYER_ORDER_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_EDITOR_CURRENT_LAYER_CHANGED_ACTION
public static final int Mi_EDITOR_CURRENT_LAYER_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_CLOSE_ACTION
public static final int Mi_WINDOW_CLOSE_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_ICONIFY_ACTION
public static final int Mi_WINDOW_ICONIFY_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_DEICONIFY_ACTION
public static final int Mi_WINDOW_DEICONIFY_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_OPEN_ACTION
public static final int Mi_WINDOW_OPEN_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_OK_ACTION
public static final int Mi_WINDOW_OK_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_CANCEL_ACTION
public static final int Mi_WINDOW_CANCEL_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_HELP_ACTION
public static final int Mi_WINDOW_HELP_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_FULLSCREEN_ACTION
public static final int Mi_WINDOW_FULLSCREEN_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_NORMALSIZE_ACTION
public static final int Mi_WINDOW_NORMALSIZE_ACTION
- See Also:
- Constant Field Values
Mi_WINDOW_DESTROY_ACTION
public static final int Mi_WINDOW_DESTROY_ACTION
- See Also:
- Constant Field Values
Mi_CLIPBOARD_NOW_HAS_DATA_ACTION
public static final int Mi_CLIPBOARD_NOW_HAS_DATA_ACTION
- See Also:
- Constant Field Values
Mi_CLIPBOARD_NOW_HAS_NO_DATA_ACTION
public static final int Mi_CLIPBOARD_NOW_HAS_NO_DATA_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_CHANGED_ACTION
public static final int Mi_TRANSACTION_MANAGER_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_NEW_TRANSACTION_ACTION
public static final int Mi_TRANSACTION_MANAGER_NEW_TRANSACTION_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_START_UNDO_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_START_UNDO_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_END_UNDO_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_END_UNDO_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_START_REDO_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_START_REDO_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_END_REDO_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_END_REDO_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_START_REPEAT_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_START_REPEAT_ACTION
- See Also:
- Constant Field Values
Mi_TRANSACTION_MANAGER_EXECUTION_END_REPEAT_ACTION
public static final int Mi_TRANSACTION_MANAGER_EXECUTION_END_REPEAT_ACTION
- See Also:
- Constant Field Values
Mi_DATA_IMPORT_ACTION
public static final int Mi_DATA_IMPORT_ACTION
- See Also:
- Constant Field Values
Mi_CONNECT_SOURCE_ACTION
public static final int Mi_CONNECT_SOURCE_ACTION
- See Also:
- Constant Field Values
Mi_CONNECT_DESTINATION_ACTION
public static final int Mi_CONNECT_DESTINATION_ACTION
- See Also:
- Constant Field Values
Mi_CONNECT_ACTION
public static final int Mi_CONNECT_ACTION
- See Also:
- Constant Field Values
Mi_DISCONNECT_SOURCE_ACTION
public static final int Mi_DISCONNECT_SOURCE_ACTION
- See Also:
- Constant Field Values
Mi_DISCONNECT_DESTINATION_ACTION
public static final int Mi_DISCONNECT_DESTINATION_ACTION
- See Also:
- Constant Field Values
Mi_DISCONNECT_ACTION
public static final int Mi_DISCONNECT_ACTION
- See Also:
- Constant Field Values
Mi_CREATED_CONNECTION_CONNECTION_POINT_ACTION
public static final int Mi_CREATED_CONNECTION_CONNECTION_POINT_ACTION
- See Also:
- Constant Field Values
Mi_DELETED_CONNECTION_CONNECTION_POINT_ACTION
public static final int Mi_DELETED_CONNECTION_CONNECTION_POINT_ACTION
- See Also:
- Constant Field Values
Mi_STATUS_BAR_FOCUS_CHANGED_ACTION
public static final int Mi_STATUS_BAR_FOCUS_CHANGED_ACTION
- See Also:
- Constant Field Values
Mi_ICONIFY_ACTION
public static final int Mi_ICONIFY_ACTION
- See Also:
- Constant Field Values
Mi_DEICONIFY_ACTION
public static final int Mi_DEICONIFY_ACTION
- See Also:
- Constant Field Values
Mi_GROUP_ACTION
public static final int Mi_GROUP_ACTION
- See Also:
- Constant Field Values
Mi_UNGROUP_ACTION
public static final int Mi_UNGROUP_ACTION
- See Also:
- Constant Field Values
Mi_FORMAT_ACTION
public static final int Mi_FORMAT_ACTION
- See Also:
- Constant Field Values
Mi_UNFORMAT_ACTION
public static final int Mi_UNFORMAT_ACTION
- See Also:
- Constant Field Values
Mi_GEOMETRY_CHANGE_ACTION
public static final int Mi_GEOMETRY_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_SIZE_CHANGE_ACTION
public static final int Mi_SIZE_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_POSITION_CHANGE_ACTION
public static final int Mi_POSITION_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_APPEARANCE_CHANGE_ACTION
public static final int Mi_APPEARANCE_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_DRAW_ACTION
public static final int Mi_DRAW_ACTION
- See Also:
- Constant Field Values
Mi_DOCUMENT_CHANGE_ACTION
public static final int Mi_DOCUMENT_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_DECREASE_ACTION
public static final int Mi_DECREASE_ACTION
- See Also:
- Constant Field Values
Mi_INCREASE_ACTION
public static final int Mi_INCREASE_ACTION
- See Also:
- Constant Field Values
Mi_PROPERTY_CHANGE_ACTION
public static final int Mi_PROPERTY_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_NAME_CHANGE_ACTION
public static final int Mi_NAME_CHANGE_ACTION
- See Also:
- Constant Field Values
Mi_DISPLAY_PROPERTIES_ACTION
public static final int Mi_DISPLAY_PROPERTIES_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_MOVING_PART_ACTION
public static final int Mi_INTERACTIVELY_MOVING_PART_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_COMPLETED_MOVE_PART_ACTION
public static final int Mi_INTERACTIVELY_COMPLETED_MOVE_PART_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_CANCELED_MOVE_PART_ACTION
public static final int Mi_INTERACTIVELY_CANCELED_MOVE_PART_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_FAILED_MOVE_PART_ACTION
public static final int Mi_INTERACTIVELY_FAILED_MOVE_PART_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_CREATING_CONNECTION_ACTION
public static final int Mi_INTERACTIVELY_CREATING_CONNECTION_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_COMPLETED_CREATE_CONNECTION_ACTION
public static final int Mi_INTERACTIVELY_COMPLETED_CREATE_CONNECTION_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_CANCELED_CREATE_CONNECTION_ACTION
public static final int Mi_INTERACTIVELY_CANCELED_CREATE_CONNECTION_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_FAILED_CREATE_CONNECTION_ACTION
public static final int Mi_INTERACTIVELY_FAILED_CREATE_CONNECTION_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_COMPLETED_RUBBER_STAMP_PART_ACTION
public static final int Mi_INTERACTIVELY_COMPLETED_RUBBER_STAMP_PART_ACTION
- See Also:
- Constant Field Values
Mi_INTERACTIVELY_COMPLETED_DRAW_NEW_PART_PART_ACTION
public static final int Mi_INTERACTIVELY_COMPLETED_DRAW_NEW_PART_PART_ACTION
- See Also:
- Constant Field Values
Mi_ACTION_TYPE_MASK
public static final int Mi_ACTION_TYPE_MASK
- See Also:
- Constant Field Values