de.enough.polish.ui
Class Canvas

java.lang.Object
  extended by javax.microedition.lcdui.Displayable
      extended by javax.microedition.lcdui.Canvas
          extended by de.enough.polish.ui.Canvas
All Implemented Interfaces:
Displayable
Direct Known Subclasses:
InitializerSplashScreen, LogCanvas, Screen, ScreenChangeAnimation

public abstract class Canvas
extends Canvas
implements Displayable

The Canvas class is a base class for writing applications that need to handle low-level events and to issue graphics calls for drawing to the display. Game applications will likely make heavy use of the Canvas class. From an application development perspective, the Canvas class is interchangeable with standard Screen classes, so an application may mix and match Canvas with high-level screens as needed. For example, a List screen may be used to select the track for a racing game, and a Canvas subclass would implement the actual game.

The Canvas provides the developer with methods to handle game actions, key events, and pointer events (if supported by the device). Methods are also provided to identify the device's capabilities and mapping of keys to game actions. The key events are reported with respect to key codes, which are directly bound to concrete keys on the device, use of which may hinder portability. Portable applications should use game actions instead of key codes.

Like other subclasses of Displayable, the Canvas class allows the application to register a listener for commands. Unlike other Displayables, however, the Canvas class requires applications to subclass it in order to use it. The paint() method is declared abstract, and so the application must provide an implementation in its subclass. Other event-reporting methods are not declared abstract, and their default implementations are empty (that is, they do nothing). This allows the application to override only the methods that report events in which the application has interest.

This is in contrast to the Screen classes, which allow the application to define listeners and to register them with instances of the Screen classes. This style is not used for the Canvas class, because several new listener interfaces would need to be created, one for each kind of event that might be delivered. An alternative would be to have fewer listener interfaces, but this would require listeners to filter out events in which they had no interest.

Key Events

Applications receive keystroke events in which the individual keys are named within a space of key codes. Every key for which events are reported to MIDP applications is assigned a key code. The key code values are unique for each hardware key unless two keys are obvious synonyms for each other. MIDP defines the following key codes: KEY_NUM0, KEY_NUM1, KEY_NUM2, KEY_NUM3, KEY_NUM4, KEY_NUM5, KEY_NUM6, KEY_NUM7, KEY_NUM8, KEY_NUM9, KEY_STAR, and KEY_POUND. (These key codes correspond to keys on a ITU-T standard telephone keypad.) Other keys may be present on the keyboard, and they will generally have key codes distinct from those list above. In order to guarantee portability, applications should use only the standard key codes.

The standard key codes' values are equal to the Unicode encoding for the character that represents the key. If the device includes any other keys that have an obvious correspondence to a Unicode character, their key code values should equal the Unicode encoding for that character. For keys that have no corresponding Unicode character, the implementation must use negative values. Zero is defined to be an invalid key code. It is thus possible for an application to convert a keyCode into a Unicode character using the following code:


 if (keyCode > 0) {
 char ch = (char)keyCode;
 // ...
 }    

This technique is useful only in certain limited cases. In particular, it is not sufficient for full textual input, because it does not handle upper and lower case, keyboard shift states, and characters that require more than one keystroke to enter. For textual input, applications should always use TextBox or TextField objects.

It is sometimes useful to find the name of a key in order to display a message about this key. In this case the application may use the getKeyName() method to find a key's name.

Game Actions

Portable applications that need arrow key events and gaming-related events should use game actions in preference to key codes and key names. MIDP defines the following game actions: UP, DOWN, LEFT, RIGHT, FIRE, GAME_A, GAME_B, GAME_C, and GAME_D.

Each key code may be mapped to at most one game action. However, a game action may be associated with more than one key code. The application can translate a key code into a game action using the getGameAction(int keyCode) method, and it can translate a game action into a key code using the getKeyCode(int gameAction) method. There may be multiple keycodes associated with a particular game action, but getKeyCode returns only one of them. Supposing that g is a valid game action and k is a valid key code for a key associated with a game action, consider the following expressions:


 g == getGameAction(getKeyCode(g))     // (1)
 k == getKeyCode(getGameAction(k))     // (2)    

Expression (1) is always true. However, expression (2) might be true but is not necessarily true.

