~mantas/pinta/stable

« back to all changes in this revision

Viewing changes to Pinta.Core/HistoryItems/UpdateLayerPropertiesHistoryItem.cs

  • Committer: Iain Lane
  • Date: 2010-03-13 18:20:18 UTC
  • mfrom: (1.1.2)
  • Revision ID: git-v1:1781694a68ecf232d0110c0b2f3d4a1b96c74ec2
Merge commit 'upstream/0.2'

Conflicts:
        debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// UpdateLayerPropertiesHistoryItem.cs
 
3
//  
 
4
// Author:
 
5
//       Greg Lowe <greg@vis.net.nz>
 
6
// 
 
7
// Copyright (c) 2010 Greg Lowe
 
8
// 
 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
 
10
// of this software and associated documentation files (the "Software"), to deal
 
11
// in the Software without restriction, including without limitation the rights
 
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
13
// copies of the Software, and to permit persons to whom the Software is
 
14
// furnished to do so, subject to the following conditions:
 
15
// 
 
16
// The above copyright notice and this permission notice shall be included in
 
17
// all copies or substantial portions of the Software.
 
18
// 
 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
25
// THE SOFTWARE.
 
26
 
 
27
using System;
 
28
 
 
29
namespace Pinta.Core
 
30
{
 
31
        public class UpdateLayerPropertiesHistoryItem : BaseHistoryItem
 
32
        {
 
33
                int layer_index;
 
34
                LayerProperties initial_properties;
 
35
                LayerProperties updated_properties;
 
36
 
 
37
                public UpdateLayerPropertiesHistoryItem (
 
38
                                 string icon,
 
39
                                 string text,
 
40
                                 int layerIndex,
 
41
                                 LayerProperties initialProperties,
 
42
                                 LayerProperties updatedProperties)
 
43
                        : base (icon, text)
 
44
                {
 
45
                        layer_index = layerIndex;
 
46
                        initial_properties = initialProperties;
 
47
                        updated_properties = updatedProperties;
 
48
                }
 
49
 
 
50
                public override void Undo ()
 
51
                {                       
 
52
                        var layer = PintaCore.Layers[layer_index];
 
53
                        layer.Opacity = initial_properties.Opacity;
 
54
                        layer.Hidden = initial_properties.Hidden;
 
55
                        layer.Name = initial_properties.Name;
 
56
                }
 
57
 
 
58
                public override void Redo ()
 
59
                {
 
60
                        var layer = PintaCore.Layers[layer_index];
 
61
                        layer.Opacity = updated_properties.Opacity;
 
62
                        layer.Hidden = updated_properties.Hidden;
 
63
                        layer.Name = updated_properties.Name;
 
64
                }
 
65
 
 
66
                public override void Dispose ()
 
67
                {
 
68
                }
 
69
        }
 
70
}