CraftSynth.ImageEditor – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace CraftSynth.ImageEditor
2 {
3 public class LayerEdit
4 {
5 private string _name;
6 private bool _visible;
7 private bool _active;
8 private bool _new;
9 private bool _deleted;
10  
11 /// <summary>
12 /// Layer Name
13 /// </summary>
14 public string LayerName
15 {
16 get { return _name; }
17 set { _name = value; }
18 }
19  
20 /// <summary>
21 /// IsVisible is True if this Layer is visible, else False
22 /// </summary>
23 public bool LayerVisible
24 {
25 get { return _visible; }
26 set { _visible = value; }
27 }
28  
29 /// <summary>
30 /// IsActive is True if this is the active Layer, else False
31 /// </summary>
32 public bool LayerActive
33 {
34 get { return _active; }
35 set { _active = value; }
36 }
37  
38 /// <summary>
39 /// True if Layer was added in the dialog
40 /// </summary>
41 public bool LayerNew
42 {
43 get { return _new; }
44 set { _new = value; }
45 }
46  
47 /// <summary>
48 /// True if Layer was deleted in the dialog
49 /// </summary>
50 public bool LayerDeleted
51 {
52 get { return _deleted; }
53 set { _deleted = value; }
54 }
55 }
56 }