-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYataData.cs
422 lines (360 loc) · 10.1 KB
/
YataData.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
using System;
using System.Drawing;
namespace yata
{
/// <summary>
/// Contains data about a col.
/// </summary>
sealed class Col
{
#region Fields
internal string text; // the colhead text
/// <summary>
/// Flags this <c>Col</c> as selected.
/// </summary>
/// <remarks>Only 1 <c>Col</c> shall ever be <c>selected</c>.</remarks>
internal bool selected;
internal int _widthtext;
internal int Width;
#endregion Fields
#region Properties
internal bool UserSized
{ get; set; }
#endregion Properties
#region Methods
/// <summary>
/// Sets <c><see cref="Width"/></c>.
/// </summary>
/// <param name="w">the width in pixels</param>
/// <param name="allowDecrease"><c>true</c> to allow decreasing the width</param>
/// <remarks>When loading a 2da width is set to the colhead first, but
/// then can be replaced by the widest cell-width under it. The col's
/// width is thus allowed to only increase when loading a 2da. When a
/// cell's text changes however the col-width should be allowed to
/// decrease if it's less wide than the current width (but not if it's
/// less wide than the colhead's width). Hence the
/// <paramref name="allowDecrease"/> parameter.</remarks>
internal void SetWidth(int w, bool allowDecrease = false)
{
if (allowDecrease || w > Width)
Width = w;
}
#endregion Methods
}
/// <summary>
/// Contains data about a row.
/// </summary>
sealed class Row
: ICloneable
{
#region Fields (static)
/// <summary>
/// Set <c>BypassEnableRowedit</c> <c>true</c> when clearing
/// <c><see cref="selected"/></c> for a synced
/// <c><see cref="YataGrid"/></c> so that the Rowedit its don't go
/// borky.
/// </summary>
internal static bool BypassEnableRowedit;
#endregion Fields (static)
#region Fields
internal int _id;
internal int _id_presort; // for tracking sorted position by UndoRedo; is set in YataGrid.ColSort()
readonly YataGrid _grid;
internal Cell[] _cells;
internal Brush _brush;
#endregion Fields
#region Properties
/// <summary>
/// The count of fields in this <c>Row</c>.
/// </summary>
internal int Length
{ get; set; }
bool _selected;
/// <summary>
/// Flags this <c>Row</c> as selected. The setter clears
/// <c><see cref="YataGrid.RangeSelect">YataGrid.RangeSelect</see></c>
/// and calls
/// <c><see cref="Yata.EnableRoweditOperations()">Yata.EnableRoweditOperations()</see></c>
/// iff <c><see cref="BypassEnableRowedit"/></c> is <c>false</c>.
/// </summary>
/// <remarks>Only 1 <c>Row</c> shall ever be <c>selected</c>.</remarks>
internal bool selected
{
get { return _selected; }
set
{
_selected = value;
_grid.RangeSelect = 0;
if (!BypassEnableRowedit) _grid._f.EnableRoweditOperations();
}
}
#endregion Properties
#region Indexers
/// <summary>
/// Gets/sets the <c><see cref="Cell"/></c> at pos
/// <c>[</c><paramref name="c"/><c>]</c>.
/// </summary>
internal Cell this[int c]
{
get { return _cells[c]; }
set { _cells[c] = value; }
}
#endregion Indexers
#region cTors
/// <summary>
/// cTor[1].
/// </summary>
/// <param name="id"></param>
/// <param name="cols"></param>
/// <param name="brush"></param>
/// <param name="grid"></param>
internal Row(int id, int cols, Brush brush, YataGrid grid)
{
_id = id;
_cells = new Cell[Length = cols];
_brush = brush;
_grid = grid;
}
/// <summary>
/// cTor[2].
/// </summary>
/// <param name="id"></param>
/// <param name="cells"></param>
/// <param name="brush"></param>
/// <param name="grid"></param>
/// <remarks>Used by <c><see cref="Clone()">Clone()</see></c>.</remarks>
internal Row(int id, Cell[] cells, Brush brush, YataGrid grid)
{
_id = id;
Length = (_cells = cells).Length;
_brush = brush;
_grid = grid;
}
#endregion cTors
#region ICloneable requirements
public object Clone()
{
var cells = new Cell[Length];
for (int i = 0; i != Length; ++i)
cells[i] = _cells[i].Clone() as Cell;
return new Row(_id, cells, _brush, _grid);
}
#endregion ICloneable requirements
}
/// <summary>
/// Contains data about a cell.
/// </summary>
sealed class Cell
: ICloneable
{
#region Enums
internal enum CellState
{
Default,
Selected,
LoadChanged,
Diff,
Replaced
}
#endregion Enums
#region Fields
/// <summary>
/// This <c>Cell's</c> text.
/// </summary>
internal string text;
internal int x;
internal int y;
internal int y_presort; // for tracking sorted position by UndoRedo; is set in YataGrid.ColSort()
internal int _widthtext;
/// <summary>
/// <c><see cref="state"/></c> is used only for priority of brush-color
/// by <c><see cref="getCellBrush()">getCellBrush()</see></c>.
/// </summary>
internal CellState state;
#endregion Fields
#region Properties
bool _selected;
/// <summary>
/// Flags this <c>Cell</c> as selected.
/// </summary>
internal bool selected
{
get { return _selected; }
set
{
_selected = value;
SetState();
// Yata.that.EnableCelleditOperations();
}
}
bool _loadchanged;
/// <summary>
/// Flags this <c>Cell</c> as loadchanged. The setter can call
/// <c><see cref="Yata.EnableGotoLoadchanged()">Yata.EnableGotoLoadchanged()</see></c>.
/// </summary>
internal bool loadchanged
{
get { return _loadchanged; }
set
{
_loadchanged = value;
SetState();
if (!YataGrid._init)
{
Yata.that.EnableGotoLoadchanged(_loadchanged || Yata.Table.anyLoadchanged());
}
// else selecting the tab at initial load/reload deters 'it_GotoLoadchanged*.Enabled'.
}
}
bool _diff;
/// <summary>
/// Flags this <c>Cell</c> as diffed.
/// </summary>
internal bool diff
{
get { return _diff; }
set { _diff = value; SetState(); }
}
bool _replaced;
/// <summary>
/// Flags this <c>Cell</c> as replaced by
/// <c><see cref="ReplaceTextDialog"/></c>.
/// </summary>
internal bool replaced
{
get { return _replaced; }
set
{
_replaced = value;
SetState();
// (_replaced=true) happens only in ReplaceTextDialog where
// EnableGotoReplaced() is taken care of if so ... it also
// happens in Undo/Redo but it's taken care of there too.
if (!_replaced && !YataGrid._init)
{
Yata.that.EnableGotoReplaced(Yata.Table.anyReplaced());
}
}
}
#endregion Properties
#region cTor
/// <summary>
/// cTor.
/// </summary>
/// <param name="r">row</param>
/// <param name="c">col</param>
/// <param name="field">text</param>
internal Cell(int r, int c, string field)
{
y = r;
x = c;
text = field;
}
#endregion cTor
#region Methods
/// <summary>
/// Sets <c><see cref="state"/></c> - priority of background
/// brush-color.
/// </summary>
void SetState()
{
if (selected) state = CellState.Selected; // highest priority
else if (replaced) state = CellState.Replaced; // 2nd priority
else if (diff) state = CellState.Diff; // 3rd priority
else if (loadchanged) state = CellState.LoadChanged; // 4th priority
else state = CellState.Default; // default.
}
/// <summary>
/// Gets a <c>Brush</c> for the background color of this <c>Cell</c>.
/// </summary>
/// <param name="edit"><c>true</c> if cell is in edit</param>
/// <returns></returns>
/// <remarks>Check that <c><see cref="state"/></c> is not
/// <c><see cref="CellState.Default">CellState.Default</see></c> before
/// call.
/// <br/><br/>
/// Called by
/// <list type="bullet">
/// <item><c><see cref="YataGrid"/>.OnPaint()</c></item>
/// <item><c><see cref="YataGrid.PaintFrozenPanel()">YataGrid.PaintFrozenPanel()</see></c></item>
/// </list></remarks>
internal Brush getCellBrush(bool edit = false)
{
switch (state)
{
case CellState.Selected:
if (edit) return ColorOptions._celledit;
return ColorOptions._cellselected;
case CellState.Diff:
return ColorOptions._celldiffed;
case CellState.LoadChanged:
return ColorOptions._cellloadchanged;
case CellState.Replaced:
return ColorOptions._cellreplaced;
}
return null; // shall never happen.
}
/// <summary>
/// Gets a <c>Color</c> for the text of this <c>Cell</c>.
/// </summary>
/// <param name="edit"><c>true</c> if cell is in edit</param>
/// <returns></returns>
/// <remarks>Check that <c><see cref="state"/></c> is not
/// <c><see cref="CellState.Default">CellState.Default</see></c> before
/// call.
/// <br/><br/>
/// Called by
/// <list type="bullet">
/// <item><c><see cref="YataGrid"/>.OnPaint()</c></item>
/// <item><c><see cref="YataGrid.PaintFrozenPanel()">YataGrid.PaintFrozenPanel()</see></c></item>
/// </list></remarks>
internal Color getCellTextColor(bool edit = false)
{
switch (state)
{
case CellState.Selected:
if (edit) return ColorOptions._celledit_t; // TODO: the text in the cell will always be hidden by the YataEditbox that appears (with the text also in it)
return ColorOptions._cellselected_t;
case CellState.Diff:
return ColorOptions._celldiffed_t;
case CellState.LoadChanged:
return ColorOptions._cellloadchanged_t;
case CellState.Replaced:
return ColorOptions._cellreplaced_t;
}
return Color.Empty; // shall never happen.
}
#endregion Methods
#region ICloneable requirements
public object Clone()
{
var cell = new Cell(y,x, String.Copy(text));
cell._loadchanged = _loadchanged; // don't set 'loadchanged' w/ the property setter.
return cell;
}
#endregion ICloneable requirements
/* public override string ToString()
{
return String.Format("Cell:{0}"
+ ". text= {1}{0}"
+ ". y= {2}{0}"
+ ". x= {3}{0}"
+ ". selected= {4}{0}"
+ ". loadchanged= {5}{0}"
+ ". diff= {6}{0}"
+ ". _widthtext= {7}{0}"
+ ". state= {8}{0}"
+ ". y_presort= {9}",
Environment.NewLine, // 0
text, // 1
y, // 2
x, // 3
selected, // 4
loadchanged, // 5
diff, // 6
_widthtext, // 7
state, // 8
y_presort); // 9
} */
}
}