merge from trunk revisions 58933, 58935, 58936
[mono.git] / mcs / class / System.Data / System.Data / DataViewSetting.cs
1 //
2 // System.Data.DataViewSetting
3 //
4 // Authors:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //   Atsushi Enomoto (atsushi@ximian.com)
8 //
9 // (C) Ximian, Inc. 2002
10 // Copyright (C) Tim Coleman, 2002
11 // Copyright (C) 2005 Novell Inc,
12 //
13
14 //
15 // Copyright (C) 2004-05 Novell, Inc (http://www.novell.com)
16 //
17 // Permission is hereby granted, free of charge, to any person obtaining
18 // a copy of this software and associated documentation files (the
19 // "Software"), to deal in the Software without restriction, including
20 // without limitation the rights to use, copy, modify, merge, publish,
21 // distribute, sublicense, and/or sell copies of the Software, and to
22 // permit persons to whom the Software is furnished to do so, subject to
23 // the following conditions:
24 // 
25 // The above copyright notice and this permission notice shall be
26 // included in all copies or substantial portions of the Software.
27 // 
28 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 //
36
37 using System.ComponentModel;
38
39 namespace System.Data
40 {
41         /// <summary>
42         /// Represents the default settings for ApplyDefaultSort, DataViewManager, RowFilter, RowStateFilter, Sort, and Table for DataViews created from the DataViewManager.
43         /// </summary>
44         [TypeConverterAttribute (typeof (ExpandableObjectConverter))]
45         [Serializable]
46         public class DataViewSetting
47         {
48                 #region Fields
49
50                 bool applyDefaultSort;
51                 DataViewManager dataViewManager;
52                 string rowFilter = String.Empty;
53                 DataViewRowState rowStateFilter = DataViewRowState.CurrentRows;
54                 string sort = String.Empty;
55                 DataTable dataTable;
56
57                 #endregion // Fields
58
59                 #region Constructors
60
61                 internal DataViewSetting (DataViewManager manager, DataTable table)
62                 {
63                         dataViewManager = manager;
64                         dataTable = table;
65                 }
66
67                 #endregion // Constructors
68
69                 #region Properties
70                 
71                 public bool ApplyDefaultSort {
72                         get { return applyDefaultSort; }
73                         set { applyDefaultSort = value; }
74                 }
75
76                 [Browsable (false)]
77                 public DataViewManager DataViewManager {
78                         get { return dataViewManager; }
79                 }
80
81                 public string RowFilter {
82                         get { return rowFilter; }
83                         set { rowFilter = value; }
84                 }
85
86                 public DataViewRowState RowStateFilter {
87                         get { return rowStateFilter; }
88                         set { rowStateFilter = value; }
89                 }
90
91                 public string Sort {
92                         get { return sort; }
93                         set { sort = value; }
94                 }
95
96                 [Browsable (false)]
97                 public DataTable Table {
98                         get { return dataTable; }
99                 }
100
101                 #endregion // Properties
102         }
103 }