Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Data/Command/AddRowCommand.cs @ 16566

Last change on this file since 16566 was 16566, checked in by gkronber, 5 years ago

#2520: updated HeuristicLab.DataImporter addon for new Persistence (introduced in 3.3.16)

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Linq;
25using System.Windows.Forms;
26using HeuristicLab.DataImporter.Data.CommandBase;
27using HeuristicLab.DataImporter.Data.Model;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HEAL.Attic;
30
31namespace HeuristicLab.DataImporter.Data.Command {
32  [StorableType("585E745F-B560-4D8E-BED8-BA26EC10B61B")]
33  public class AddRowCommand : ColumnGroupCommandBase {
34    [Storable]
35    private IComparable[] newRow;
36
37    private int position;
38    private ICollection<int> oldSortedColumnIndices;
39    private IEnumerable<SortOrder> oldSortOrder;
40
41    [StorableConstructor]
42    protected AddRowCommand(bool deserializing) : base(deserializing) { }
43
44    public AddRowCommand(DataSet dataSet, string columnGroupName, IComparable[] row)
45      : base(dataSet, columnGroupName) {
46      this.newRow = row;
47    }
48
49    public override void Execute() {
50      base.Execute();
51      oldSortedColumnIndices = new List<int>(ColumnGroup.SortedColumnIndexes);
52      oldSortOrder = ColumnGroup.SortOrdersForColumns.ToList();
53      ColumnGroup.AddRow(newRow);
54      this.position = ColumnGroup.RowCount - 1;
55      ColumnGroup.ResetSorting();
56      ColumnGroup.FireChanged();
57      this.ColumnGroup = null;
58    }
59
60    public override void UndoExecute() {
61      base.UndoExecute();
62      ColumnGroup.DeleteRow(position);
63      ColumnGroup.SortOrdersForColumns = oldSortOrder;
64      ColumnGroup.SortedColumnIndexes = oldSortedColumnIndices;
65      oldSortedColumnIndices = null;
66      oldSortOrder = null;
67      this.position = -1;
68      ColumnGroup.FireChanged();
69      this.ColumnGroup = null;
70    }
71
72    public override string Description {
73      get { return "New row added"; }
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.