Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2520: changed StorableConstructors and added StorableType attributes in HeuristicLab.DataImporter addon

File size: 2.5 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 HEAL.Attic;
29
30namespace HeuristicLab.DataImporter.Data.Command {
31  [StorableType("585E745F-B560-4D8E-BED8-BA26EC10B61B")]
32  public class AddRowCommand : ColumnGroupCommandBase {
33    [Storable]
34    private IComparable[] newRow;
35
36    private int position;
37    private ICollection<int> oldSortedColumnIndices;
38    private IEnumerable<SortOrder> oldSortOrder;
39
40    [StorableConstructor]
41    protected AddRowCommand(StorableConstructorFlag _) : base(_) { }
42
43    public AddRowCommand(DataSet dataSet, string columnGroupName, IComparable[] row)
44      : base(dataSet, columnGroupName) {
45      this.newRow = row;
46    }
47
48    public override void Execute() {
49      base.Execute();
50      oldSortedColumnIndices = new List<int>(ColumnGroup.SortedColumnIndexes);
51      oldSortOrder = ColumnGroup.SortOrdersForColumns.ToList();
52      ColumnGroup.AddRow(newRow);
53      this.position = ColumnGroup.RowCount - 1;
54      ColumnGroup.ResetSorting();
55      ColumnGroup.FireChanged();
56      this.ColumnGroup = null;
57    }
58
59    public override void UndoExecute() {
60      base.UndoExecute();
61      ColumnGroup.DeleteRow(position);
62      ColumnGroup.SortOrdersForColumns = oldSortOrder;
63      ColumnGroup.SortedColumnIndexes = oldSortedColumnIndices;
64      oldSortedColumnIndices = null;
65      oldSortOrder = null;
66      this.position = -1;
67      ColumnGroup.FireChanged();
68      this.ColumnGroup = null;
69    }
70
71    public override string Description {
72      get { return "New row added"; }
73    }
74  }
75}
Note: See TracBrowser for help on using the repository browser.