26 #ifndef __TERRALIB_QT_SE_INTERNAL_ABSTRACTFILLWIDGET_H 
   27 #define __TERRALIB_QT_SE_INTERNAL_ABSTRACTFILLWIDGET_H 
   30 #include <QtGui/QWidget> 
   97 #endif  // __TERRALIB_QT_SE_INTERNAL_ABSTRACTFILLWIDGET_H 
A Fill specifies the pattern for filling an area geometry. 
 
virtual QString getFillType() const =0
Pure virtual method that should return a "user friendly" string that informs the fill type that can b...
 
virtual ~AbstractFillWidget()
Virtual destructor. 
 
virtual te::se::Fill * getFill() const =0
Gets the configured fill element. 
 
virtual bool setFill(const te::se::Fill *fill)=0
Sets a fill element to this widget. 
 
AbstractFillWidget(QWidget *parent=0, Qt::WindowFlags f=0)
Constructs a widget which is a child of parent, with widget flags set to f. 
 
Abstract class that represents a widget that can be used to build a fill element. ...