All Packages Class Hierarchy This Package Previous Next Index
Class com.bulletproof.gui.Frame
java.lang.Object
|
+----com.bulletproof.gui.Component
|
+----com.bulletproof.gui.Container
|
+----com.bulletproof.gui.Panel
|
+----com.bulletproof.gui.Frame
- public class Frame
- extends Panel
A Frame is a top-level window with a title.
The default layout for a frame is BorderLayout.
-
Frame()
- Constructs a new Frame that is initially invisible.
-
Frame(String)
- Constructs a new, initially invisible Frame with the specified
title.
-
doLayout()
-
Does a layout on this Container.
-
getHandler()
-
-
getLocationOnScreen()
-
Returns the current location of this component in the screen's
coordinate space.
-
getMenuBar()
-
-
getTitle()
- Gets the title for this Dialog.
-
init()
- Called after the application has been loaded.
-
paint(Graphics)
-
Paints the container.
-
processKeyEvent(KeyEvent)
-
Processes key events occurring on this component by
dispatching them to any registered KeyListener objects.
-
proxyGetClipboard()
- This is called by lightweight components to set the contents of the
clipboard.
-
proxyGetFrame()
-
-
proxyGetPopup(Component)
- This is called by lightweight components to get the handle to the popup
component.
-
proxyGetPopup(Component, boolean)
- This is called by lightweight components to get the handle to the popup
component.
-
proxyRequestFocus(Component)
-
-
proxySetClipboard(String)
- This is called by lightweight components to set the contents of the
clipboard.
-
setProgressBar(String, int)
-
-
setTitle(String)
- Sets the title for this Frame to the specified title.
-
show()
-
-
showMenuBar()
-
-
showMessage(String)
-
Frame
public Frame()
- Constructs a new Frame that is initially invisible.
- See Also:
- setVisible
Frame
public Frame(String title)
- Constructs a new, initially invisible Frame with the specified
title.
- Parameters:
- title - the title for the frame
- See Also:
- setVisible
init
public void init()
- Called after the application has been loaded. Can be overridden
to perform database functions once the VM is ready.
setTitle
public void setTitle(String title)
- Sets the title for this Frame to the specified title.
- Parameters:
- title - the specified title of this Frame
- See Also:
- getTitle
getTitle
public String getTitle()
- Gets the title for this Dialog.
- Returns:
- the specified title of this Dialog
doLayout
public void doLayout()
- Does a layout on this Container.
- Overrides:
- doLayout in class Container
paint
public void paint(Graphics g)
- Paints the container.
- Overrides:
- paint in class Container
processKeyEvent
public void processKeyEvent(KeyEvent ev)
- Processes key events occurring on this component by
dispatching them to any registered KeyListener objects.
- Overrides:
- processKeyEvent in class Component
proxyGetFrame
public Frame proxyGetFrame()
- Overrides:
- proxyGetFrame in class Component
proxyGetPopup
public PopupComponent proxyGetPopup(Component requestor)
- This is called by lightweight components to get the handle to the popup
component.
proxyGetPopup
public PopupComponent proxyGetPopup(Component requestor,
boolean getDialog)
- This is called by lightweight components to get the handle to the popup
component.
proxySetClipboard
public void proxySetClipboard(String clip)
- This is called by lightweight components to set the contents of the
clipboard.
proxyGetClipboard
public String proxyGetClipboard()
- This is called by lightweight components to set the contents of the
clipboard.
proxyRequestFocus
public void proxyRequestFocus(Component fc)
getHandler
public SpotletHandler getHandler()
getLocationOnScreen
public Point getLocationOnScreen()
- Returns the current location of this component in the screen's
coordinate space.
- Overrides:
- getLocationOnScreen in class Component
show
public void show()
showMessage
public static void showMessage(String msg)
setProgressBar
public void setProgressBar(String label,
int percentComplete)
showMenuBar
public void showMenuBar()
getMenuBar
public MenuBar getMenuBar()
All Packages Class Hierarchy This Package Previous Next Index