-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYata_menucol.cs
343 lines (287 loc) · 8.95 KB
/
Yata_menucol.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
using System;
using System.Drawing;
using System.Windows.Forms;
namespace yata
{
sealed partial class Yata
{
#region Handlers (editcol)
/// <summary>
/// Handles the <c>DropDownOpening</c> event for
/// <c><see cref="it_MenuCol"/></c>. Deters if subits ought be enabled.
/// </summary>
/// <param name="sender"><c>it_MenuCol</c></param>
/// <param name="e"></param>
void col_dropdownopening(object sender, EventArgs e)
{
if (Table != null && !isTableDiffed())
{
bool isColSelected = Table.getSelectedCol() > 0; // id-col is disallowed
it_DeselectCol.Enabled = isColSelected;
it_CreateHead .Enabled = !Table.Readonly;
it_DeleteHead .Enabled = !Table.Readonly && isColSelected && Table.ColCount > 2;
it_RelabelHead.Enabled = !Table.Readonly && isColSelected;
it_CopyCells .Enabled = isColSelected;
it_PasteCells .Enabled = isColSelected && !Table.Readonly && _copyc.Count != 0;
it_SelectCol .Enabled = true;
}
else
{
it_DeselectCol.Enabled =
it_CreateHead .Enabled =
it_DeleteHead .Enabled =
it_RelabelHead.Enabled =
it_CopyCells .Enabled =
it_PasteCells .Enabled =
it_SelectCol .Enabled = false;
}
}
/// <summary>
/// Handles the <c>DropDownOpening</c> event for
/// <c><see cref="it_SelectCol"/></c>. Populates a submenu with
/// colhead-labels.
/// </summary>
/// <param name="sender"><c>it_SelectCol</c></param>
/// <param name="e"></param>
/// <remarks>The select it has a fake subit that is instantiated in the
/// designer-code so that the select it displays with a right-arrow.</remarks>
void colist_dropdownopening(object sender, EventArgs e)
{
ToolStripItemCollection its = it_SelectCol.DropDownItems;
for (int i = 0; i != its.Count; ++i)
its[i].Click -= click_itcol;
its.Clear();
ToolStripItem it;
for (int i = 0; i != Table.Fields.Length; ++i)
{
it = its.Add(Table.Fields[i]);
it.Padding = new Padding(0);
it.Tag = i + 1;
if (i + 1 < Table.FrozenCount)
it.ForeColor = Color.DarkKhaki;
else
it.Click += click_itcol;
}
}
/// <summary>
/// Handles the <c>Click</c> event on the col-list its.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void click_itcol(object sender, EventArgs e)
{
Table.SelectCol((int)(sender as ToolStripItem).Tag);
EnableCelleditOperations();
}
/// <summary>
/// Deselects <c><see cref="Col">Col</see></c>.
/// </summary>
/// <param name="sender"><c><see cref="it_DeselectCol"/></c></param>
/// <param name="e"></param>
void editcolclick_Deselect(object sender, EventArgs e)
{
int selc = Table.getSelectedCol();
Table.Cols[selc].selected = false;
int selr = Table.getSelectedRow();
for (int r = 0; r != Table.RowCount; ++r)
{
if ( (r > selr && r > selr + Table.RangeSelect)
|| (r < selr && r < selr + Table.RangeSelect))
{
Table[r, selc].selected = false;
}
}
YataGrid table; // do special sync ->
if (Table == _diff1) table = _diff2;
else if (Table == _diff2) table = _diff1;
else table = null;
if (table != null)
{
selc = table.getSelectedCol();
table.Cols[selc].selected = false;
selr = table.getSelectedRow();
for (int r = 0; r != table.RowCount; ++r)
{
if ( (r > selr && r > selr + table.RangeSelect)
|| (r < selr && r < selr + table.RangeSelect))
{
table[r, selc].selected = false;
}
}
}
EnableCelleditOperations();
Table.Invalidator(YataGrid.INVALID_GRID | YataGrid.INVALID_COLS); // NOTE: INVALID_COLS does not appear to be needed.
}
const string _warnColhead = "This operation cannot be undone. It clears the Undo/Redo stacks.";
// + " Tip: tidy and save the 2da first.";
/// <summary>
/// Opens a text-input dialog for creating a col at a selected col-id or
/// at the far right if no col is selected.
/// </summary>
/// <param name="sender"><c><see cref="it_CreateHead"/></c></param>
/// <param name="e"></param>
void editcolclick_CreateHead(object sender, EventArgs e)
{
const string head = _warnColhead + " Are you sure you want to create a col ...";
using (var ib = new Infobox(Infobox.Title_infor,
head,
null,
InfoboxType.Info,
InfoboxButtons.CancelYes))
{
if (ib.ShowDialog(this) == DialogResult.OK)
{
int selc = Table.getSelectedCol();
using (var idc = new InputDialog(this, InputDialog.Idtype.createhead, selc))
{
if (idc.ShowDialog(this) == DialogResult.OK
&& InputDialog._colabel.Length != 0)
{
Obfuscate();
// DrawRegulator.SuspendDrawing(Table);
// create at far right if no col selected
if (selc < Table.FrozenCount) // ~safety.
selc = Table.ColCount;
steadystate();
Table.CreateCol(selc);
it_freeze1.Enabled = Table.ColCount > 1;
it_freeze2.Enabled = Table.ColCount > 2;
// DrawRegulator.ResumeDrawing(Table);
Obfuscate(false);
}
}
}
}
}
/// <summary>
/// Deletes a selected col w/ confirmation.
/// </summary>
/// <param name="sender"><c><see cref="it_DeleteHead"/></c></param>
/// <param name="e"></param>
void editcolclick_DeleteHead(object sender, EventArgs e)
{
int selc = Table.getSelectedCol();
const string head = _warnColhead + " Are you sure you want to delete the selected col ...";
using (var ib = new Infobox(Infobox.Title_infor,
head,
Table.Fields[selc - 1],
InfoboxType.Info,
InfoboxButtons.CancelYes))
{
if (ib.ShowDialog(this) == DialogResult.OK)
{
Obfuscate();
// DrawRegulator.SuspendDrawing(Table);
steadystate();
Table.DeleteCol(selc);
it_freeze1.Enabled = Table.ColCount > 1;
it_freeze2.Enabled = Table.ColCount > 2;
// DrawRegulator.ResumeDrawing(Table);
Obfuscate(false);
}
}
}
/// <summary>
/// Puts the table in a neutral state.
/// </summary>
/// <remarks>Helper for
/// <list type="bullet">
/// <item><c><see cref="editcolclick_CreateHead()">editcolclick_CreateHead()</see></c></item>
/// <item><c><see cref="editcolclick_DeleteHead()">editcolclick_DeleteHead()</see></c></item>
/// </list></remarks>
void steadystate()
{
it_freeze1.Checked =
it_freeze2.Checked = false;
Table.FrozenCount = YataGrid.FreezeId;
Table.ClearSelects();
Table.ClearReplaced();
Table.ClearLoadchanged();
tabclick_DiffReset(null, EventArgs.Empty);
if (Table.Propanel != null && Table.Propanel.Visible)
{
Table.Propanel.Hide();
it_PropanelLoc .Enabled =
it_PropanelLoc_pre.Enabled = false;
}
Table._ur.Clear();
}
/// <summary>
/// Relabels the colhead of a selected col.
/// </summary>
/// <param name="sender"><c><see cref="it_RelabelHead"/></c></param>
/// <param name="e"></param>
void editcolclick_RelabelHead(object sender, EventArgs e)
{
int selc = Table.getSelectedCol();
string head = Table.Fields[selc - 1];
InputDialog._colabel = head;
using (var idc = new InputDialog(this, InputDialog.Idtype.relabelhead, selc))
{
if (idc.ShowDialog(this) == DialogResult.OK
&& InputDialog._colabel.Length != 0
&& InputDialog._colabel != head)
{
Table.RelabelCol(selc);
}
}
}
/// <summary>
/// Copies all cell-fields in a selected col to
/// <c><see cref="_copyc"/></c>.
/// </summary>
/// <param name="sender"><c><see cref="it_CopyCell"/></c></param>
/// <param name="e"></param>
void editcolclick_CopyCol(object sender, EventArgs e)
{
_copyc.Clear();
int selc = Table.getSelectedCol();
for (int r = 0; r != Table.RowCount; ++r)
_copyc.Add(Table[r, selc].text);
if (_fclip != null)
_fclip.SetColBufferText();
}
/// <summary>
/// Pastes <c><see cref="_copyc"/></c> to the cell-fields of a selected
/// col.
/// </summary>
/// <param name="sender"><c><see cref="it_PasteCell"/></c></param>
/// <param name="e"></param>
void editcolclick_PasteCol(object sender, EventArgs e)
{
int diff; string head;
if (Table.RowCount < _copyc.Count)
{
diff = _copyc.Count - Table.RowCount;
head = "The table has " + diff + " less row" + (diff == 1 ? String.Empty : "s") + " than the copy.";
}
else if (Table.RowCount > _copyc.Count)
{
diff = Table.RowCount - _copyc.Count;
head = "The copy has " + diff + " less row" + (diff == 1 ? String.Empty : "s") + " than the table.";
}
else { diff = 0; head = null; }
if (diff != 0)
{
using (var ib = new Infobox(Infobox.Title_warni,
head + " Proceed ...",
null,
InfoboxType.Warn,
InfoboxButtons.CancelYes))
{
if (ib.ShowDialog(this) == DialogResult.OK)
diff = 0;
}
}
if (diff == 0)
{
Obfuscate();
// DrawRegulator.SuspendDrawing(Table);
Table.PasteCol(_copyc);
// DrawRegulator.ResumeDrawing(Table);
Obfuscate(false);
}
}
#endregion Handlers (editcol)
}
}