tangxu
2024-11-25 0a2c59670b82d61d3fa79f51a54e82e7bd0134c4
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
#region Imports
 
using System;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.Windows.Forms;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Controls
{
    #region ParrotNavigationBar
 
    public class ParrotNavigationBar : Control
    {
        public ParrotNavigationBar()
        {
            Size = new Size(300, 40);
            NavBarStyle = Style.Android;
            Font = new Font("Arial", 12f);
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The navigation bar style")]
        public Style NavBarStyle
        {
            get => navBarStyle;
            set
            {
                if (navBarStyle != value)
                {
                    navBarStyle = value;
 
                    if (value == Style.iOS)
                    {
                        ItemColor = Color.FromArgb(0, 120, 255);
                        TitleColor = Color.Black;
                        BackgroundColor = Color.White;
                    }
                    else if (value == Style.Android)
                    {
                        ItemColor = Color.White;
                        TitleColor = Color.White;
                        BackgroundColor = Color.FromArgb(0, 150, 135);
                    }
                    else
                    {
                        ItemColor = Color.White;
                        TitleColor = Color.White;
                        BackgroundColor = Color.FromArgb(1, 119, 215);
                    }
 
                    Invalidate();
                }
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The color of the items")]
        public Color ItemColor
        {
            get => itemColor;
            set
            {
                itemColor = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The color of the title")]
        public Color TitleColor
        {
            get => titleColor;
            set
            {
                titleColor = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The color of the title")]
        public Color BackgroundColor
        {
            get => backgroundColor;
            set
            {
                backgroundColor = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The left navigation item")]
        public NavigationItem LeftItem
        {
            get => leftItem;
            set
            {
                leftItem = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The right navigation item")]
        public NavigationItem RightItem
        {
            get => rightItem;
            set
            {
                rightItem = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The navigation bar title")]
        public string Title
        {
            get => title;
            set
            {
                title = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The text of the left item if set to CustomText")]
        public string LeftCustomText
        {
            get => leftCustomText;
            set
            {
                leftCustomText = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The text of the right item if set to CustomText")]
        public string RightCustomText
        {
            get => rightCustomText;
            set
            {
                rightCustomText = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The image of the left item if set to CustomImage")]
        public Image LeftCustomImage
        {
            get => leftCustomImage;
            set
            {
                leftCustomImage = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The image of the right item if set to CustomImage")]
        public Image RightCustomImage
        {
            get => rightCustomImage;
            set
            {
                rightCustomImage = value;
                Invalidate();
            }
        }
 
        [Category("Parrot")]
        [Browsable(true)]
        [Description("The navigation bar interaction")]
        public bool Interaction
        {
            get => interaction;
            set
            {
                interaction = value;
                Invalidate();
            }
        }
 
        private InterpolationMode _InterpolationType = InterpolationMode.HighQualityBilinear;
        [Category("Parrot")]
        [Browsable(true)]
        public InterpolationMode InterpolationType
        {
            get => _InterpolationType;
            set
            {
                _InterpolationType = value;
                Invalidate();
            }
        }
 
        private CompositingQuality _CompositingQualityType = CompositingQuality.HighQuality;
        [Category("Parrot")]
        [Browsable(true)]
        public CompositingQuality CompositingQualityType
        {
            get => _CompositingQualityType;
            set
            {
                _CompositingQualityType = value;
                Invalidate();
            }
        }
 
        private TextRenderingHint _TextRenderingType = TextRenderingHint.ClearTypeGridFit;
        [Category("Parrot")]
        [Browsable(true)]
        public TextRenderingHint TextRenderingType
        {
            get => _TextRenderingType;
            set
            {
                _TextRenderingType = value;
                Invalidate();
            }
        }
 
        protected override void OnPaint(PaintEventArgs e)
        {
            base.OnPaint(e);
 
            if (interaction && cursor == null)
            {
                cursor = Cursor;
            }
 
            e.Graphics.InterpolationMode = InterpolationType;
            e.Graphics.CompositingQuality = CompositingQualityType;
            e.Graphics.TextRenderingHint = TextRenderingType;
 
            FontStyle style = FontStyle.Bold;
 
            if (navBarStyle == Style.iOS)
            {
                style = FontStyle.Regular;
            }
 
            e.Graphics.FillRectangle(new SolidBrush(backgroundColor), 0, 0, base.Width, base.Height);
            StringFormat stringFormat = new()
            {
                LineAlignment = StringAlignment.Center,
                Alignment = StringAlignment.Near
            };
 
            if (leftItem == NavigationItem.Back)
            {
                e.Graphics.DrawString("Back", Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
            }
            else if (leftItem == NavigationItem.Next)
            {
                e.Graphics.DrawString("Next", Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
            }
            else if (leftItem == NavigationItem.CustomText)
            {
                e.Graphics.DrawString(leftCustomText, Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
            }
            else if (leftItem == NavigationItem.Menu)
            {
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Height / 5, base.Height / 4, base.Height / 5 * 4, base.Height / 4);
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Height / 5, base.Height / 4 * 2, base.Height / 5 * 4, base.Height / 4 * 2);
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Height / 5, base.Height / 4 * 3, base.Height / 5 * 4, base.Height / 4 * 3);
            }
            else if (leftItem == NavigationItem.CustomImage && leftCustomImage != null)
            {
                e.Graphics.DrawImage(new Bitmap(leftCustomImage, base.Height, base.Height), 0, 0);
            }
 
            stringFormat.Alignment = StringAlignment.Center;
            e.Graphics.DrawString(title, new Font(Font.FontFamily, Font.Size, style), new SolidBrush(titleColor), base.ClientRectangle, stringFormat);
            stringFormat.Alignment = StringAlignment.Far;
 
            if (rightItem == NavigationItem.Back)
            {
                e.Graphics.DrawString("Back", Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
                return;
            }
 
            if (rightItem == NavigationItem.Next)
            {
                e.Graphics.DrawString("Next", Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
                return;
            }
 
            if (rightItem == NavigationItem.CustomText)
            {
                e.Graphics.DrawString(rightCustomText, Font, new SolidBrush(itemColor), base.ClientRectangle, stringFormat);
                return;
            }
 
            if (rightItem == NavigationItem.Menu)
            {
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Width - base.Height + (base.Height / 5), base.Height / 4, base.Width - base.Height + (base.Height / 5 * 4), base.Height / 4);
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Width - base.Height + (base.Height / 5), base.Height / 4 * 2, base.Width - base.Height + (base.Height / 5 * 4), base.Height / 4 * 2);
                e.Graphics.DrawLine(new Pen(itemColor, 2f), base.Width - base.Height + (base.Height / 5), base.Height / 4 * 3, base.Width - base.Height + (base.Height / 5 * 4), base.Height / 4 * 3);
                return;
            }
 
            if (rightItem == NavigationItem.CustomImage && rightCustomImage != null)
            {
                e.Graphics.DrawImage(new Bitmap(rightCustomImage, base.Height, base.Height), base.Width - base.Height, 0);
            }
        }
 
        public event EventHandler LeftItemClick;
 
        protected virtual void OnLeftItemClick()
        {
            LeftItemClick?.Invoke(this, new EventArgs());
        }
 
        public event EventHandler RightItemClick;
 
        protected virtual void OnRightItemClick()
        {
            RightItemClick?.Invoke(this, new EventArgs());
        }
 
        protected override void OnMouseDown(MouseEventArgs e)
        {
            base.OnMouseDown(e);
            if (interaction)
            {
                if (e.X < base.Width / 3)
                {
                    OnLeftItemClick();
                }
                if (e.X > base.Width / 3 * 2)
                {
                    OnRightItemClick();
                }
            }
        }
 
        protected override void OnMouseMove(MouseEventArgs e)
        {
            base.OnMouseMove(e);
            if (interaction)
            {
                if (e.X < base.Width / 3 || e.X > base.Width / 3 * 2)
                {
                    Cursor = Cursors.Hand;
                }
                else
                {
                    Cursor = cursor;
                }
            }
        }
 
        private Style navBarStyle;
 
        private Color itemColor = Color.White;
 
        private Color titleColor = Color.White;
 
        private Color backgroundColor = Color.White;
 
        private NavigationItem leftItem = NavigationItem.Back;
 
        private NavigationItem rightItem = NavigationItem.Next;
 
        private string title = "Navigation Bar";
 
        private string leftCustomText = "⫷⩶";
 
        private string rightCustomText = "⩶⫸";
 
        private Image leftCustomImage;
 
        private Image rightCustomImage;
 
        private Cursor cursor;
 
        private bool interaction = true;
 
        public enum NavigationItem
        {
            Menu,
            None,
            Back,
            Next,
            CustomText,
            CustomImage
        }
 
        public enum Style
        {
            iOS,
            Android,
            Material
        }
    }
 
    #endregion
}