public interface IFillPresenter
IFillView
Modifier and Type | Method and Description |
---|---|
boolean |
filterIsDef(java.lang.String ID)
Checks that a filter definition exists.
|
boolean |
gradientIsDef(java.lang.String ID)
Checks that a gradient definition exists.
|
void |
onFillColorChooser()
Open the color chooser to set fill color to the selected element.
|
void |
onFilterTool()
Opens the tool to edit filter definitions and apply one to the selected element.
|
void |
onGrdChoose(int clientX,
int clientY)
Open gradient chooser and select a gradient to apply
|
void |
onGrdTool()
Opens the tool to edit gradient definitions and apply one to the selected element.
|
void |
onPatternChoose(int clientX,
int clientY)
Open pattern chooser and select a pattern to apply
|
void |
onPatternTool()
Opens the tool to edit pattern definitions and apply one to the selected element.
|
boolean |
patternIsDef(java.lang.String ID)
Checks that a pattern definition exists.
|
void |
refreshView()
Asks the presenter to refresh the view.
|
void |
removeFill()
Removing the selected element fill property value.
|
void |
removeFillOpacity()
Removing the selected element fill-opacity property value.
|
void |
removeFilter()
Removing the selected element filter property value.
|
void |
setFill(java.lang.String v)
Setting the selected element fill property value.
|
void |
setFillColor(java.lang.String v)
Setting the selected element fill color value.
|
void |
setFillGradientId(java.lang.String v)
Setting the selected element fill gradient id.
|
void |
setFillGradientJS(com.google.gwt.dom.client.Element v)
Setting the selected element fill gradient.
|
void |
setFillOpacity(float v)
Setting the selected element fill-opacity property value.
|
void |
setFillPatternId(java.lang.String v)
Setting the selected element fill pattern id.
|
void |
setFillPatternJS(com.google.gwt.dom.client.Element v)
Setting the selected element fill pattern.
|
void |
setFillRule(java.lang.String v)
Setting the selected element fill-rule property value.
|
void |
setFilterId(java.lang.String v)
Setting the selected element filter id.
|
void onGrdTool()
void onPatternTool()
void onFilterTool()
void setFill(java.lang.String v)
v
- fill valuevoid removeFill()
void setFillColor(java.lang.String v)
v
- fill colorvoid setFillRule(java.lang.String v)
v
- file-rule (evenodd,nonzero)void setFillGradientId(java.lang.String v)
v
- the gradient idvoid setFillPatternId(java.lang.String v)
v
- the pattern idvoid setFilterId(java.lang.String v)
v
- the filter idvoid removeFilter()
void setFillOpacity(float v)
v
- opacity (interval [0,1])void removeFillOpacity()
void setFillGradientJS(com.google.gwt.dom.client.Element v)
v
- the gradient definition objectvoid setFillPatternJS(com.google.gwt.dom.client.Element v)
v
- the pattern definition objectvoid onGrdChoose(int clientX, int clientY)
clientX
- dialog position xclientY
- dialog position yvoid onPatternChoose(int clientX, int clientY)
clientX
- dialog position xclientY
- dialog position yboolean gradientIsDef(java.lang.String ID)
ID
- the gradient IDboolean patternIsDef(java.lang.String ID)
ID
- the pattern IDboolean filterIsDef(java.lang.String ID)
ID
- the filter IDvoid refreshView()
void onFillColorChooser()