-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrawBlock.cs
1329 lines (1214 loc) · 81.3 KB
/
DrawBlock.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
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System.Drawing;
using System.Drawing.Drawing2D;
namespace NassiBlocks
{
/// <summary>
/// Drawing options
/// (Параметры отрисовки)
/// </summary>
public struct Parametrs
{
/// <summary>
/// The font of the text in the block
/// (Шрифт текста в блоке)
/// </summary>
public Font font;
/// <summary>
/// Format of text output in a block
/// (Формат вывода текста в блоке)
/// </summary>
public StringFormat drawFormat;
}
/// <summary>
/// Block drawing
/// (Рисование блока)
/// </summary>
public class DrawBlock
{
#region Init
/// <summary>
/// Drawn block
/// (Отрисованный блок)
/// </summary>
public static Bitmap Block = new Bitmap(52, 28);
/// <summary>
/// Graphics
/// (Графика)
/// </summary>
private Graphics graf = Graphics.FromImage(Block);
/// <summary>
/// Parametrs
/// (Параметры)
/// </summary>
private Parametrs parametrs = new Parametrs();
/// <summary>
/// Constructor
/// Конструктор
/// </summary>
public DrawBlock()
{
parametrs.font = new Font(FontFamily.GenericSerif, 8, FontStyle.Regular);
parametrs.drawFormat = new StringFormat() { Alignment = StringAlignment.Center };
}
/// <summary>
/// Constructor with font
/// Конструктор с указанием шрифта
/// </summary>
/// <param name="font">Шрифт (Font)</param>
public DrawBlock(Font font)
{
parametrs.font = font;
parametrs.drawFormat = new StringFormat() { Alignment = StringAlignment.Center };
}
/// <summary>
/// Constructor with Drawing Format
/// Конструктор с указанием формата
/// </summary>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
public DrawBlock(StringFormat drawFormat)
{
parametrs.font = new Font(FontFamily.GenericSerif, 8, FontStyle.Regular);
parametrs.drawFormat = drawFormat;
}
/// <summary>
/// Constructor with font, Drawing Format
/// Конструктор с указанием шрифта, формата
/// </summary>
/// <param name="font">Шрифт (Font)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
public DrawBlock(Font font, StringFormat drawFormat)
{
parametrs.font = font;
parametrs.drawFormat = drawFormat;
}
#endregion
#region Params
/// <summary>
/// Changing parameters to standard
/// (Изменение параметров на стандартные)
/// </summary>
public void SetParams()
{
parametrs.font = new Font(FontFamily.GenericSerif, 8, FontStyle.Regular);
parametrs.drawFormat = new StringFormat();
}
/// <summary>
/// Change text settings
/// (Изменение параметров текста)
/// </summary>
/// <param name="font">Text parametrs (Параметры текста)</param>
public void SetParams(Font font)
{
parametrs.font = font;
}
/// <summary>
/// Changing Drawing Format Options
/// (Изменение параметров формата отрисовки)
/// </summary>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
public void SetParams(StringFormat drawFormat)
{
parametrs.drawFormat = drawFormat;
}
/// <summary>
/// Changing Drawing Format and Text Format Options
/// (Изменение параметров формата отрисовки и текста)
/// </summary>
/// <param name="font">Text parametrs (Параметры текста)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
public void SetParams(Font font, StringFormat drawFormat)
{
parametrs.font = font;
parametrs.drawFormat = drawFormat;
}
#endregion
#region Rectangle
/// <summary>
/// Drawing paths and fills for blocks
/// (Рисование контура и заливки для блоков)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
private void DrawRectangle(Color color, Color contrColor, int width, int height)
{
Block = new Bitmap(width, height);
graf = Graphics.FromImage(Block);
graf.SmoothingMode = SmoothingMode.HighQuality;
graf.FillRectangle(new SolidBrush(color), 1, 1, width - 1, height - 1);
graf.DrawRectangle(new Pen(contrColor, 1), 0, 0, width - 1, height - 1);
}
#endregion
#region OperationBlock
/// <summary>
/// Операционный блок 52х28px
/// (Operation Block)
/// </summary>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock()
{
DrawRectangle(Color.White, Color.Black, 52, 28);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины
/// (Operation Block with indication of height and width)
/// </summary>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(int width, int height)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста
/// (Operation Block with indication of height and width, text)
/// </summary>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(int width, int height, string text)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / 2, height / 2 - parametrs.font.Size, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста, цвета блока
/// (Operation Block with indication of height and width, text, block color)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(Color color, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / 2, height / 2 - parametrs.font.Size, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста, цвета блока, цвета текста
/// (Operation Block with indication of height and width, text, block color, text color)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(Color color, Color fontColor, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, height / 2 - parametrs.font.Size, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста, цвета блока, цвета текста, цвета контура
/// (Operation Block with indication of height and width, text, block color, text color, outline color)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, height / 2 - parametrs.font.Size, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста, цвета блока, цвета текста, цвета контура, шрифта
/// (Operation Block with indication of height and width, text, block color, text color, outline color, font)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="font">Шрифт (Font)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, Font font)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawString(text, font, new SolidBrush(fontColor), width / 2, height / 2 - parametrs.font.Size, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Операционный блок с указанием высоты и ширины, текста, цвета блока, цвета текста, цвета контура, шрифта, формата отрисовки
/// (Operation Block with indication of height and width, text, block color, text color, outline color, font, drawing format)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="font">Шрифт (Font)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
/// <returns>Блок операции (Operation Block)</returns>
public Bitmap OperationBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, Font font, StringFormat drawFormat)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawString(text, font, new SolidBrush(fontColor), width / 2, height / 2 - parametrs.font.Size, drawFormat);
graf.Dispose();
return Block;
}
#endregion
#region BranchingBlock
/// <summary>
/// Branching Block
/// (Блок ветвления)
/// </summary>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock()
{
DrawRectangle(Color.White, Color.Black, 52, 28);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(26, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(26, 14), new Point(52, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 14), new Point(52, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(26, 28), new Point(26, 14));
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width
/// (Блок ветвления c указанием высоты и ширины)
/// </summary>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(int width, int height)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width / 2, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height), new Point(width / 2, height / 2));
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text
/// (Блок ветвления, текста)
/// </summary>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(int width, int height, string text)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width / 2, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height), new Point(width / 2, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / 2, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color
/// (Блок ветвления, текста, цвета блока)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width / 2, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height), new Point(width / 2, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / 2, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color
/// (Блок ветвления, текста, цвета блока, цвета текста)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width / 2, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 2, height), new Point(width / 2, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, height / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color, added width
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура, добавленная высота)
/// </summary>
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// /// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, (height - addHeight) / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color, added width, Additional bool
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура, добавленная высота, добавление надписей)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="isAdditional">Добавление надписей да и нет (Add yes and no labels)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, bool isAdditional)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, (height - addHeight) / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, 0, parametrs.drawFormat);
if (isAdditional)
{
graf.DrawString("Да", parametrs.font, new SolidBrush(fontColor), 0 + 2 * parametrs.font.Size, ((height - addHeight) / 6), parametrs.drawFormat);
graf.DrawString("Нет", parametrs.font, new SolidBrush(fontColor), width - 2 * parametrs.font.Size, ((height - addHeight) / 6), parametrs.drawFormat);
}
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color, added width, Additional bool
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура, добавленная высота, добавление надписей)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="isAdditional">Добавление надписей да и нет (Add yes and no labels)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, bool isAdditional, StringFormat drawFormat)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, (height - addHeight) / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / 2, 0, drawFormat);
if (isAdditional)
{
graf.DrawString("Да", parametrs.font, new SolidBrush(fontColor), 0 + 2 * parametrs.font.Size, ((height - addHeight) / 6), drawFormat);
graf.DrawString("Нет", parametrs.font, new SolidBrush(fontColor), width - 2 * parametrs.font.Size, ((height - addHeight) / 6), drawFormat);
}
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color, added width, Additional bool, font
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура, добавленная высота, добавление надписей, шрифта)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="isAdditional">Добавление надписей да и нет (Add yes and no labels)</param>
/// <param name="font">Шрифт (Font)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, bool isAdditional, Font font)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, (height - addHeight) / 2));
graf.DrawString(text, font, new SolidBrush(fontColor), width / 2, 0, parametrs.drawFormat);
if (isAdditional)
{
graf.DrawString("Да", font, new SolidBrush(fontColor), 0 + 2 * font.Size, ((height - addHeight) / 6), parametrs.drawFormat);
graf.DrawString("Нет", font, new SolidBrush(fontColor), width - 2 * font.Size, ((height - addHeight) / 6), parametrs.drawFormat);
}
graf.Dispose();
return Block;
}
/// <summary>
/// Branching Block with indication of height and width, text, block color, text color, outline color, added width, Additional bool, font, drawing format
/// (Блок ветвления, текста, цвета блока, цвета текста, цвет контура, добавленная высота, добавление надписей, шрифта, формата отрисовки)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="isAdditional">Добавление надписей да и нет (Add yes and no labels)</param>
/// <param name="font">Шрифт (Font)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
/// <returns>Branching Block (Блок ветвления)</returns>
public Bitmap BranchingBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, bool isAdditional, Font font, StringFormat drawFormat)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width / 2, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 2, height), new Point(width / 2, (height - addHeight) / 2));
graf.DrawString(text, font, new SolidBrush(fontColor), width / 2, 0, drawFormat);
if (isAdditional)
{
graf.DrawString("Да", font, new SolidBrush(fontColor), 0 + 2 * font.Size, ((height - addHeight) / 6), drawFormat);
graf.DrawString("Нет", font, new SolidBrush(fontColor), width - 2 * font.Size, ((height - addHeight) / 6), drawFormat);
}
graf.Dispose();
return Block;
}
#endregion
#region CaseBlock
/// <summary>
/// Case Block
/// (Кейс-блок)
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock()
{
DrawRectangle(Color.White, Color.Black, 52, 28);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(39, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(39, 14), new Point(52, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 14), new Point(52, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(39, 14), new Point(39, 28));
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width
/// (Кейс-блок с указанием высоты и ширины)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(int width, int height)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width - width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width - width / 4, height));
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text
/// (Кейс-блок, с указанием высоты и ширины, текста)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(int width, int height, string text)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width - width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width - width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, 0), new Point(width - width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(Color.Black, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width - width / 4, height / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color, outline color
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width - width / 4, height / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, height / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, height / 2), new Point(width, height / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, height / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color, outline color, added width
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width - width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color, outline color, added width, font
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота, шрифта)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="font">Шрифт (Font)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, Font font)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width - width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width - width / 4, height));
graf.DrawString(text, font, new SolidBrush(fontColor), width - width / 3, 0, parametrs.drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color, outline color, added width, drawing format
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота, формата отрисовки)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, StringFormat drawFormat)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width - width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width - width / 4, height));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width - width / 3, 0, drawFormat);
graf.Dispose();
return Block;
}
/// <summary>
/// Case Block with indication of height and width, text, block color, text color, outline color, added width, font, drawing format
/// (Кейс-блок, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота, шрифта, формата отрисовки)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="font">Шрифт (Font)</param>
/// <param name="drawFormat">Drawing format (Формат отрисовки)</param>
/// <returns>Case Block (Кейс-блок)</returns>
public Bitmap CaseBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, Font font, StringFormat drawFormat)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(0, 0), new Point(width - width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width, 0));
graf.DrawLine(new Pen(contrColor, 1), new Point(0, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width - width / 4, (height - addHeight) / 2), new Point(width - width / 4, height));
graf.DrawString(text, font, new SolidBrush(fontColor), width - width / 3, 0, drawFormat);
graf.Dispose();
return Block;
}
#endregion
#region PreconditionBlock
/// <summary>
/// Precondition block
/// (Блок цикла с предусловием)
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock()
{
DrawRectangle(Color.White, Color.Black, 52, 28);
graf.DrawLine(new Pen(Color.Black, 1), new Point(13, 28), new Point(13, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(13, 14), new Point(52, 14));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width
/// (Блок цикла с предусловием, с указанием высоты и ширины)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(int width, int height)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(int width, int height, string text)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text, block color
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста, цвета блока)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(Color color, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text, block color, text color
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста, цвета блока, цвета текста)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(Color color, Color fontColor, int width, int height, string text)
{
DrawRectangle(color, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text, block color, text color, outline color
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text)
{
DrawRectangle(color, contrColor, width, height);
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, height), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text, block color, text color, outline color, added width
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, height), new Point(width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(fontColor), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
/// <summary>
/// Precondition block with indication of height and width, text, block color, text color, outline color, added width, font
/// (Блок цикла с предусловием, с указанием высоты и ширины, текста, цвета блока, цвета текста, цвет контура, добавленная высота, шрифта)
/// <param name="color">Цвет блока (Block Color)</param>
/// <param name="fontColor">Цвет текста (Text Color)</param>
/// <param name="contrColor">Цвет контура (Outline Color)</param>
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <param name="addHeight">Добавленная высота (Added Width)</param>
/// <param name="font">Шрифт (Font)</param>
/// <returns>Precondition Block (Блок цикла с предусловием)</returns>
public Bitmap PreconditionBlock(Color color, Color fontColor, Color contrColor, int width, int height, string text, int addHeight, Font font)
{
DrawRectangle(color, contrColor, width, height + addHeight);
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, height), new Point(width / 4, (height - addHeight) / 2));
graf.DrawLine(new Pen(contrColor, 1), new Point(width / 4, (height - addHeight) / 2), new Point(width, (height - addHeight) / 2));
graf.DrawString(text, font, new SolidBrush(fontColor), width / (width / 2), height / (int)(height / 1.75));
graf.Dispose();
return Block;
}
#endregion
#region PostconditionBlock
/// <summary>
/// Postcondition block
/// (Блок цикла с постусловием)
/// <returns>Precondition Block (Блок цикла с постусловием)</returns>
public Bitmap PostconditionBlock()
{
DrawRectangle(Color.White, Color.Black, 52, 28);
graf.DrawLine(new Pen(Color.Black, 1), new Point(13, 0), new Point(13, 14));
graf.DrawLine(new Pen(Color.Black, 1), new Point(13, 14), new Point(52, 14));
graf.Dispose();
return Block;
}
/// <summary>
/// Postcondition block with indication of height and width
/// (Блок цикла с постусловием, с указанием высоты и ширины)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <returns>Precondition Block (Блок цикла с постусловием)</returns>
public Bitmap PostconditionBlock(int width, int height)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, 0), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.Dispose();
return Block;
}
/// <summary>
/// Postcondition block with indication of height and width, text
/// (Блок цикла с постусловием, с указанием высоты и ширины, текста)
/// <param name="width">Ширина (Width)</param>
/// <param name="height">Высота (Height)</param>
/// <param name="text">Текст (Text)</param>
/// <returns>Precondition Block (Блок цикла с постусловием)</returns>
public Bitmap PostconditionBlock(int width, int height, string text)
{
DrawRectangle(Color.White, Color.Black, width, height);
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, 0), new Point(width / 4, height / 2));
graf.DrawLine(new Pen(Color.Black, 1), new Point(width / 4, height / 2), new Point(width, height / 2));
graf.DrawString(text, parametrs.font, new SolidBrush(Color.Black), width / (width / 2), height - parametrs.font.Size * 2);
graf.Dispose();
return Block;
}