コード例 #1
0
 public SetTextCommand(String text, VideoEditor videoEditor, History history) : base(videoEditor, history)
 {
     this.text = text;
 }
コード例 #2
0
 public AbstractUndoableCommand(VideoEditor videoEditor, History history)
 {
     this.videoEditor = videoEditor;
     this.history     = history;
 }
コード例 #3
0
 public SetContrastCommand(float contrast, VideoEditor videoEditor, History history) : base(videoEditor, history)
 {
     prevContrast  = videoEditor.GetContrast();
     this.contrast = contrast;
 }