2007-04-02 17:41:47 +00:00
|
|
|
|
|
|
|
class QgsSymbol
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgssymbol.h>
|
|
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
|
|
/**Constructor*/
|
2008-10-10 20:02:22 +00:00
|
|
|
QgsSymbol(QGis::GeometryType t, QString lvalue="", QString uvalue="", QString label="");
|
2007-04-02 17:41:47 +00:00
|
|
|
/**Constructor*/
|
2008-10-10 20:02:22 +00:00
|
|
|
QgsSymbol(QGis::GeometryType t, QString lvalue, QString uvalue, QString label, QColor c);
|
2007-04-02 17:41:47 +00:00
|
|
|
QgsSymbol(const QgsSymbol&);
|
|
|
|
/**old constructors*/
|
|
|
|
QgsSymbol();
|
|
|
|
QgsSymbol(QColor c);
|
|
|
|
/**Sets the brush*/
|
|
|
|
virtual void setBrush(QBrush b);
|
|
|
|
/**Gets a reference to m_brush, Don't use the brush to change color/style */
|
|
|
|
virtual const QBrush& brush() const;
|
|
|
|
/**Set the color*/
|
|
|
|
virtual void setColor(QColor c);
|
|
|
|
/**Get the current color*/
|
|
|
|
virtual QColor color() const;
|
|
|
|
/**Get the fill color*/
|
|
|
|
virtual QColor fillColor() const;
|
|
|
|
/**Sets the fill color*/
|
|
|
|
virtual void setFillColor(QColor c);
|
|
|
|
/**Get the line width*/
|
2008-05-15 08:13:05 +00:00
|
|
|
virtual double lineWidth() const;
|
2007-04-02 17:41:47 +00:00
|
|
|
/**Sets the line width*/
|
2008-05-15 08:13:05 +00:00
|
|
|
virtual void setLineWidth(double w);
|
2007-04-02 17:41:47 +00:00
|
|
|
/**Sets the pen*/
|
|
|
|
virtual void setPen(QPen p);
|
|
|
|
/**Gets a reference to m_pen. Don't use the pen to change color/style */
|
|
|
|
virtual const QPen& pen() const;
|
|
|
|
|
|
|
|
/**Set the line (pen) style*/
|
|
|
|
virtual void setLineStyle(Qt::PenStyle s);
|
|
|
|
/**Set the fill (brush) style*/
|
|
|
|
virtual void setFillStyle(Qt::BrushStyle s);
|
|
|
|
virtual void setLowerValue(QString value);
|
|
|
|
virtual QString lowerValue() const;
|
|
|
|
virtual void setUpperValue(QString value);
|
|
|
|
virtual QString upperValue() const;
|
|
|
|
virtual void setLabel(QString label);
|
|
|
|
virtual QString label() const;
|
|
|
|
|
|
|
|
/**Set point symbol from name*/
|
|
|
|
virtual void setNamedPointSymbol(QString name);
|
|
|
|
/**Get point symbol*/
|
|
|
|
virtual QString pointSymbolName() const;
|
|
|
|
/**Set size*/
|
2008-08-02 07:54:31 +00:00
|
|
|
virtual void setPointSize(double s);
|
2007-04-02 17:41:47 +00:00
|
|
|
/**Get size*/
|
2008-08-02 07:54:31 +00:00
|
|
|
virtual double pointSize() const;
|
2007-04-02 17:41:47 +00:00
|
|
|
//! Destructor
|
|
|
|
virtual ~QgsSymbol();
|
|
|
|
|
|
|
|
//! Get a little icon for the legend
|
|
|
|
virtual QImage getLineSymbolAsImage();
|
|
|
|
|
|
|
|
//! Get a little icon for the legend
|
|
|
|
virtual QImage getPolygonSymbolAsImage();
|
|
|
|
|
|
|
|
/** Get QImage representation of point symbol with current settings
|
|
|
|
*/
|
|
|
|
virtual QImage getPointSymbolAsImage( double widthScale = 1,
|
|
|
|
bool selected = false, QColor selectionColor = Qt::yellow );
|
|
|
|
|
|
|
|
/**Writes the contents of the symbol to a configuration file
|
|
|
|
@ return true in case of success*/
|
|
|
|
virtual bool writeXML( QDomNode & item, QDomDocument & document ) const;
|
|
|
|
/**Reads the contents of the symbol from a configuration file
|
|
|
|
@ return true in case of success*/
|
|
|
|
virtual bool readXML( QDomNode & symbol );
|
|
|
|
/**Returns if this symbol is point/ line or polygon*/
|
2008-10-10 20:02:22 +00:00
|
|
|
QGis::GeometryType type() const;
|
2007-04-02 17:41:47 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|