imageeditorengine/filters/FilterDraw/Inc/cfilterdraw.h
changeset 8 18b321db4884
parent 1 edfc90759b9f
--- a/imageeditorengine/filters/FilterDraw/Inc/cfilterdraw.h	Fri Jan 29 13:53:17 2010 +0200
+++ b/imageeditorengine/filters/FilterDraw/Inc/cfilterdraw.h	Thu Jun 03 18:57:10 2010 +0800
@@ -58,14 +58,20 @@
 	    void RealToViewedFactories(TReal& aWidth, TReal& aHeight);
 	
 	private: // Data
-	    /// Data is ready to be rendered
+	    // Data is ready to be rendered
 	    TBool iReadyToRender;
+	    //If it can redo
+	    TBool iCanRedo;
 		/// Data buffer
-		TUint32* iData;
-		/// Drawed lines
+	    static	TUint32* iData;
+		// Drawed lines
 		RArray<RDrawPath> iPaths;	
-		/// Bitmap size 
-		TSize iBitmapSize;				
+		// Bitmap size 
+		TSize iBitmapSize;	
+		//Undo Path
+		RArray<RDrawPath> iUndoPaths;
+		CFbsBitmap* iBitmap;
+		CFbsBitmap* iMask;
     };
 
 #endif // __CFILTER_DRAW_H_