новые иконки в OpenBoard
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.
OpenBoard/src/domain/UBPageSizeUndoCommand.h

35 lines
654 B

/*
* UBPageSizeUndoCommand.h
*
* Created on: Jul 17, 2009
* Author: Patrick
*/
#ifndef UBPageSizeUndoCommand_H_
#define UBPageSizeUndoCommand_H_
#include <QtGui>
class UBGraphicsScene;
class UBPageSizeUndoCommand : public QUndoCommand
{
public:
UBPageSizeUndoCommand(UBGraphicsScene* pScene, const QSize& previousSize, const QSize& newSize);
virtual ~UBPageSizeUndoCommand();
protected:
virtual void undo();
virtual void redo();
private:
UBGraphicsScene* mScene;
QSize mPreviousSize;
QSize mNewSize;
bool mFirstRedo;
};
#endif /* UBPageSizeUndoCommand_H_ */