Package com.inductiveautomation.rm.app
Class Gallery
- java.lang.Object
-
- com.inductiveautomation.snap.ui.UIOwner<SwingEvent,javax.swing.JComponent>
-
- com.inductiveautomation.snap.swing.SwingOwner
-
- com.inductiveautomation.rm.app.Gallery
-
- Direct Known Subclasses:
SwingGallery
public class Gallery extends SwingOwner
This class provides UI for showing an RMParentShape and allowing drag and drop from it.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Gallery.GViewer
An inner class and RMViewer subclass for showing and dragging shapes in an RMDocument.
-
Field Summary
-
Fields inherited from class com.inductiveautomation.snap.ui.UIOwner
DragDrop, DragEnter, DragEvents, DragExit, DragOver, KeyEvents, KeyFinished, KeyPressed, KeyReleased, KeyTyped, MouseClicked, MouseDragged, MouseEntered, MouseEvents, MouseExited, MouseFinished, MouseMoved, MousePressed, MouseReleased
-
-
Constructor Summary
Constructors Constructor Description Gallery()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected javax.swing.JComponent
createUI()
Creates UI panel.static void
dropGalleryShape(RMParentShape aShape, java.awt.dnd.DropTargetDropEvent anEvent)
Handle drop of gallery shape onto editor.RMParentShape
getDocument(int anIndex)
Returns the specifc document at the given index.int
getDocumentCount()
Returns the number of document shown by the gallery.javax.swing.Icon
getDocumentIcon(int anIndex)
Returns the icon for the specific document at the given index.static RMShape
getDragShape()
Returns the shape being dragged.java.lang.String
getWindowTitle()
Returns the name to be used in the inspector window.void
respondUI(SwingEvent anEvent)
Responds to UI controls.-
Methods inherited from class com.inductiveautomation.snap.swing.SwingOwner
addKeyActionEvent, createTimer, createUI, createWindow, getNode, getNode, getNodeHelper, getTimer, getTimer, getUI, getWindow, isEventThread, isWindowVisible, requestFocus, requestFocusImpl, runLater, sendEvent, setWindowVisible
-
Methods inherited from class com.inductiveautomation.snap.ui.UIOwner
addNodeBinding, disableEvents, enableEvents, getBindingModelValue, getBindingNodeValue, getConversionMap, getConversionMapKey, getConversionMaps, getConversionMapValue, getFirstFocus, getModelValue, getNode, getNodeAction, getNodeBoolValue, getNodeFloatValue, getNodeIntValue, getNodeItemDisplayKey, getNodeItems, getNodeSelectedIndex, getNodeSelectedItem, getNodeStringValue, getNodeText, getNodeValue, getUI, getUIHpr, initUI, initUI, isNodeEnabled, isNodeValueAdjusting, isSendEventDisabled, isUISet, processResetUI, processRespondUI, resetLater, resetNodeBindings, resetUI, runLaterDelayed, runLaterOnce, sendEvent, sendNodeAction, setBindingModelValue, setBindingNodeValue, setFirstFocus, setModelValue, setNodeAction, setNodeEnabled, setNodeItemDisplayKey, setNodeItems, setNodeItems, setNodeSelectedIndex, setNodeSelectedItem, setNodeText, setNodeValue, setSendEventDisabled
-
-
-
-
Method Detail
-
getWindowTitle
public java.lang.String getWindowTitle()
Returns the name to be used in the inspector window.
-
getDragShape
public static RMShape getDragShape()
Returns the shape being dragged.
-
createUI
protected javax.swing.JComponent createUI()
Creates UI panel.- Overrides:
createUI
in classSwingOwner
-
respondUI
public void respondUI(SwingEvent anEvent)
Responds to UI controls.- Overrides:
respondUI
in classUIOwner<SwingEvent,javax.swing.JComponent>
-
getDocumentCount
public int getDocumentCount()
Returns the number of document shown by the gallery.
-
getDocument
public RMParentShape getDocument(int anIndex)
Returns the specifc document at the given index.
-
getDocumentIcon
public javax.swing.Icon getDocumentIcon(int anIndex)
Returns the icon for the specific document at the given index.
-
dropGalleryShape
public static void dropGalleryShape(RMParentShape aShape, java.awt.dnd.DropTargetDropEvent anEvent)
Handle drop of gallery shape onto editor.
-
-