-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.cs
1899 lines (1695 loc) · 52.7 KB
/
html.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
/* HTML C# Klassenbibliothek zum Generieren von HTML-Code
* ------------------------------------------------------------
* Datei: html.cs
* Version: 30.04.2015
* Besitzer: Mathias Rentsch ([email protected])
* Lizenz: GPL
*
* Die Anwendung und die Quelltextdateien sind freie Software und stehen unter der
* GNU General Public License. Der Originaltext dieser Lizenz kann eingesehen werden
* unter http://www.gnu.org/licenses/gpl.html.
*/
using System;
using System.Collections.Generic;
using System.IO;
using System.Drawing;
using System.Web;
namespace HTML
{
public class Tag
{
public string Name;
public ParameterList Parameters = new ParameterList();
public ParameterList Styles = new ParameterList();
public Tag()
{
Parameters.Add("style", ""); //dummy anlegen
}
public Tag(string name)
{
Name = name;
Parameters.Add("style", ""); //dummy anlegen
}
public string GetHtml()
{
Parameters[0].Value = getHtmlStyles();
string s = "";
s += @"<" + Name + " ";
s += getHtmlParameters();
s += @">";
return s;
}
public string GetHtmlEnd()
{
return @"</" + Name + ">";
}
private string getHtmlParameters()
{
string s = "";
foreach (Parameter parameter in Parameters)
{
if (parameter.Value.Length > 0)
s += parameter.Name + @"=""" + parameter.Value + @""" ";
}
return s;
}
private string getHtmlStyles()
{
string s = "";
foreach (Parameter style in Styles)
{
if (style.Value.Length > 0)
s += style.Name + ":" + style.Value + ";";
}
return s;
}
}
public class HtmlDivision : HtmlElement
{
public HtmlDivision()
{
}
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "div";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlText : HtmlElement
{
public HtmlText()
{
}
public HtmlText(string text)
{
Text = text;
}
public HtmlText(string text, FontFamilyTyp font, FontWeight weight)
{
Text = text;
FontFamily = font;
FontWeight = weight;
}
public HtmlText(string text, FontFamilyTyp font)
{
Text = text;
FontFamily = font;
}
public HtmlText(string text, FontFamilyTyp font, int size)
{
Text = text;
FontFamily = font;
FontSize = size;
}
public HtmlText(string text, FontFamilyTyp font, int size, FontWeight weight)
{
Text = text;
FontFamily = font;
FontSize = size;
FontWeight = weight;
}
public HtmlText(FontFamilyTyp font, int size, FontWeight weight)
{
FontFamily = font;
FontSize = size;
FontWeight = weight;
}
public HtmlText(int size, FontWeight weight)
{
FontSize = size;
FontWeight = weight;
}
public HtmlText(FontWeight weight)
{
FontWeight = weight;
}
public HtmlText(FontFamilyTyp font, FontWeight weight)
{
FontFamily = font;
FontWeight = weight;
}
public HtmlText(string text, int size)
{
Text = text;
FontSize = size;
}
public HtmlText(int size)
{
FontSize = size;
}
public HtmlText(FontFamilyTyp font)
{
FontFamily = font;
}
public HtmlText(FontFamilyTyp font, int size)
{
FontFamily = font;
FontSize = size;
}
public HtmlText(string text, FontWeight weight)
{
Text = text;
FontWeight = weight;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "span";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlUniversal : HtmlElement
{
public string TagName = "span";
public HtmlUniversal()
{
}
public HtmlUniversal(string tagname)
{
TagName = tagname;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = TagName;
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlImg : HtmlElement
{
public string Alternative = "";
public int HorizontalSpace = 0;
public int VerticalSpace = 0;
public string Url = "http://rentsch.dashosting.de/ei.png";
public HtmlImg()
{
}
public HtmlImg(string url)
{
Url = url;
}
public HtmlImg(string url, string alternative)
{
Url = url;
Alternative = alternative;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("src", Url);
tag.Parameters.Add("alt", HttpUtility.HtmlEncode(Alternative));
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "img";
tag.Parameters.Add("hspace", GetString(HorizontalSpace));
tag.Parameters.Add("vspace", GetString(VerticalSpace));
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
return s;
}
}
public class HtmlParagraph : HtmlElement
{
public ParagraphTyp Typ = ParagraphTyp.Paragraph;
public HtmlParagraph()
{
}
public HtmlParagraph(string text)
{
Text = text;
}
public HtmlParagraph(HorizontalAlignment align)
{
HorizontalAlign = align;
}
public HtmlParagraph(string text, HorizontalAlignment align)
{
HorizontalAlign = align;
Items.Add(new HtmlText(text));
}
public HtmlParagraph(string text, FontFamilyTyp font)
{
HtmlText htmltext = new HtmlText(text, font);
Items.Add(htmltext);
}
public HtmlParagraph(string text, FontFamilyTyp font, HorizontalAlignment align)
{
HtmlText htmltext = new HtmlText(text, font);
Items.Add(htmltext);
HorizontalAlign = align;
}
public HtmlParagraph(string text, FontFamilyTyp font, int size)
{
HtmlText htmltext = new HtmlText(text, font, size);
Items.Add(htmltext);
}
public HtmlParagraph(string text, int size)
{
HtmlText htmltext = new HtmlText(text, size);
Items.Add(htmltext);
}
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
string p = "";
switch (Typ)
{
case ParagraphTyp.Paragraph:
p = "p";
break;
case ParagraphTyp.HeadLine1:
p = "h1";
break;
case ParagraphTyp.HeadLine2:
p = "h2";
break;
case ParagraphTyp.HeadLine3:
p = "h3";
break;
case ParagraphTyp.SourceCode:
p = "pre";
break;
default:
p = "p";
break;
}
Tag tag = getTag();
tag.Name = p;
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlAnchor : HtmlElement
{
public string Url;
public string FrameName;
public LinkTarget Target = LinkTarget.None;
public HtmlAnchor()
{
}
public HtmlAnchor(string adresse)
{
Url = adresse;
}
public HtmlAnchor(string text, string adresse)
{
Url = adresse;
Text = text;
}
public HtmlAnchor(HtmlText text, string adresse)
{
Url = adresse;
Add(text);
}
public HtmlAnchor(string text, string adresse, LinkTarget target)
{
Url = adresse;
Target = target;
Text = text;
}
public HtmlAnchor(string adresse, LinkTarget target)
{
Url = adresse;
Target = target;
}
public HtmlAnchor(HtmlText text, string adresse, LinkTarget target)
{
Url = adresse;
Target = target;
Add(text);
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("href", HttpUtility.HtmlEncode(Url));
tag.Parameters.Add("target", GetString(Target, FrameName));
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "a";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlBreak : HtmlElement
{
public HtmlBreak()
{
}
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "br";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
//s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlList : HtmlElement
{
public StyleTyp Style = StyleTyp.None;
public StylePositionTyp StylePosition = StylePositionTyp.None;
public int Start = 1; // 1 ist default, weil Start-Parameter >immer< generiert wird
public ReversedTyp Reversed = ReversedTyp.None; // IE kann es nicht
public string ImageUrl = "";
public HtmlList()
{
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("start", Start.ToString()); // wird immer generiert, deshalb mit ToString() statt mit GetString
if (Reversed != ReversedTyp.None) tag.Parameters.Add("reserved", "reserved");
tag.Styles.Add("list-style-type", GetString(Style));
tag.Styles.Add("list-style-position", GetString(StylePosition));
if (ImageUrl.Length>0) tag.Styles.Add("list-style-image", "url("+ImageUrl+")");
return tag;
}
public override string GetHtml()
{
string s = "";
if (Style == StyleTyp.SquareClamp) // ohne Benutzung des HTML-Tag <ol>
{
Tag tag = base.getTag();
tag.Name = "p";
s += tag.GetHtml();
int c = Start;
foreach (HtmlElement element in Items)
{
s += "["+c.ToString()+"] ";
s += element.GetHtml();
s += "<br>";
switch (Reversed)
{
case ReversedTyp.None:
c++;
break;
case ReversedTyp.Reversed:
c--;
break;
}
}
}
else
{
Tag tag = getTag();
tag.Name = "ol"; // ist immer Ordered List, weil mit CSS wird sie auch als <ul> angezeigt werden kann
s += tag.GetHtml();
foreach (HtmlElement element in Items)
{
s += "<li>";
s += element.GetHtml();
s += "</li>";
}
s += tag.GetHtmlEnd();
}
return s;
}
}
public class HtmlPage : HtmlElement
{
public string Title = "";
public string Author = "";
public string Description = "";
public string Generator = "";
public string Keywords = "";
public string StyleFilename = "";
public string StyleCode = "";
public string ScriptCode = "";
public int RefreshTime = 0;
public string OnLoad = "";
public HtmlPage()
: base()
{
}
public HtmlPage(string title)
: base()
{
Title = title;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("onload", OnLoad);
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "body";
string s = "";
s += getHeader();
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
s += getFooder();
return s;
}
private string getHeader()
{
string s = "";
s += "<!DOCTYPE HTML>";
s += "<html>";
s += "<head>";
if (Title.Length > 0)
{
s += "<title>";
s += HttpUtility.HtmlEncode(Title);
s += "</title>";
}
s += @"<meta charset=""UTF-8"">";
if (Author.Length > 0)
{
s += @"<meta name=""author"" content=""";
s += HttpUtility.HtmlEncode(Author);
s += @""">";
}
if (Description.Length > 0)
{
s += @"<meta name=""description"" content=""";
s += HttpUtility.HtmlEncode(Description);
s += @""">";
}
if (Keywords.Length > 0)
{
s += @"<meta name=""keywords"" content=""";
s += HttpUtility.HtmlEncode(Keywords);
s += @""">";
}
if (StyleFilename.Length > 0)
{
s += @"<link rel=""stylesheet"" type=""text/css"" href=""";
s += StyleFilename;
s += @""">";
}
if (StyleCode.Length > 0)
{
s += @"<style type=""text/css"">";
s += StyleCode;
s += @"</style>";
}
if (ScriptCode.Length > 0)
{
s += @"<script type=""text/javascript"">";
s += ScriptCode;
s += @"</script>";
}
if (RefreshTime>0)
{
s += @"<meta http-equiv=""refresh"" content="""+RefreshTime.ToString()+@"; URL="" />";
}
s += "</head>";
return s;
}
private string getFooder()
{
string s = "";
s += "</html>";
return s;
}
public void Save(string fileName)
{
StreamWriter w = new StreamWriter(fileName);
w.WriteLine(GetHtml());
w.Flush();
w.Close();
}
}
public class HtmlRow : HtmlElement
{
public List<HtmlCell> Cells = new List<HtmlCell>();
protected override Tag getTag()
{
Tag tag = base.getTag();
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "tr";
string s = "";
s += tag.GetHtml();
foreach (HtmlCell cell in Cells)
{
s += cell.GetHtml();
}
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlCell : HtmlElement
{
public int ColSpan = 0;
public int RowSpan = 0;
public HtmlCell()
{
}
public HtmlCell(string text)
{
Items.Add(new HtmlText(text));
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Styles.Add("colspan", GetString(ColSpan));
tag.Styles.Add("rowspan", GetString(RowSpan));
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "td";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlTable : HtmlElement
{
private List<HtmlRow> Rows = new List<HtmlRow>();
public TableAlignment Align = TableAlignment.None;
public int CellPadding = 0;
public int CellSpacing = 0;
public TableFrame Frame = TableFrame.Box;
public TableRules Rules = TableRules.All;
public HtmlTable()
{
Rows.Add(new HtmlRow()); // für die Spaltenüberschriften
}
public HtmlCell GetNewColumn(string text)
{
if (Rows.Count > 1)
throw new Exception("Das Einfügen von Spalten ist nur möglich, wenn die Tabelle leer ist.");
HtmlCell cell = new HtmlCell();
cell.Text = text;
Rows[0].Cells.Add(cell);
return cell;
}
public HtmlCell GetNewColumn(string text, int width)
{
HtmlCell cell = GetNewColumn(text);
cell.Width = width;
return cell;
}
public HtmlRow GetNewRow()
{
if (Rows[0].Cells.Count<1)
throw new Exception("Das Einfügen von Zeilen ist nur möglich, wenn zuvor Spalten hinzugefügt wurden.");
HtmlRow row = new HtmlRow();
foreach (HtmlCell cell in Rows[0].Cells)
{
row.Cells.Add(new HtmlCell());
}
Rows.Add(row);
return row;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("align", GetString(Align)); // wird nicht über Styles gemacht, da es unter float offenbar kein >center< gibt = Scheiße
tag.Parameters.Add("cellpadding", GetString(CellPadding)); // wird über Parameter gemacht, da sonst alle Zellen über css margin gesetzt müßten
tag.Parameters.Add("cellspacing", GetString(CellSpacing)); // wird über Parameter gemacht, wüsste sonst nicht wie
tag.Parameters.Add("frame", GetString(Frame));
tag.Parameters.Add("rules", GetString(Rules));
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "table";
string s = "";
s += tag.GetHtml();
foreach (HtmlRow row in Rows)
{
s += row.GetHtml();
}
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlForm : HtmlElement
{
public MethodTyp Method = MethodTyp.Get;
public string Action = "";
public HtmlForm()
{
}
public HtmlForm(string action)
{
Action = action;
}
public HtmlForm(string action, MethodTyp method)
{
Action = action;
Method = method;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("method", GetString(Method));
tag.Parameters.Add("action", HttpUtility.HtmlEncode(Action));
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "form";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlInput : HtmlElement
{
public InputTyp InputType = InputTyp.Hidden;
public string Name = "";
public string Value = "";
public HtmlInput()
{
}
public HtmlInput(string name)
{
Name = name;
}
public HtmlInput(string name, string value)
{
Name = name;
Value = value;
}
public HtmlInput(string name, string value,InputTyp inputType)
{
Name = name;
Value = value;
InputType = inputType;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("type", GetString(InputType));
tag.Parameters.Add("name", Name);
tag.Parameters.Add("value", Value);
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "input";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
return s;
}
}
public class HtmlSelect : HtmlElement
{
public string Name = "";
public HtmlSelect()
{
}
public HtmlSelect(string name)
{
Name = name;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("name", Name);
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "select";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class HtmlOption : HtmlElement
{
public string Value = "";
public HtmlOption()
{
}
public HtmlOption(string value)
{
Value = value;
}
public HtmlOption(string value, string text)
{
Value = value;
Text = text;
}
protected override Tag getTag()
{
Tag tag = base.getTag();
tag.Parameters.Add("value", Value);
return tag;
}
public override string GetHtml()
{
Tag tag = getTag();
tag.Name = "option";
string s = "";
s += tag.GetHtml();
s += base.GetHtml();
s += tag.GetHtmlEnd();
return s;
}
}
public class Parameter
{
public string Name;
public string Value;
}
public class ParameterList : List<Parameter>
{
public Parameter Add(string name, string value)
{
Parameter parameter = new Parameter();
parameter.Name = name;
parameter.Value = value;
Add(parameter);
return parameter;
}
}
public class Sides<T>
{
public T Left;
public T Right;
public T Top;
public T Bottom;
public T All
{