Пример #1
0
        public FloatTileSelectionCommand(MultiTileGridLayer source, ITileSelectionLayer selectLayer)
        {
            _tileSource = source;
            _command    = new TileReplace2DCommand(source);

            _selectLayer = selectLayer;
        }
Пример #2
0
 public DeleteTileSelectionCommand(ITileSelectionLayer selectLayer)
 {
     _selectLayer = selectLayer;
 }
Пример #3
0
 public MoveTileSelectionCommand(ITileSelectionLayer selectLayer, TileCoord previousLocation, TileCoord newLocation)
 {
     _selectLayer = selectLayer;
     _prev        = previousLocation;
     _new         = newLocation;
 }
Пример #4
0
 public ModifyRemoveTileSelectionCommand(ITileSelectionLayer selectLayer)
 {
     _selectLayer = selectLayer;
     _diff        = new List <TileCoord>();
 }
Пример #5
0
 public PasteFloatingSelectionCommand(ITileSelectionLayer selectLayer, TileSelection selection, TileCoord centerOffset)
 {
     _selectLayer  = selectLayer;
     _selection    = selection;
     _centerOffset = centerOffset;
 }
Пример #6
0
 public TileSelectTool(CommandHistory history, MultiTileGridLayer layer, ObservableCollection<Annotation> annots, ITileSelectionLayer selectLayer)
     : base(history, layer)
 {
     _annots = annots;
     _selectLayer = selectLayer;
 }
Пример #7
0
 public TileSelectTool(CommandHistory history, MultiTileGridLayer layer, ObservableCollection <Annotation> annots, ITileSelectionLayer selectLayer)
     : base(history, layer)
 {
     _annots      = annots;
     _selectLayer = selectLayer;
 }
Пример #8
0
 public CreateTileSelectionCommand(ITileSelectionLayer selectLayer)
 {
     _selectLayer = selectLayer;
 }
Пример #9
0
 public PasteFloatingSelectionCommand(ITileSelectionLayer selectLayer, TileSelection selection, TileCoord centerOffset)
 {
     _selectLayer = selectLayer;
     _selection = selection;
     _centerOffset = centerOffset;
 }
Пример #10
0
 public MoveTileSelectionCommand(ITileSelectionLayer selectLayer, TileCoord previousLocation, TileCoord newLocation)
 {
     _selectLayer = selectLayer;
     _prev = previousLocation;
     _new = newLocation;
 }
Пример #11
0
 public ModifyRemoveTileSelectionCommand(ITileSelectionLayer selectLayer)
 {
     _selectLayer = selectLayer;
     _diff = new List<TileCoord>();
 }
Пример #12
0
        public FloatTileSelectionCommand(MultiTileGridLayer source, ITileSelectionLayer selectLayer)
        {
            _tileSource = source;
            _command = new TileReplace2DCommand(source);

            _selectLayer = selectLayer;
        }