skin: apply new general skin
[sdk/emulator/qemu.git] / tizen / src / ui / layout / displaytype.h
index edfb59a..64b6332 100644 (file)
 class DisplayType
 {
 public:
-    DisplayType(QRect rect, int angle);
+    DisplayType(QRect rect, int angle, QPixmap mask);
     ~DisplayType();
 
     void setRect(QRect rect);
     QRect getRect();
+    void setOffset(QPoint offset);
+    QPoint getOffset();
     int getAngle();
+    QPixmap getMask();
 
 private:
     QRect rect;
+    QPoint offset;
     int angle;
+    QPixmap mask;
 };
 
 #endif // DISPLAYTYPE_H