duheng
2024-07-25 713d5218ee2b47c0c92f75c19c49bb7e883cd214
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
using DevExpress.Office.Utils;
using IStation.WinFrmUI.CalcErQu;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Windows.Forms;
 
namespace IStation.WinFrmUI
{
 
    public partial class HourBlockRangePanel : Panel
    {
        public HourBlockRangePanel()
        {
            InitializeMenu();
        }
        /// <summary>
        /// 绘制对象列表
        /// </summary> 
        List<HourSmallBlock> _block_item_list = new List<HourSmallBlock>();
 
        public List<int> GetUseHourValues()
        {
            List<int> list = new List<int>();
 
            foreach (var v in _block_item_list)
            {
                if (v.IsSelected)
                {
                    list.Add( v.Hour );
                } 
            }
 
            return list;
        }
 
        public Dictionary<int, double> GetLimitHourValues()
        {
            Dictionary<int,double> list = new Dictionary<int, double>();
 
            foreach (var v in _block_item_list)
            {
                if (v.Mark>0)
                {
                    list[v.Hour] = v.Mark;
                }
            }
 
            return list;
        }
 
        private void MenuSetLevelHeight_Click(object sender, EventArgs e)
        {
            if (_clickRightBlock == null) return;
 
            InputWaterLevelDlg frm  = new InputWaterLevelDlg(); ;
            if (frm.ShowDialog() != DialogResult.OK)
                return;
 
            _clickRightBlock.Mark = frm.WaterLevel;
 
            this.Invalidate(new System.Drawing.Rectangle(
(int)_clickRightBlock.Rectangle.X, (int)_clickRightBlock.Rectangle.Y,
_clickRightBlock.Width, _clickRightBlock.Height));//刷新局部区域
        }
 
