imageobj.h
author insilmaril
Fri Dec 29 13:52:18 2006 +0000 (2006-12-29)
changeset 415 4910fdf27142
parent 2 608f976aa7bb
child 472 83a3be747ad9
permissions -rw-r--r--
Removed some FIXMEs. Added translations
     1 #ifndef IMAGEOBJ_H
     2 #define IMAGEOBJ_H
     3 
     4 #include <QGraphicsScene>
     5 #include <QGraphicsPixmapItem>
     6 
     7 class ImageObj: public QGraphicsPixmapItem
     8 {
     9 public:
    10     ImageObj( QGraphicsScene *);
    11     ~ImageObj();
    12 	void copy (ImageObj*);
    13     void setVisibility(bool);
    14 	void save (const QString &, const char *);
    15 	bool load (const QString &);
    16 	bool load (const QPixmap &);
    17 private:
    18 	QGraphicsScene *mapScene;
    19 };
    20 #endif