Click here to Skip to main content
15,881,653 members
Articles / Programming Languages / C++

A Simple, Action Based, Undo/Redo Framework

Rate me:
Please Sign up or sign in to vote.
4.51/5 (38 votes)
16 Feb 2013CPOL5 min read 97.2K   1.9K   104  
How to use a simple, action based, undo/redo framework
/*
***************************************************************************

kis v 1

(c) 2006, Florin DUMITRESCU

mailto: fdproxy@gmail.com

$Workfile: KisActionDemoView.h $ 

***************************************************************************
*/


#pragma once


class CKisActionDemoView : public CView
{

	DECLARE_DYNCREATE(CKisActionDemoView)
	DECLARE_MESSAGE_MAP()

public:
	CKisActionDemoDoc* GetDocument() const;
	CKisActionDemoView();
	virtual ~CKisActionDemoView();

#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:
  static CBitmap s_OsbBmp;
  static CDC s_OsbDc;
  static void _PrepareOsb( CDC* a_pDC, CRect* a_pRect );

  virtual void OnInitialUpdate();
  afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	virtual void OnDraw(CDC* pDC);
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  
};


#ifndef _DEBUG  // debug version in KisActionDemoView.cpp
inline CKisActionDemoDoc* CKisActionDemoView::GetDocument() const
   { return reinterpret_cast<CKisActionDemoDoc*>(m_pDocument); }
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
zdf
Romania Romania
Just a humble programmer.

Comments and Discussions