Sophie

Sophie

distrib > Fedora > 13 > x86_64 > media > updates > by-pkgid > f28994e4c04c38dc8855223721331466 > files > 9

QTeXEngine-devel-0.2-4.20100119svn.fc13.x86_64.rpm

#ifndef RENDERAREA_H
#define RENDERAREA_H

#include <QWidget>

class RenderArea : public QWidget
{
public:
    enum Shape { Line, Polyline, Polygon, Rect, RoundedRect, Ellipse, Arc,
                 Chord, Pie, Path, Text, Pixmap, TiledPixmap };

    RenderArea(QWidget *parent = 0);
    void draw(QPainter *painter);

protected:
    void paintEvent(QPaintEvent *event);
};

#endif