Package | Description |
---|---|
ilog.views.appframe |
Provides common classes that are used within all Java Application Framework modules.
|
ilog.views.appframe.docview |
Provides classes that are involved in the Document/View architecture of the Java Application Framework.
|
ilog.views.appframe.event |
Provides interfaces and classes for dealing with different types of events fired by main Application Framework classes.
|
ilog.views.appframe.swing |
Provides custom Swing components that are initialized from the settings.
|
ilog.views.appframe.swing.mdi |
Provides interfaces and classes for managing MDI Swing main windows.
|
Modifier and Type | Method and Description |
---|---|
IlvViewContainer |
IlvApplication.getActiveViewContainer()
Returns the container of the active document view.
|
Modifier and Type | Interface and Description |
---|---|
interface |
IlvMDIViewContainer
Defines view containers attached to one
IlvDocument
instance, like internal frames or a pane in a tabbed pane. |
Modifier and Type | Class and Description |
---|---|
class |
IlvAbstractStaticViewContainer
This class provides a skeletal implementation of the
IlvViewContainer interface for static view containers. |
Modifier and Type | Method and Description |
---|---|
IlvViewContainer |
IlvMainWindow.getActiveViewContainer()
Returns the active view container.
|
IlvViewContainer[] |
IlvDocumentTemplate.getDocumentContainers(IlvDocument document)
Returns all the view containers that contain views of the specified
document . |
IlvViewContainer |
IlvSingleContainerTemplate.getViewContainer()
Returns the view container associated with this container template.
|
IlvViewContainer |
IlvDocumentViewSupport.getViewContainer()
Returns the view container that owns the view.
|
IlvViewContainer |
IlvDocumentView.getViewContainer()
Returns the view container that owns this view.
|
IlvViewContainer |
IlvDocumentViewConfiguration.newViewContainer(IlvDocument document,
boolean activateContainer)
Creates a new view container according to the parameters of this view
configuration.
|
IlvViewContainer |
IlvDocumentTemplate.newViewContainer(IlvDocument document,
IlvContainerTemplate containerTemplate,
String configurationName)
Creates a new view container for the specified document and container
template.
|
IlvViewContainer |
IlvDocumentTemplate.newViewContainer(IlvDocument document,
String configurationName,
boolean activate)
Creates a new view container for the specified
document
and the specified configuration. |
Modifier and Type | Method and Description |
---|---|
boolean |
IlvDocumentTemplate.canCloseViewContainer(IlvViewContainer container)
Determines whether the specified view container can be closed.
|
void |
IlvMainWindow.containerActivated(IlvViewContainer viewContainer)
Invoked when a view container owned by this main window has been
activated.
|
void |
IlvAbstractMainWindow.containerActivated(IlvViewContainer viewContainer)
Invoked when a view container owned by this main window is
activated.
|
protected IlvDocumentView |
IlvDocumentViewConfiguration.createView(IlvSettingsElement viewTemplateElement,
int viewIndex,
IlvViewContainer container)
Instantiates a view according to the settings specification provided with
the
viewTemplateElement . |
void |
IlvMainWindow.registerStaticContainer(String name,
IlvViewContainer container)
Registers the specified view container as a static container within the
main window.
|
void |
IlvAbstractMainWindow.registerStaticContainer(String name,
IlvViewContainer container)
Registers the specified view container as a static container within the
main window.
|
void |
IlvDocumentViewSupport.setViewContainer(IlvViewContainer container)
Sets the view container that owns the view.
|
boolean |
IlvMainWindow.unregisterStaticContainer(IlvViewContainer container)
Unregisters the specified view container from the main window.
|
boolean |
IlvAbstractMainWindow.unregisterStaticContainer(IlvViewContainer container)
Unregisters the specified view container from the main window.
|
Modifier and Type | Method and Description |
---|---|
IlvViewContainer |
ApplicationEvent.getViewContainer()
Returns the view container that originated the event;
null if this event was not originated by a view container. |
Constructor and Description |
---|
ApplicationEvent(int id,
IlvDocument document,
IlvDocumentView view,
IlvViewContainer container,
IlvDocumentTemplate documentTemplate)
Constructs an
ApplicationEvent with the specified
id , document , document view ,
view container , and documentTemplate . |
ApplicationEvent(int id,
IlvViewContainer container)
Constructs an
ApplicationEvent with the specified
id and view container . |
IlvComponentVisibilityActionHandler(String command,
IlvViewContainer viewContainer)
Construct a new
IlvComponentVisibilityActionHandler that
processes the action with the specified command key. |
Modifier and Type | Class and Description |
---|---|
class |
IlvDefaultStaticViewContainer
The default implementation for Swing static view containers.
|
Modifier and Type | Method and Description |
---|---|
IlvViewContainer |
IlvSwingMainWindow.getActiveViewContainer()
Returns the active document view container.
|
IlvViewContainer |
IlvPanelView.getViewContainer()
Returns the view container that owns the view.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
IlvSwingMainWindow.AddViews(IlvViewContainer container,
Container clientContainer,
IlvDocumentView[] views)
Default mechanism for adding views to a container.
|
void |
IlvSwingMainWindow.containerActivated(IlvViewContainer viewContainer)
Invoked when a view container owned by this main window has been
activated.
|
void |
IlvSwingMainWindow.registerStaticContainer(String name,
IlvViewContainer container)
Registers the specified view container as a static container within the
Swing main window.
|
void |
IlvPanelView.setViewContainer(IlvViewContainer container)
Sets the view container of the view.
|
boolean |
IlvSwingMainWindow.unregisterStaticContainer(IlvViewContainer container)
Unregisters the specified view container from the
main window.
|
Modifier and Type | Class and Description |
---|---|
class |
IlvInternalFrame
Implementation of the
IlvMDIViewContainer interface for
Swing internal frames. |
class |
IlvMDITab
Defines the tab components that are inserted within an
IlvMDITabbedPane . |
Modifier and Type | Method and Description |
---|---|
IlvViewContainer |
IlvMDIMainFrame.getActiveViewContainer()
Returns the active view container.
|
IlvViewContainer |
IlvMDIApplet.getActiveViewContainer()
Returns the active document view container.
|
Modifier and Type | Method and Description |
---|---|
void |
IlvMDIMainFrame.containerActivated(IlvViewContainer viewContainer)
Invoked when a view container owned by this main window has been
activated.
|
void |
IlvMDIApplet.containerActivated(IlvViewContainer viewContainer)
Invoked when a view container owned by this main window has been
activated.
|
void |
IlvMDIMainFrame.registerStaticContainer(String name,
IlvViewContainer container)
Registers the specified view container as a static container within the
main window.
|
void |
IlvMDIApplet.registerStaticContainer(String name,
IlvViewContainer container)
Registers the specified view container as a static container within the
main window.
|
boolean |
IlvMDIMainFrame.unregisterStaticContainer(IlvViewContainer container)
Unregisters the specified view container from the
main window.
|
boolean |
IlvMDIApplet.unregisterStaticContainer(IlvViewContainer container)
Unregisters the specified view container from the
main window.
|
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.