        private void MenuClearLevelHeight_Click(object sender, EventArgs e)
        {
            if (_clickRightBlock == null) return;
 
            _clickRightBlock.Mark = -1;
 
            this.Invalidate(new System.Drawing.Rectangle(
(int)_clickRightBlock.Rectangle.X, (int)_clickRightBlock.Rectangle.Y,
_clickRightBlock.Width, _clickRightBlock.Height));//刷新局部区域
        }
        /// <summary>
        /// 初始化数据
        /// </summary> 
        public void InitialTimeBlock()
        {
            _block_item_list = new List<HourSmallBlock>();
 
 
            for (var time = 0; time < 24; time = time + 1)
            {
                var block = new HourSmallBlock(time);
 
                _block_item_list.Add(block);
            }
 
 
            if (!_block_item_list.Any())
                return;
 
            InitialItemSize();
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="start"></param>
        /// <param name="end"></param>
        /// <param name="isSelect"></param>
        public void SetRangePumpCount(int start, int end, bool isSelect, bool isRefreshUI)
        {
            foreach (var item in _block_item_list)
            {
                if (item.Hour >= start && item.Hour < end)
                {
                    if (isSelect)
                    {
                        item.IsSelected = true;
                        item.DefaultColor = SelectColor;
                    }
                    else
                    {
                        item.IsSelected = false;
                        item.DefaultColor = Color.White;
                    }
 
                }
            }
            if (isRefreshUI)
                this.Refresh();
        }
 
 
 
 
        /// <summary>
        /// 初始化项大小
        /// </summary>
        public void InitialItemSize()
        {
            if (_block_item_list == null || !_block_item_list.Any())
                return;
 
 
 
            int last_right_x = 10;
            int last_loc_y = 10;
            for (int i = 0; i < _block_item_list.Count; i++)
            {
                var item = _block_item_list[i];
                var current_loc_x = last_right_x;
 
                if (item.TextVisible)
                {
                    if (current_loc_x + item.Width > this.Width - 50)
                    {
                        last_loc_y = last_loc_y + item.Height + 10;
                        current_loc_x = 10;
                        item.IsLineStartBlck = true;
                        _block_item_list[i - 1].IsLineEndBlck = true;
                    }
 
                }
                else
                {
                    if (current_loc_x + item.Width > this.Width - 20)
                    {
                        last_loc_y = last_loc_y + item.Height + 10;
                        current_loc_x = 10;
                        item.IsLineStartBlck = true;
                        _block_item_list[i - 1].IsLineEndBlck = true;
                    }
                }
                if (i == 0)
                {
                    item.IsLineStartBlck = true;
                }
                if (i == _block_item_list.Count - 1)
                {
                    item.IsLineEndBlck = true;
                }
                last_right_x = current_loc_x + item.Width;
                item.Resize(current_loc_x, last_loc_y);
            }
 
 
 
            this.Refresh();
        }
 
 
 
 
 
 
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="point"></param>
        private HourSmallBlock GetCaptureBlock(Point point)
        {
            for (int index = 0; index < _block_item_list.Count; index++)
            {
                var item = _block_item_list[index];
                if (!item.ContainsPoint(point))
                    continue;
                return item;
            }
            return null;
        }
 
       
 
 
 
 
        #region override
        HourSmallBlock _clickRightBlock = null;
        HourSmallBlock _startSelBlock = null;
        HourSmallBlock _endSelBlock = null;
        private ContextMenuStrip contextMenuStrip1;
 
 
        /// <summary>
        ///  是否是选择状态
        /// </summary> 
        bool _isSelectBlockIng = false;
 
 
 
        /// <summary>
        /// 鼠标点击事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseDown(MouseEventArgs e)
        { 
            if (e.Clicks == 2)
            {
                _clickRightBlock = null;
                var tipSelBlock = GetCaptureBlock(e.Location);
                if (tipSelBlock == null)
                    return;
                if(tipSelBlock.IsSelected)
                {
                    tipSelBlock.DefaultColor = Color.White;
                    tipSelBlock.IsSelected = false;
                }
                else
                {
                    tipSelBlock.DefaultColor = SelectColor;
                    tipSelBlock.IsSelected = true ;
                }
                this.Invalidate(new System.Drawing.Rectangle(
(int)tipSelBlock.Rectangle.X, (int)tipSelBlock.Rectangle.Y,
tipSelBlock.Width, tipSelBlock.Height));//刷新局部区域
                if (OnFreshTotalHour != null)
                {
                    int hhh = 0;
                    foreach (var v in _block_item_list)
                    {
                        if (v.IsSelected)
                        {
                            hhh++;
                        }
 
                    }
                    OnFreshTotalHour.Invoke(hhh);
                }
            }
            else if (e.Button == MouseButtons.Left)
            {
                _clickRightBlock = null;
                _isSelectBlockIng = true;
                _startSelBlock = GetCaptureBlock(e.Location);
            }
            else if (e.Button == MouseButtons.Right)
            { 
                _isSelectBlockIng = false ;
                _clickRightBlock = GetCaptureBlock(e.Location);
                if (_clickRightBlock == null) return;
 
                contextMenuStrip1.Show(this,e.Location);
            }
            base.OnMouseDown(e);
        }
 
        //
        public static Color SelectColor = Color.FromArgb(50, Color.Blue);
 
        /// <summary>
        /// 鼠标移动事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseMove(MouseEventArgs e)
        {
            if (!_isSelectBlockIng)
                return;
 
            if (_startSelBlock == null)
            {
                return;
            }
 
            _endSelBlock = GetCaptureBlock(e.Location);
            if (_endSelBlock == null)
                return;
 
 
            if (_endSelBlock.Hour > _startSelBlock.Hour)
            {
                foreach (var item in _block_item_list)
                {
                    if (item.Hour >= _startSelBlock.Hour && item.Hour <= _endSelBlock.Hour)
                    {
                        if (!item.IsSelected)
                        {
                            item.IsSelected = true;
                            item.DefaultColor = SelectColor;
                            this.Invalidate(new System.Drawing.Rectangle(
                                (int)item.Rectangle.X, (int)item.Rectangle.Y,
                                item.Width, item.Height));//刷新局部区域
                        }
                    }
                }
            }
            else
            {
                foreach (var item in _block_item_list)
                {
                    if (item.Hour >= _endSelBlock.Hour && item.Hour <= _startSelBlock.Hour)
                    {
                        if (item.IsSelected)
                        {
                            item.IsSelected = false;
                            item.DefaultColor = Color.White;
                            this.Invalidate(new System.Drawing.Rectangle(
                                (int)item.Rectangle.X, (int)item.Rectangle.Y,
                                item.Width, item.Height));//刷新局部区域
                        }
                    }
                }
            }
 
 
 
            if (OnFreshTotalHour != null)
            {
                int hhh = 0;
                foreach (var v in _block_item_list)
                {
                    if (v.IsSelected)
                    {
                        hhh++;
                    }
 
                }
                OnFreshTotalHour.Invoke(hhh);
            }
 
            base.OnMouseMove(e);
 
            //base.Invalidate();
        }
        public Action<int> OnFreshTotalHour = null;
        /// <summary>
        /// 鼠标弹出事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnMouseUp(MouseEventArgs e)
        {
            base.OnMouseUp(e);
 
 
            if (e.Button == MouseButtons.Left)
            {
                //foreach (var item in _block_item_list)
                //{
                //    if (item.DrawType == HourSmallBlock.eDrawType.Lock)
                //        continue; 
                //}
 
                _endSelBlock = null;
                _startSelBlock = null;
                _isSelectBlockIng = false;
            }
 
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="e"></param>
        protected override void OnDoubleClick(EventArgs e)
        {
            base.OnDoubleClick(e);
 
        }
        /// <summary>
        /// 重绘事件
        /// </summary>
        /// <param name="e"></param>
        protected override void OnPaint(PaintEventArgs e)
        {
            if (DesignMode)
                return;
 
 
 
            base.OnPaint(e);
 
 
            e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;//抗锯齿
            e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;  //使绘图质量最高,即消除锯齿 // 设置GDI高质量模式抗锯齿
            e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
            e.Graphics.CompositingQuality = CompositingQuality.HighQuality;
 
 
            if (_block_item_list != null && _block_item_list.Any())
            {
                foreach (var rect in _block_item_list)
                {
                    rect.Draw(e.Graphics);
                }
            }
 
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="eventargs"></param>
        protected override void OnResize(EventArgs eventargs)
        {
            base.OnResize(eventargs);
            //InitialItemSize();
            this.Refresh();
        }
 
 
        #endregion
 
        private void InitializeMenu()
        {
            var components = new System.ComponentModel.Container();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(components);
           
            var toolStripTextBox1 = new System.Windows.Forms.ToolStripButton();
            var toolStripTextBox2 = new System.Windows.Forms.ToolStripButton();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            toolStripTextBox1 ,toolStripTextBox2});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(120, 54);
            // 
            // toolStripTextBox1
            // 
            toolStripTextBox1.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
             toolStripTextBox1.Name = "toolStripTextBox1";
             toolStripTextBox1.Size = new System.Drawing.Size(100, 23);
             toolStripTextBox1.Text = "设置水位要求";
             toolStripTextBox1.Click += MenuSetLevelHeight_Click;
 
 
            toolStripTextBox2.Font = new System.Drawing.Font("Microsoft YaHei UI", 9F);
            toolStripTextBox2.Name = "toolStripTextBox2";
            toolStripTextBox2.Size = new System.Drawing.Size(100, 23);
            toolStripTextBox2.Text = "清理水位要求";
            toolStripTextBox2.Click += MenuClearLevelHeight_Click;
 
 
            this.contextMenuStrip1.ResumeLayout(false);
            this.contextMenuStrip1.PerformLayout();
            this.ResumeLayout(false);
 
        }
 
    }
}