lib
errorelement.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef ERRORELEMENT_H
00021 #define ERRORELEMENT_H
00022
00023 #include "sequenceelement.h"
00024
00025 KFORMULA_NAMESPACE_BEGIN
00026
00027 class ErrorElement : public SequenceElement {
00028 typedef SequenceElement inherited;
00029 public:
00030 ErrorElement( BasicElement* parent = 0 );
00031
00037 virtual void draw( QPainter& painter, const LuPixelRect& r,
00038 const ContextStyle& context,
00039 ContextStyle::TextStyle tstyle,
00040 ContextStyle::IndexStyle istyle,
00041 StyleAttributes& style,
00042 const LuPixelPoint& parentOrigin );
00043
00044 private:
00045 virtual QString getElementName() const { return "merror"; }
00046
00047 };
00048
00049 KFORMULA_NAMESPACE_END
00050
00051 #endif // ERRORELEMENT_H
|