You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
809 B
39 lines
809 B
#ifndef _SVGTESTWIDGET_H
|
|
#define _SVGTESTWIDGET_H
|
|
|
|
#include <tqwidget.h>
|
|
#include <tqobject.h>
|
|
#include "SVGDocument.h"
|
|
#include "KSVGCanvas.h"
|
|
|
|
class SVGTestWidget : public TQWidget
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
SVGTestWidget(const KURL &url);
|
|
~SVGTestWidget();
|
|
|
|
private slots:
|
|
void slotRenderingFinished();
|
|
|
|
protected:
|
|
virtual void paintEvent(TQPaintEvent *event);
|
|
virtual void resizeEvent(TQResizeEvent *event);
|
|
/* virtual void mousePressEvent(TQMouseEvent *event);
|
|
virtual void mouseReleaseEvent(TQMouseEvent *event);
|
|
virtual void keyPressEvent(TQKeyEvent *event);
|
|
virtual void keyReleaseEvent(TQKeyEvent *event);
|
|
virtual void mouseMoveEvent(TQMouseEvent *event);
|
|
*/
|
|
private:
|
|
TQPoint m_panningPos;
|
|
TQPoint m_oldPanningPos;
|
|
|
|
KSVG::SVGDocument *m_doc;
|
|
KSVG::KSVGCanvas *m_canvas;
|
|
};
|
|
|
|
#endif
|
|
|