The implementation is not allowed to change the mapping of game actions and key codes during execution of the application.

Portable applications that are interested in using game actions should translate every key event into a game action by calling the getGameAction() method and then testing the result. For example, on some devices the game actions UP, DOWN, LEFT and RIGHT may be mapped to 4-way navigation arrow keys. In this case, getKeyCode(UP) would return a device-dependent code for the up-arrow key. On other devices, a possible mapping would be on the number keys 2, 4, 6 and 8. In this case, getKeyCode(UP) would return KEY_NUM2. In both cases, the getGameAction() method would return the LEFT game action when the user presses the key that is a "natural left" on her device.

Commands

It is also possible for the user to issue commands when a canvas is current. Commands are mapped to keys and menus in a device-specific fashion. For some devices the keys used for commands may overlap with the keys that will deliver key code events to the canvas. If this is the case, the device will provide a means transparent to the application that enables the user to select a mode that determines whether these keys will deliver commands or key code events to the application. When the Canvas is in normal mode (see below), the set of key code events available to a canvas will not change depending upon the number of commands present or the presence of a command listener. When the Canvas is in full-screen mode, if there is no command listener present, the device may choose to deliver key code events for keys that would otherwise be reserved for delivery of commands. Game developers should be aware that access to commands will vary greatly across devices, and that requiring the user to issue commands during game play may have a great impact on the ease with which the game can be played.

Event Delivery

The Canvas object defines several methods that are called by the implementation. These methods are primarily for the purpose of delivering events to the application, and so they are referred to as event delivery methods. The set of methods is:

These methods are all called serially. That is, the implementation will never call an event delivery method before a prior call to any of the event delivery methods has returned. The serviceRepaints() method is an exception to this rule, as it blocks until paint() is called and returns. This will occur even if the application is in the midst of one of the event delivery methods when it calls serviceRepaints().

The Display.callSerially() method can be used to serialize some application-defined work with the event stream. For further information, see the Event Handling and Concurrency sections of the package summary.

The key-related, pointer-related, and paint() methods will only be called while the Canvas is actually visible on the output device. These methods will therefore only be called on this Canvas object only after a call to showNotify() and before a call to hideNotify(). After hideNotify() has been called, none of the key, pointer, and paint methods will be called until after a subsequent call to showNotify() has returned. A call to a run() method resulting from callSerially() may occur irrespective of calls to showNotify() and hideNotify().

The showNotify() method is called prior to the Canvas actually being made visible on the display, and the hideNotify() method is called after the Canvas has been removed from the display. The visibility state of a Canvas (or any other Displayable object) may be queried through the use of the Displayable.isShown() method. The change in visibility state of a Canvas may be caused by the application management software moving MIDlets between foreground and background states, or by the system obscuring the Canvas with system screens. Thus, the calls to showNotify() and hideNotify() are not under the control of the MIDlet and may occur fairly frequently. Application developers are encouraged to perform expensive setup and teardown tasks outside the showNotify() and hideNotify() methods in order to make them as lightweight as possible.

A Canvas can be in normal mode or in full-screen mode. In normal mode, space on the display may be occupied by command labels, a title, and a ticker. By setting a Canvas into full-screen mode, the application is requesting that the Canvas occupy as much of the display space as is possible. In full-screen mode, the title and ticker are not displayed even if they are present on the Canvas, and Commands may be presented using some alternative means (such as through a pop-up menu). Note that the implementation may still consume a portion of the display for things like status indicators, even if the displayed Canvas is in full-screen mode. In full-screen mode, although the title is not displayed, its text may still be used for other purposes, such as for the title of a pop-up menu of Commands.

Canvas objects are in normal mode by default. The normal vs. full-screen mode setting is controlled through the use of the setFullScreenMode(boolean) method.

Calling setFullScreenMode(boolean) may result in sizeChanged() being called. The default implementation of this method does nothing. The application can override this method to handle changes in size of available drawing area.

Note: As mentioned in the "Specification Requirements" section of the overview, implementations must provide the user with an indication of network usage. If the indicator is rendered on screen, it must be visible when network activity occurs, even when the Canvas is in full-screen mode.


Since:
MIDP 1.0

Field Summary
 IdentityArrayList _commands
           
