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.
-
_pattern
- The background pattern that we fill our area with.
-
backdrop_parent(int, int, int, int, loaded_image)
-
Full constructor.
-
backdrop_parent(int, int, loaded_image)
-
Constructor assuming default position of 0,0.
-
backdrop_parent(loaded_image)
-
Constructor assuming default position of 0,0, and (temporary)
default size.
-
draw_self_local(drawable)
-
Draw self using pattern fill.
-
pattern()
- The background pattern that we fill our area with.
-
set_pattern(loaded_image)
- Set the background pattern
_pattern
protected loaded_image _pattern
- The background pattern that we fill our area with.
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.
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.
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.
pattern
public loaded_image pattern()
- The background pattern that we fill our area with.
set_pattern
public void set_pattern(loaded_image pat)
- Set the background pattern
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