|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
org.tentackle.ui.FormPanel
org.tentackle.ui.FormComponentPanel
org.tentackle.ui.FormFieldComponentPanel
org.tentackle.appworx.AppDbObjectFieldPanel
public class AppDbObjectFieldPanel
A panel containing a FormField representing the key to select the data object and buttons for editing/viewing/searching.
AppDbObjectLinkPanel,
Serialized Form| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class javax.swing.JPanel |
|---|
JPanel.AccessibleJPanel |
| Nested classes/interfaces inherited from class javax.swing.JComponent |
|---|
JComponent.AccessibleJComponent |
| Nested classes/interfaces inherited from class java.awt.Container |
|---|
Container.AccessibleAWTContainer |
| Nested classes/interfaces inherited from class java.awt.Component |
|---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
| Field Summary |
|---|
| Fields inherited from class javax.swing.JComponent |
|---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
|---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
|---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
|---|---|
AppDbObjectFieldPanel()
Creates an application database object field panel. |
|
| Method Summary | |
|---|---|
void |
dragEnter(DropTargetDragEvent event)
Called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for the DropTarget
registered with this listener. |
void |
dragExit(DropTargetEvent event)
Called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for the DropTarget registered with this listener. |
void |
dragOver(DropTargetDragEvent event)
Called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for the DropTarget
registered with this listener. |
void |
drop(DropTargetDropEvent event)
Called when the drag operation has terminated with a drop on the operable part of the drop site for the DropTarget
registered with this listener. |
void |
dropActionChanged(DropTargetDragEvent event)
Called if the user has modified the current drop gesture. |
int |
getInfoColumns()
Get columns of info field |
AppDbObject |
getLink()
Gets the object. |
long |
getLinkId()
Gets the object Id of the link. |
QbfParameter |
getQbfParameter()
Gets the qbf parameter. |
QbfPlugin |
getQbfPlugin()
Gets the plugin. |
boolean |
isInfoFieldVisible()
Gets the infofield's visibility. |
void |
setChangeable(boolean changeable)
Set the component to be changeable. This is a unified abstraction and will be translated to setEditable or setEnabled, whatever is appropriate to this component. |
void |
setInfoColumns(int col)
Sets columns of the info field. |
void |
setInfoFieldVisible(boolean visible)
Sets the infofield's visibility. |
void |
setLink(AppDbObject object)
sets the link object (if plugin matches) |
void |
setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId)
Sets the link with default plugin. |
void |
setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId,
boolean keepPlugin)
Sets the link with default plugin. |
void |
setLink(QbfPlugin plugin,
long linkedId)
Sets the link. |
void |
updateCodeAndInfoField(AppDbObject linkedObject)
Updates both the code- and the info field. |
| Methods inherited from class org.tentackle.ui.FormPanel |
|---|
addActionListener, areValuesChanged, componentAdded, componentRemoved, fireActionPerformed, getFormValues, getTitle, isAllChangeable, isHonourAllChangeable, removeActionListener, saveValues, setAllChangeable, setFormValues, setFormValuesKeepChanged, setHonourAllChangeable, setTitle, triggerValuesChanged |
| Methods inherited from class javax.swing.JPanel |
|---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AppDbObjectFieldPanel()
Pressing F2 in the key field will open a search dialog.
F3 will edit the object.
Drag and drop is supported as well.
By default, the editing component is a StringFormField.
| Method Detail |
|---|
public void setLink(QbfPlugin plugin,
long linkedId)
plugin - is the QbfPlugin to be usedlinkedId - the original, i.e. current Id of the linked objectpublic void setLink(AppDbObject object)
object - the data object
public void setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId,
boolean keepPlugin)
clazz - the class of the linked object, e.g. Konto.classdb - is the db-connection with contextlinkedId - the original, i.e. current Id of the linked objectkeepPlugin - is true if keep plugin if already initialized
public void setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId)
clazz - the class of the linked object, e.g. Konto.classdb - is the db-connection with contextlinkedId - the original, i.e. current Id of the linked objectpublic long getLinkId()
public AppDbObject getLink()
public QbfParameter getQbfParameter()
public QbfPlugin getQbfPlugin()
public void setInfoColumns(int col)
col - the columnspublic int getInfoColumns()
public void updateCodeAndInfoField(AppDbObject linkedObject)
linkedObject - the data objectpublic void setInfoFieldVisible(boolean visible)
visible - true if info field is visible (default)public boolean isInfoFieldVisible()
public void setChangeable(boolean changeable)
FormComponent
setChangeable in interface FormComponentsetChangeable in class FormComponentPanelchangeable - true the user can edit the data, false if show onlypublic void dragEnter(DropTargetDragEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
dragEnter in interface DropTargetListenerevent - the DropTargetDragEventpublic void dragExit(DropTargetEvent event)
java.awt.dnd.DropTargetListenerDropTarget registered with this listener.
dragExit in interface DropTargetListenerevent - the DropTargetEventpublic void dragOver(DropTargetDragEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
dragOver in interface DropTargetListenerevent - the DropTargetDragEventpublic void dropActionChanged(DropTargetDragEvent event)
java.awt.dnd.DropTargetListener
dropActionChanged in interface DropTargetListenerevent - the DropTargetDragEventpublic void drop(DropTargetDropEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
This method is responsible for undertaking
the transfer of the data associated with the
gesture. The DropTargetDropEvent
provides a means to obtain a Transferable
object that represents the data object(s) to
be transfered.
From this method, the DropTargetListener
shall accept or reject the drop via the
acceptDrop(int dropAction) or rejectDrop() methods of the
DropTargetDropEvent parameter.
Subsequent to acceptDrop(), but not before,
DropTargetDropEvent's getTransferable()
method may be invoked, and data transfer may be
performed via the returned Transferable's
getTransferData() method.
At the completion of a drop, an implementation
of this method is required to signal the success/failure
of the drop by passing an appropriate
boolean to the DropTargetDropEvent's
dropComplete(boolean success) method.
Note: The data transfer should be completed before the call to the
DropTargetDropEvent's dropComplete(boolean success) method.
After that, a call to the getTransferData() method of the
Transferable returned by
DropTargetDropEvent.getTransferable() is guaranteed to
succeed only if the data transfer is local; that is, only if
DropTargetDropEvent.isLocalTransfer() returns
true. Otherwise, the behavior of the call is
implementation-dependent.
drop in interface DropTargetListenerevent - the DropTargetDropEvent
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||