private void SelectTool(QuiverEditorTool tool)
 {
     if (model.SelectedTool == tool)
     {
         return;
     }
     model.SelectTool(tool);
 }
 public ToolButtonClickedEventArgs(QuiverEditorTool tool)
 {
     Tool = tool;
 }
Exemplo n.º 3
0
 public ToolSelectedEventArgs(QuiverEditorTool previousTool, QuiverEditorTool newTool)
 {
     PreviousTool = previousTool;
     NewTool      = newTool;
 }
Exemplo n.º 4
0
 public SelectToolKeyDownEventArgs(QuiverEditorTool tool)
 {
     Tool = tool;
 }