static int DOWN
          Constant for the DOWN game action.
static int FIRE
          Constant for the FIRE game action.
static int GAME_A
          Constant for the general purpose "A" game action.
static int GAME_B
          Constant for the general purpose "B" game action.
static int GAME_C
          Constant for the general purpose "C" game action.
static int GAME_D
          Constant for the general purpose "D" game action.
static int KEY_NUM0
          keyCode for ITU-T key 0.
static int KEY_NUM1
          keyCode for ITU-T key 1.
static int KEY_NUM2
          keyCode for ITU-T key 2.
static int KEY_NUM3
          keyCode for ITU-T key 3.
static int KEY_NUM4
          keyCode for ITU-T key 4.
static int KEY_NUM5
          keyCode for ITU-T key 5.
static int KEY_NUM6
          keyCode for ITU-T key 6.
static int KEY_NUM7
          keyCode for ITU-T key 7.
static int KEY_NUM8
          keyCode for ITU-T key 8.
static int KEY_NUM9
          keyCode for ITU-T key 9.
static int KEY_POUND
          keyCode for ITU-T key "pound" (#).
static int KEY_STAR
          keyCode for ITU-T key "star" (*).
static int LEFT
          Constant for the LEFT game action.
static int RIGHT
          Constant for the RIGHT game action.
static int UP
          Constant for the UP game action.
 
Constructor Summary
protected Canvas()
          Constructs a new Canvas object.
 
Method Summary
protected  void _hideNotify()
           
protected  void _hideNotifyExternal()
           
protected  boolean _keyPressed(int keyCode)
          Called when a key is pressed.
protected  boolean _keyReleased(int keyCode)
          Called when a key is released.
protected  boolean _keyRepeated(int keyCode)
          Called when a key is repeated (held down).
protected  boolean _pointerDragged(int x, int y)
          Called when the pointer is dragged.
protected  boolean _pointerPressed(int x, int y)
          Called when the pointer is pressed.
protected  boolean _pointerReleased(int x, int y)
          Called when the pointer is released.
protected  void _showNotify()
          Forces any pending repaint requests to be serviced immediately.
 void addCommand(Command cmd)
          Adds a command to the Displayable.
 CommandListener getCommandListener()
          Retrieves the command listener for this canvas.
 Object[] getCommands()
          Retrieves all commands as an object array which may contain null values
 int getGameAction(int keyCode)
          Gets the game action associated with the given key code of the device.
 int getHeight()
          Retrieves the available height for this canvas
 int getKeyCode(int gameAction)
          Gets a key code that corresponds to the specified game action on the device.
 String getKeyName(int keyCode)
          Gets an informative key string for a key.
 Ticker getPolishTicker()
          Gets the ticker used by this Displayable.
 String getTitle()
          Gets the title of the Displayable.
 int getWidth()
          Retrieves the available width for this canvas
 boolean handlePointerTouchDown(int x, int y)
          Handles a touch down/press event.
 boolean handlePointerTouchUp(int x, int y)
          Handles a touch up/release event.
 boolean hasPointerEvents()
          Checks if the platform supports pointer press and release events.
 boolean hasPointerMotionEvents()
          Checks if the platform supports pointer motion events (pointer dragged).
 boolean hasRepeatEvents()
          Checks if the platform can generate repeat events when key is kept down.
protected  void hideNotify()
          The implementation calls hideNotify() shortly after the Canvas has been removed from the display.
protected  void hideNotifyExternal()
          Allows subclasses to react to external hide notifications much easier.
 boolean isDoubleBuffered()
          Checks if the Canvas is double buffered by the implementation.
 boolean isShown()
          Determines whether this canvas is currently being shown.
protected  void keyPressed(int keyCode)
          Called when a key is pressed.
protected  void keyReleased(int keyCode)
          Called when a key is released.
protected  void keyRepeated(int keyCode)
          Called when a key is repeated (held down).
protected abstract  void paint(Graphics g)
          Renders the Canvas.
protected  void pointerDragged(int x, int y)
          Called when the pointer is dragged.
protected  void pointerPressed(int x, int y)
          Called when the pointer is pressed.
protected  void pointerReleased(int x, int y)
          Called when the pointer is released.
 void removeCommand(Command cmd)
          Removes a command from the Displayable.
 void repaint(ClippingRegion region)
          Repaints the specified region
 void setCommandListener(CommandListener l)
          Sets the commandlistener for this canvas
 void setFullScreenMode(boolean mode)
          Controls whether the Canvas is in full-screen mode or in normal mode.
 void setTicker(Ticker ticker)
          Sets a ticker for use with this Displayable, replacing any previous ticker.
 void setTitle(String s)
          Sets the title of the Displayable.
protected  void showNotify()
          The implementation calls showNotify() immediately prior to this Canvas being made visible on the display.
 void sizeChanged(int w, int h)
          Called when the drawable area of the Canvas has been changed.
 
Methods inherited from class javax.microedition.lcdui.Canvas
repaint, repaint, serviceRepaints
 
Methods inherited from class javax.microedition.lcdui.Displayable
addCommand, getTicker, removeCommand, setCommandListener, setTicker
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

UP

public static final int UP
Constant for the UP game action.

Constant value 1 is set to UP.

See Also:
Constant Field Values

DOWN

public static final int DOWN
Constant for the DOWN game action.

Constant value 6 is set to DOWN.

See Also:
Constant Field Values

LEFT

public static final int LEFT
Constant for the LEFT game action.

Constant value 2 is set to LEFT.

See Also:
Constant Field Values

RIGHT

public static final int RIGHT
Constant for the RIGHT game action.

Constant value 5 is set to RIGHT.

See Also:
Constant Field Values

FIRE

public static final int FIRE
Constant for the FIRE game action.

Constant value 8 is set to FIRE.

See Also:
Constant Field Values

GAME_A

public static final int GAME_A
Constant for the general purpose "A" game action.

Constant value 9 is set to GAME_A.

See Also:
Constant Field Values

GAME_B

public static final int GAME_B
Constant for the general purpose "B" game action.

Constant value 10 is set to GAME_B.

See Also:
Constant Field Values

GAME_C

public static final int GAME_C
Constant for the general purpose "C" game action.

Constant value 11 is set to GAME_C.

See Also:
Constant Field Values

GAME_D

public static final int GAME_D
Constant for the general purpose "D" game action.

Constant value 12 is set to GAME_D.

See Also:
Constant Field Values

KEY_NUM0

public static final int KEY_NUM0
keyCode for ITU-T key 0.

Constant value 48 is set to KEY_NUM0.

See Also:
Constant Field Values

KEY_NUM1

public static final int KEY_NUM1
keyCode for ITU-T key 1.

Constant value 49 is set to KEY_NUM1.

See Also:
Constant Field Values

KEY_NUM2

public static final int KEY_NUM2
keyCode for ITU-T key 2.

Constant value 50 is set to KEY_NUM2.

See Also:
Constant Field Values

KEY_NUM3

public static final int KEY_NUM3
keyCode for ITU-T key 3.

Constant value 51 is set to KEY_NUM3.

See Also:
Constant Field Values

KEY_NUM4

public static final int KEY_NUM4
keyCode for ITU-T key 4.

Constant value 52 is set to KEY_NUM4.

See Also:
Constant Field Values

KEY_NUM5

public static final int KEY_NUM5
keyCode for ITU-T key 5.

Constant value 53 is set to KEY_NUM5.

See Also:
Constant Field Values

KEY_NUM6

public static final int KEY_NUM6
keyCode for ITU-T key 6.

Constant value 54 is set to KEY_NUM6.

See Also:
Constant Field Values

KEY_NUM7

public static final int KEY_NUM7
keyCode for ITU-T key 7.

Constant value 55 is set to KEY_NUM7.

See Also:
Constant Field Values

KEY_NUM8

public static final int KEY_NUM8
keyCode for ITU-T key 8.

Constant value 56 is set to KEY_NUM8.

See Also:
Constant Field Values

KEY_NUM9

public static final int KEY_NUM9
keyCode for ITU-T key 9.

Constant value 57 is set to KEY_NUM09.

See Also:
Constant Field Values

KEY_STAR

public static final int KEY_STAR
keyCode for ITU-T key "star" (*).

Constant value 42 is set to KEY_STAR.

See Also:
Constant Field Values

KEY_POUND

public static final int KEY_POUND
keyCode for ITU-T key "pound" (#).

Constant value 35 is set to KEY_POUND.

See Also:
Constant Field Values

_commands

public IdentityArrayList _commands
Constructor Detail

Canvas

protected Canvas()
Constructs a new Canvas object.

Method Detail

isDoubleBuffered

public boolean isDoubleBuffered()
Checks if the Canvas is double buffered by the implementation.

Overrides:
isDoubleBuffered in class Canvas
Returns:
true if double buffered, false otherwise

hasPointerEvents

public boolean hasPointerEvents()
Checks if the platform supports pointer press and release events.

Overrides:
hasPointerEvents in class Canvas
Returns:
true if the device supports pointer events

hasPointerMotionEvents

public boolean hasPointerMotionEvents()
Checks if the platform supports pointer motion events (pointer dragged). Applications may use this method to determine if the platform is capable of supporting motion events.

Overrides:
hasPointerMotionEvents in class Canvas
Returns:
true if the device supports pointer motion events

hasRepeatEvents

public boolean hasRepeatEvents()
Checks if the platform can generate repeat events when key is kept down.

Overrides:
hasRepeatEvents in class Canvas
Returns:
true if the device supports repeat events

getKeyCode

public int getKeyCode(int gameAction)
Gets a key code that corresponds to the specified game action on the device. The implementation is required to provide a mapping for every game action, so this method will always return a valid key code for every game action. See above for further discussion of game actions. There may be multiple keys associated with the same game action; however, this method will return only one of them. Applications should translate the key code of every key event into a game action using getGameAction(int) and then interpret the resulting game action, instead of generating a table of key codes at using this method during initialization.

The mapping between key codes and game actions will not change during the execution of the application.

Overrides:
getKeyCode in class Canvas
Parameters:
gameAction - - the game action
Returns:
a key code corresponding to this game action
Throws:
IllegalArgumentException - - if gameAction is not a valid game action

getKeyName

public String getKeyName(int keyCode)
Gets an informative key string for a key. The string returned will resemble the text physically printed on the key. This string is suitable for displaying to the user. For example, on a device with function keys F1 through F4, calling this method on the keyCode for the F1 key will return the string "F1". A typical use for this string will be to compose help text such as "Press F1 to proceed."

This method will return a non-empty string for every valid key code.

There is no direct mapping from game actions to key names. To get the string name for a game action GAME_A, the application must call


 getKeyName(getKeyCode(GAME_A));    

Overrides:
getKeyName in class Canvas
Parameters:
keyCode - - the key code being requested
Returns:
a string name for the key
Throws:
IllegalArgumentException - - if keyCode is not a valid key code

getGameAction

public int getGameAction(int keyCode)
Gets the game action associated with the given key code of the device. Returns zero if no game action is associated with this key code. See above for further discussion of game actions.

The mapping between key codes and game actions will not change during the execution of the application.

Overrides:
getGameAction in class Canvas
Parameters:
keyCode - - the key code
Returns:
the game action corresponding to this key, or 0 if none
Throws:
IllegalArgumentException - - if keyCode is not a valid key code

setFullScreenMode

public void setFullScreenMode(boolean mode)
Controls whether the Canvas is in full-screen mode or in normal mode.

Overrides:
setFullScreenMode in class Canvas
Parameters:
mode - true if the Canvas is to be in full screen mode, false otherwise
Since:
MIDP 2.0

keyPressed

protected void keyPressed(int keyCode)
Called when a key is pressed.

The getGameAction() method can be called to determine what game action, if any, is mapped to the key. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
keyPressed in class Canvas
Parameters:
keyCode - - the key code of the key that was pressed

keyRepeated

protected void keyRepeated(int keyCode)
Called when a key is repeated (held down).

The getGameAction() method can be called to determine what game action, if any, is mapped to the key. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
keyRepeated in class Canvas
Parameters:
keyCode - - the key code of the key that was repeated
See Also:
hasRepeatEvents()

keyReleased

protected void keyReleased(int keyCode)
Called when a key is released.

The getGameAction() method can be called to determine what game action, if any, is mapped to the key. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
keyReleased in class Canvas
Parameters:
keyCode - - the key code of the key that was released

pointerPressed

protected void pointerPressed(int x,
                              int y)
Called when the pointer is pressed.

The hasPointerEvents() method may be called to determine if the device supports pointer events. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
pointerPressed in class Canvas
Parameters:
x - - the horizontal location where the pointer was pressed (relative to the Canvas)
y - - the vertical location where the pointer was pressed (relative to the Canvas)

pointerReleased

protected void pointerReleased(int x,
                               int y)
Called when the pointer is released.

The hasPointerEvents() method may be called to determine if the device supports pointer events. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
pointerReleased in class Canvas
Parameters:
x - - the horizontal location where the pointer was released (relative to the Canvas)
y - - the vertical location where the pointer was released (relative to the Canvas)

pointerDragged

protected void pointerDragged(int x,
                              int y)
Called when the pointer is dragged.

The hasPointerMotionEvents() method may be called to determine if the device supports pointer events. Class Canvas has an empty implementation of this method, and the subclass has to redefine it if it wants to listen this method.

Overrides:
pointerDragged in class Canvas
Parameters:
x - - the horizontal location where the pointer was dragged (relative to the Canvas)
y - - the vertical location where the pointer was dragged (relative to the Canvas)

_keyPressed

protected boolean _keyPressed(int keyCode)
Called when a key is pressed. For backwards compatibility this method calls keyPressed(int).

Parameters:
keyCode - the key code of the key that was pressed
Returns:
true when the event was handled

_keyRepeated

protected boolean _keyRepeated(int keyCode)
Called when a key is repeated (held down). For backwards compatibility this method calls keyRepeated(int).

Parameters:
keyCode - the key code of the key that was repeated
See Also:
hasRepeatEvents()

_keyReleased

protected boolean _keyReleased(int keyCode)
Called when a key is released. For backwards compatibility this method calls keyReleased(int).

Parameters:
keyCode - the key code of the key that was released

_pointerPressed

protected boolean _pointerPressed(int x,
                                  int y)
Called when the pointer is pressed. For backwards compatibility this method calls pointerPressed(int,int).

Parameters:
x - - the horizontal location where the pointer was pressed (relative to the Canvas)
y - - the vertical location where the pointer was pressed (relative to the Canvas)

_pointerReleased

protected boolean _pointerReleased(int x,
                                   int y)
Called when the pointer is released. For backwards compatibility this method calls pointerReleased(int,int).

Parameters:
x - the horizontal location where the pointer was released (relative to the Canvas)
y - the vertical location where the pointer was released (relative to the Canvas)

_pointerDragged

protected boolean _pointerDragged(int x,
                                  int y)
Called when the pointer is dragged. For backwards compatibility this method calls pointerDragged(int,int).

Parameters:
x - the horizontal location where the pointer was dragged (relative to the Canvas)
y - the vertical location where the pointer was dragged (relative to the Canvas)

handlePointerTouchDown

public boolean handlePointerTouchDown(int x,
                                      int y)
Handles a touch down/press event. This is similar to a pointerPressed event, however it is only available on devices with screens that differentiate between press and touch events (read: BlackBerry Storm).

Parameters:
x - the absolute horizontal pixel position of the touch event
y - the absolute vertical pixel position of the touch event
Returns:
true when the event was handled

handlePointerTouchUp

public boolean handlePointerTouchUp(int x,
                                    int y)
Handles a touch up/release event. This is similar to a pointerReleased event, however it is only available on devices with screens that differentiate between press and touch events (read: BlackBerry Storm).

Parameters:
x - the absolute horizontal pixel position of the touch event
y - the absolute vertical pixel position of the touch event
Returns:
true when the event was handled

repaint

public void repaint(ClippingRegion region)
Repaints the specified region

Parameters:
region - the clipping region that contains the x, y, width and height area of the area that should be repainted.

_showNotify

protected void _showNotify()
Forces any pending repaint requests to be serviced immediately. This method blocks until the pending requests have been serviced. If there are no pending repaints, or if this canvas is not visible on the display, this call does nothing and returns immediately.

Warning: This method blocks until the call to the application's paint() method returns. The application has no control over which thread calls paint(); it may vary from implementation to implementation. If the caller of serviceRepaints() holds a lock that the paint() method acquires, this may result in deadlock. Therefore, callers of serviceRepaints() must not hold any locks that might be acquired within the paint() method. The Display.callSerially() method provides a facility where an application can be called back after painting has completed, avoiding the danger of deadlock.

See Also:
Display.callSerially(Runnable)

_hideNotify

protected void _hideNotify()

_hideNotifyExternal

protected void _hideNotifyExternal()

showNotify

protected void showNotify()
The implementation calls showNotify() immediately prior to this Canvas being made visible on the display. Canvas subclasses may override this method to perform tasks before being shown, such as setting up animations, starting timers, etc. The default implementation of this method in class Canvas is empty.

Overrides:
showNotify in class Canvas

hideNotify

protected void hideNotify()
The implementation calls hideNotify() shortly after the Canvas has been removed from the display. Canvas subclasses may override this method in order to pause animations, revoke timers, etc. The default implementation of this method in class Canvas is empty.

Overrides:
hideNotify in class Canvas

hideNotifyExternal

protected void hideNotifyExternal()
Allows subclasses to react to external hide notifications much easier. An external hide notification can originate from incoming phone calls or security prompts, for example. The default implementation does nothing.


paint

protected abstract void paint(Graphics g)
Renders the Canvas. The application must implement this method in order to paint any graphics.

The Graphics object's clip region defines the area of the screen that is considered to be invalid. A correctly-written paint() routine must paint every pixel within this region. This is necessary because the implementation is not required to clear the region prior to calling paint() on it. Thus, failing to paint every pixel may result in a portion of the previous screen image remaining visible.

Applications must not assume that they know the underlying source of the paint() call and use this assumption to paint only a subset of the pixels within the clip region. The reason is that this particular paint() call may have resulted from multiple repaint() requests, some of which may have been generated from outside the application. An application that paints only what it thinks is necessary to be painted may display incorrectly if the screen contents had been invalidated by, for example, an incoming telephone call.

Operations on this graphics object after the paint() call returns are undefined. Thus, the application must not cache this Graphics object for later use or use by another thread. It must only be used within the scope of this method.

The implementation may postpone visible effects of graphics operations until the end of the paint method.

The contents of the Canvas are never saved if it is hidden and then is made visible again. Thus, shortly after showNotify() is called, paint() will always be called with a Graphics object whose clip region specifies the entire displayable area of the Canvas. Applications must not rely on any contents being preserved from a previous occasion when the Canvas was current. This call to paint() will not necessarily occur before any other key or pointer methods are called on the Canvas. Applications whose repaint recomputation is expensive may create an offscreen Image, paint into it, and then draw this image on the Canvas when paint() is called.

The application code must never call paint(); it is called only by the implementation.

The Graphics object passed to the paint() method has the following properties:

Specified by:
paint in class Canvas
Parameters:
g - - the Graphics object to be used for rendering the Canvas

sizeChanged

public void sizeChanged(int w,
                        int h)
Called when the drawable area of the Canvas has been changed. This method has augmented semantics compared to Displayable.sizeChanged.

In addition to the causes listed in Displayable.sizeChanged, a size change can occur on a Canvas because of a change between normal and full-screen modes.

If the size of a Canvas changes while it is actually visible on the display, it may trigger an automatic repaint request. If this occurs, the call to sizeChanged will occur prior to the call to paint. If the Canvas has become smaller, the implementation may choose not to trigger a repaint request if the remaining contents of the Canvas have been preserved. Similarly, if the Canvas has become larger, the implementation may choose to trigger a repaint only for the new region. In both cases, the preserved contents must remain stationary with respect to the origin of the Canvas. If the size change is significant to the contents of the Canvas, the application must explicitly issue a repaint request for the changed areas. Note that the application's repaint request should not cause multiple repaints, since it can be coalesced with repaint requests that are already pending.

If the size of a Canvas changes while it is not visible, the implementation may choose to delay calls to sizeChanged until immediately prior to the call to showNotify. In that case, there will be only one call to sizeChanged, regardless of the number of size changes.

An application that is sensitive to size changes can update instance variables in its implementation of sizeChanged. These updated values will be available to the code in the showNotify, hideNotify, and paint methods.

Specified by:
sizeChanged in interface Displayable
Overrides:
sizeChanged in class Canvas
Parameters:
w - - the new width in pixels of the drawable area of the Canvas
h - - the new height in pixels of the drawable area of the Canvas
Since:
MIDP 2.0
See Also:
in class Displayable

isShown

public boolean isShown()
Determines whether this canvas is currently being shown.

Specified by:
isShown in interface Displayable
Overrides:
isShown in class Displayable
Returns:
true when this canvas is shown

getWidth

public int getWidth()
Retrieves the available width for this canvas

Specified by:
getWidth in interface Displayable
Overrides:
getWidth in class Displayable
Returns:
the width in pixels

getHeight

public int getHeight()
Retrieves the available height for this canvas

Specified by:
getHeight in interface Displayable
Overrides:
getHeight in class Displayable
Returns:
the height in pixels

getPolishTicker

public Ticker getPolishTicker()
Description copied from interface: Displayable
Gets the ticker used by this Displayable.

Specified by:
getPolishTicker in interface Displayable
Returns:
ticker object used, or null if no ticker is present
See Also:
Displayable.setTicker(Ticker)

setTicker

public void setTicker(Ticker ticker)
Description copied from interface: Displayable
Sets a ticker for use with this Displayable, replacing any previous ticker. If null, removes the ticker object from this Displayable. The same ticker may be shared by several Displayable objects within an application. This is done by calling setTicker() with the same Ticker object on several different Displayable objects. If the Displayable is actually visible on the display, the implementation should update the display as soon as it is feasible to do so.

The existence of a ticker may affect the size of the area available for Displayable's contents. Addition, removal, or the setting of the ticker at runtime may dynamically change the size of the content area. This is most important to be aware of when using the Canvas class. If the available area does change, the application will be notified via a call to sizeChanged().

Specified by:
setTicker in interface Displayable
Parameters:
ticker - - the ticker object used on this screen
See Also:
Displayable.getPolishTicker()

setCommandListener

public void setCommandListener(CommandListener l)
Sets the commandlistener for this canvas

Specified by:
setCommandListener in interface Displayable
Parameters:
l - the listener, use null to remove command listener

getCommandListener

public CommandListener getCommandListener()
Retrieves the command listener for this canvas.

Returns:
the current command listener, may be null

addCommand

public void addCommand(Command cmd)
Description copied from interface: Displayable
Adds a command to the Displayable. The implementation may choose, for example, to add the command to any of the available soft buttons or place it in a menu. If the added command is already in the screen (tested by comparing the object references), the method has no effect. If the Displayable is actually visible on the display, and this call affects the set of visible commands, the implementation should update the display as soon as it is feasible to do so.

Specified by:
addCommand in interface Displayable
Parameters:
cmd - the command to be added

removeCommand

public void removeCommand(Command cmd)
Description copied from interface: Displayable
Removes a command from the Displayable. If the command is not in the Displayable (tested by comparing the object references), the method has no effect. If the Displayable is actually visible on the display, and this call affects the set of visible commands, the implementation should update the display as soon as it is feasible to do so. If cmd is null, this method does nothing.

Specified by:
removeCommand in interface Displayable
Parameters:
cmd - the command to be removed

getCommands

public Object[] getCommands()
Retrieves all commands as an object array which may contain null values

Returns:
all registered commands, may be null

setTitle

public void setTitle(String s)
Description copied from interface: Displayable
Sets the title of the Displayable. If null is given, removes the title.

If the Displayable is actually visible on the display, the implementation should update the display as soon as it is feasible to do so.

The existence of a title may affect the size of the area available for Displayable content. Addition, removal, or the setting of the title text at runtime may dynamically change the size of the content area. This is most important to be aware of when using the Canvas class. If the available area does change, the application will be notified via a call to sizeChanged().

Specified by:
setTitle in interface Displayable
Overrides:
setTitle in class Displayable
Parameters:
s - - the new title, or null for no title
See Also:
Displayable.getTitle()

getTitle

public String getTitle()
Description copied from interface: Displayable
Gets the title of the Displayable. Returns null if there is no title.

Specified by:
getTitle in interface Displayable
Overrides:
getTitle in class Displayable
Returns:
the title of the instance, or null if no title
See Also:
Displayable.setTitle(java.lang.String)