Exemplo n.º 1
0
 public Operation(UndoRedoBuffer parent, BitmapView view, Model.Bitmap bitmap, int x, int y, int from, int to)
     : base(parent)
 {
     m_View   = view;
     m_Bitmap = bitmap;
     m_X      = x;
     m_Y      = y;
     m_From   = from;
     m_To     = to;
 }
Exemplo n.º 2
0
 protected Entry(UndoRedoBuffer parent)
 {
     m_Parent        = parent;
     m_CanBeModified = true;
 }
Exemplo n.º 3
0
 private void m_UndoRedoBuffer_OnRedoAvailableChanged(Controls.UndoRedoBuffer source)
 {
     m_EditRedoMenuItem.Enabled = m_UndoRedoBuffer.RedoAvailable;
 }