-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathFastGridModelBase.cs
284 lines (232 loc) · 7.24 KB
/
FastGridModelBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;
namespace FastWpfGrid
{
public abstract class FastGridModelBase : IFastGridModel, IFastGridCell, IFastGridCellBlock
{
private List<IFastGridView> _grids = new List<IFastGridView>();
private int? _requestedRow;
private int? _requestedColumn;
private HashSet<int> _frozenRows = new HashSet<int>();
private HashSet<int> _hiddenRows = new HashSet<int>();
private HashSet<int> _frozenColumns = new HashSet<int>();
private HashSet<int> _hiddenColumns = new HashSet<int>();
public abstract int ColumnCount { get; }
public abstract int RowCount { get; }
public virtual string GetCellText(int row, int column)
{
return String.Format("Row={0}, Column={1}", row + 1, column + 1);
}
public virtual void SetCellText(int row, int column, string value)
{
}
public virtual IFastGridCell GetCell(IFastGridView view, int row, int column)
{
_requestedRow = row;
_requestedColumn = column;
return this;
}
public virtual string GetRowHeaderText(int row)
{
return (row + 1).ToString();
}
public virtual IFastGridCell GetRowHeader(IFastGridView view, int row)
{
_requestedRow = row;
_requestedColumn = null;
return this;
}
public virtual IFastGridCell GetColumnHeader(IFastGridView view, int column)
{
_requestedColumn = column;
_requestedRow = null;
return this;
}
public virtual IFastGridCell GetGridHeader(IFastGridView view)
{
return new FastGridCellImpl();
}
public virtual string GetColumnHeaderText(int column)
{
return "Column " + (column + 1).ToString();
}
public virtual void AttachView(IFastGridView view)
{
_grids.Add(view);
}
public virtual void DetachView(IFastGridView view)
{
_grids.Remove(view);
}
public virtual void HandleCommand(IFastGridView view, FastGridCellAddress address, object commandParameter, ref bool handled)
{
}
public virtual HashSet<int> GetHiddenColumns(IFastGridView view)
{
return _hiddenColumns;
}
public virtual HashSet<int> GetFrozenColumns(IFastGridView view)
{
return _frozenColumns;
}
public virtual HashSet<int> GetHiddenRows(IFastGridView view)
{
return _hiddenRows;
}
public virtual HashSet<int> GetFrozenRows(IFastGridView view)
{
return _frozenRows;
}
public void SetColumnArrange(HashSet<int> hidden, HashSet<int> frozen)
{
_hiddenColumns = hidden;
_frozenColumns = frozen;
NotifyColumnArrangeChanged();
}
public void SetRowArrange(HashSet<int> hidden, HashSet<int> frozen)
{
_hiddenRows = hidden;
_frozenRows = frozen;
NotifyRowArrangeChanged();
}
public void InvalidateAll()
{
_grids.ForEach(x => x.InvalidateAll());
}
public void InvalidateCell(int row, int column)
{
_grids.ForEach(x => x.InvalidateModelCell(row, column));
}
public void InvalidateRowHeader(int row)
{
_grids.ForEach(x => x.InvalidateModelRowHeader(row));
}
public void InvalidateColumnHeader(int column)
{
_grids.ForEach(x => x.InvalidateModelColumnHeader(column));
}
public void NotifyAddedRows()
{
_grids.ForEach(x => x.NotifyAddedRows());
}
public void NotifyRefresh()
{
_grids.ForEach(x => x.NotifyRefresh());
}
public void NotifyColumnArrangeChanged()
{
_grids.ForEach(x => x.NotifyColumnArrangeChanged());
}
public void NotifyRowArrangeChanged()
{
_grids.ForEach(x => x.NotifyRowArrangeChanged());
}
public virtual Color? BackgroundColor
{
get { return null; }
}
public virtual int BlockCount
{
get { return 1; }
}
public virtual int RightAlignBlockCount
{
get { return 0; }
}
public virtual IFastGridCellBlock GetBlock(int blockIndex)
{
return this;
}
public virtual string GetEditText()
{
return GetCellText(_requestedRow.Value, _requestedColumn.Value);
}
public virtual void SetEditText(string value)
{
SetCellText(_requestedRow.Value, _requestedColumn.Value, value);
}
public virtual void HandleSelectionCommand(IFastGridView view, string command)
{
}
public virtual string ToolTipText
{
get { return null; }
}
public virtual TooltipVisibilityMode ToolTipVisibility
{
get { return TooltipVisibilityMode.Always; }
}
public virtual FastGridBlockType BlockType
{
get { return FastGridBlockType.Text; }
}
public virtual bool IsItalic
{
get { return false; }
}
public virtual bool IsBold
{
get { return false; }
}
public virtual Color? FontColor
{
get { return null; }
}
public virtual string TextData
{
get
{
if (_requestedColumn == null && _requestedRow == null) return null;
if (_requestedColumn != null && _requestedRow != null) return GetCellText(_requestedRow.Value, _requestedColumn.Value);
if (_requestedColumn != null) return GetColumnHeaderText(_requestedColumn.Value);
if (_requestedRow != null) return GetRowHeaderText(_requestedRow.Value);
return null;
}
}
public virtual string ImageSource
{
get { return null; }
}
public virtual int ImageWidth
{
get { return 16; }
}
public virtual int ImageHeight
{
get { return 16; }
}
public virtual MouseHoverBehaviours MouseHoverBehaviour
{
get { return MouseHoverBehaviours.ShowAllWhenMouseOut; }
}
public virtual object CommandParameter
{
get { return null; }
}
public virtual string ToolTip
{
get { return null; }
}
public virtual CellDecoration Decoration
{
get { return CellDecoration.None; }
}
public virtual Color? DecorationColor
{
get { return null; }
}
public virtual int? SelectedRowCountLimit
{
get { return null; }
}
public virtual int? SelectedColumnCountLimit
{
get { return null; }
}
}
}