Class PALplate.interactors.backdrop_parent
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class PALplate.interactors.backdrop_parent

java.lang.Object
   |
   +----sub_arctic.lib.min_interactor
           |
           +----sub_arctic.lib.base_interactor
                   |
                   +----sub_arctic.lib.base_parent_interactor
                           |
                           +----PALplate.interactors.backdrop_parent

public class backdrop_parent
extends base_parent_interactor
Modified to inherit from base_parent_interactor instead of base_interactor. Otherwise the same as the sub_arctic icon class.

A simple interactor that just fills its area with a pattern, but otherwise does nothing.


Variable Index

 o _pattern
The background pattern that we fill our area with.

Constructor Index

 o backdrop_parent(int, int, int, int, loaded_image)
Full constructor.
 o backdrop_parent(int, int, loaded_image)
Constructor assuming default position of 0,0.
 o backdrop_parent(loaded_image)
Constructor assuming default position of 0,0, and (temporary) default size.

Method Index

 o draw_self_local(drawable)
Draw self using pattern fill.
 o pattern()
The background pattern that we fill our area with.
 o set_pattern(loaded_image)
Set the background pattern

Variables

 o _pattern
  protected loaded_image _pattern
The background pattern that we fill our area with.

Constructors

 o backdrop_parent
  public backdrop_parent(int xv,
                         int yv,
                         int wv,
                         int hv,
                         loaded_image pat)
Full constructor.
Parameters:
int - xv x position of the area.
int - yv y position of the area.
int - wv width of the area.
int - hv height of the area.
loaded_image - pat the pattern we tile the area with.
 o backdrop_parent
  public backdrop_parent(int wv,
                         int hv,
                         loaded_image pat)
Constructor assuming default position of 0,0.
Parameters:
int - wv width of the area.
int - hv height of the area.
loaded_image - pat the pattern we tile the area with.
 o backdrop_parent
  public backdrop_parent(loaded_image pat)
Constructor assuming default position of 0,0, and (temporary) default size. Typically size will be constrained to something.
Parameters:
loaded_image - pat the pattern we tile the area with.

Methods

 o pattern
  public loaded_image pattern()
The background pattern that we fill our area with.
 o set_pattern
  public void set_pattern(loaded_image pat)
Set the background pattern
 o draw_self_local
  protected void draw_self_local(drawable d)
Draw self using pattern fill.
Parameters:
drawable - d the drawing surface we place our output on.
Overrides:
draw_self_local in class base_interactor

All Packages  Class Hierarchy  This Package  Previous  Next  Index