wxruby3-shapes 0.9.0.pre.beta.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +12 -0
  3. data/CREDITS.md +18 -0
  4. data/INSTALL.md +39 -0
  5. data/LICENSE +21 -0
  6. data/README.md +118 -0
  7. data/assets/screenshot.png +0 -0
  8. data/bin/wx-shapes +9 -0
  9. data/lib/wx/shapes/arrow_base.rb +86 -0
  10. data/lib/wx/shapes/arrows/circle_arrow.rb +39 -0
  11. data/lib/wx/shapes/arrows/diamond_arrow.rb +33 -0
  12. data/lib/wx/shapes/arrows/open_arrow.rb +56 -0
  13. data/lib/wx/shapes/arrows/solid_arrow.rb +69 -0
  14. data/lib/wx/shapes/art/shape_canvas/page.xpm +73 -0
  15. data/lib/wx/shapes/auto_layout.rb +358 -0
  16. data/lib/wx/shapes/base.rb +33 -0
  17. data/lib/wx/shapes/canvas_history.rb +84 -0
  18. data/lib/wx/shapes/connection_point.rb +238 -0
  19. data/lib/wx/shapes/core.rb +19 -0
  20. data/lib/wx/shapes/diagram.rb +659 -0
  21. data/lib/wx/shapes/events.rb +389 -0
  22. data/lib/wx/shapes/printout.rb +136 -0
  23. data/lib/wx/shapes/serializable.rb +440 -0
  24. data/lib/wx/shapes/serialize/core.rb +40 -0
  25. data/lib/wx/shapes/serialize/id.rb +82 -0
  26. data/lib/wx/shapes/serialize/wx.rb +104 -0
  27. data/lib/wx/shapes/serializer/json.rb +258 -0
  28. data/lib/wx/shapes/serializer/yaml.rb +125 -0
  29. data/lib/wx/shapes/shape.rb +2129 -0
  30. data/lib/wx/shapes/shape_canvas.rb +3285 -0
  31. data/lib/wx/shapes/shape_data_object.rb +43 -0
  32. data/lib/wx/shapes/shape_handle.rb +287 -0
  33. data/lib/wx/shapes/shape_list.rb +161 -0
  34. data/lib/wx/shapes/shapes/bitmap_shape.rb +257 -0
  35. data/lib/wx/shapes/shapes/circle_shape.rb +136 -0
  36. data/lib/wx/shapes/shapes/control_shape.rb +483 -0
  37. data/lib/wx/shapes/shapes/curve_shape.rb +231 -0
  38. data/lib/wx/shapes/shapes/diamond_shape.rb +62 -0
  39. data/lib/wx/shapes/shapes/edit_text_shape.rb +317 -0
  40. data/lib/wx/shapes/shapes/ellipse_shape.rb +106 -0
  41. data/lib/wx/shapes/shapes/flex_grid_shape.rb +78 -0
  42. data/lib/wx/shapes/shapes/grid_shape.rb +404 -0
  43. data/lib/wx/shapes/shapes/line_shape.rb +907 -0
  44. data/lib/wx/shapes/shapes/multi_sel_rect.rb +214 -0
  45. data/lib/wx/shapes/shapes/ortho_shape.rb +357 -0
  46. data/lib/wx/shapes/shapes/polygon_shape.rb +294 -0
  47. data/lib/wx/shapes/shapes/rect_shape.rb +378 -0
  48. data/lib/wx/shapes/shapes/round_ortho_shape.rb +131 -0
  49. data/lib/wx/shapes/shapes/round_rect_shape.rb +142 -0
  50. data/lib/wx/shapes/shapes/square_shape.rb +119 -0
  51. data/lib/wx/shapes/shapes/text_shape.rb +324 -0
  52. data/lib/wx/shapes/thumbnail.rb +234 -0
  53. data/lib/wx/shapes/version.rb +12 -0
  54. data/lib/wx/shapes/wx.rb +29 -0
  55. data/lib/wx/shapes.rb +18 -0
  56. data/lib/wx/wx-shapes/base.rb +87 -0
  57. data/lib/wx/wx-shapes/cmd/sampler.rb +58 -0
  58. data/lib/wx/wx-shapes/cmd/test.rb +27 -0
  59. data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
  60. data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
  61. data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
  62. data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
  63. data/rakelib/yard/yard-custom-templates.rb +2 -0
  64. data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
  65. data/samples/demo/art/AlignBottom.xpm +35 -0
  66. data/samples/demo/art/AlignCenter.xpm +35 -0
  67. data/samples/demo/art/AlignLeft.xpm +35 -0
  68. data/samples/demo/art/AlignMiddle.xpm +35 -0
  69. data/samples/demo/art/AlignRight.xpm +35 -0
  70. data/samples/demo/art/AlignTop.xpm +35 -0
  71. data/samples/demo/art/Bitmap.xpm +25 -0
  72. data/samples/demo/art/Circle.xpm +22 -0
  73. data/samples/demo/art/Curve.xpm +21 -0
  74. data/samples/demo/art/Diamond.xpm +22 -0
  75. data/samples/demo/art/EditText.xpm +21 -0
  76. data/samples/demo/art/Ellipse.xpm +22 -0
  77. data/samples/demo/art/FixedRect.xpm +22 -0
  78. data/samples/demo/art/FlexGrid.xpm +22 -0
  79. data/samples/demo/art/GC.xpm +23 -0
  80. data/samples/demo/art/Grid.xpm +22 -0
  81. data/samples/demo/art/Line.xpm +21 -0
  82. data/samples/demo/art/NoSource.xpm +69 -0
  83. data/samples/demo/art/OrthoLine.xpm +21 -0
  84. data/samples/demo/art/Rect.xpm +22 -0
  85. data/samples/demo/art/RoundOrthoLine.xpm +21 -0
  86. data/samples/demo/art/RoundRect.xpm +22 -0
  87. data/samples/demo/art/Shadow.xpm +23 -0
  88. data/samples/demo/art/StandAloneLine.xpm +22 -0
  89. data/samples/demo/art/Text.xpm +21 -0
  90. data/samples/demo/art/Tool.xpm +23 -0
  91. data/samples/demo/art/sample.xpm +251 -0
  92. data/samples/demo/demo.rb +658 -0
  93. data/samples/demo/frame_canvas.rb +422 -0
  94. data/samples/demo/images/motyl.bmp +0 -0
  95. data/samples/demo/images/motyl2.bmp +0 -0
  96. data/samples/sample1/art/sample.xpm +251 -0
  97. data/samples/sample1/sample.rb +263 -0
  98. data/samples/sample2/art/sample.xpm +251 -0
  99. data/samples/sample2/sample.rb +133 -0
  100. data/samples/sample2/sample_canvas.rb +35 -0
  101. data/samples/sample2/sample_shape.rb +108 -0
  102. data/samples/sample3/art/sample.xpm +251 -0
  103. data/samples/sample3/sample.rb +281 -0
  104. data/samples/sample4/art/sample.xpm +251 -0
  105. data/samples/sample4/sample.rb +180 -0
  106. data/tests/art/motyl.bmp +0 -0
  107. data/tests/lib/wxapp_runner.rb +64 -0
  108. data/tests/serializer_tests.rb +521 -0
  109. data/tests/test_grid_shapes.rb +42 -0
  110. data/tests/test_serialize.rb +7 -0
  111. data/tests/test_serialize_yaml.rb +17 -0
  112. metadata +242 -0
@@ -0,0 +1,35 @@
1
+ /* XPM */
2
+ static const char * AlignRight_xpm[] = {
3
+ "16 16 16 1",
4
+ " c #000000",
5
+ ". c #800000",
6
+ "+ c #008000",
7
+ "@ c #808000",
8
+ "# c #000080",
9
+ "$ c #800080",
10
+ "% c None",
11
+ "& c #808080",
12
+ "* c #C0C0C0",
13
+ "= c #FF0000",
14
+ "- c #00FF00",
15
+ "; c #FFFF00",
16
+ "> c #0000FF",
17
+ ", c #FF00FF",
18
+ "' c #00FFFF",
19
+ ") c #FFFFFF",
20
+ "%%%%%%%%%%%%%%%%",
21
+ "%%%%%%%%%%%%% %%",
22
+ "%%%%%%% %%",
23
+ "%%%%%%% ))))) %%",
24
+ "%%%%%%% ))))) %%",
25
+ "%%%%%%% ))))) %%",
26
+ "%%%%%%% %%",
27
+ "%%%%%%%%%%%%% %%",
28
+ "%%% %%",
29
+ "%%% ))))))))) %%",
30
+ "%%% ))))))))) %%",
31
+ "%%% ))))))))) %%",
32
+ "%%% ))))))))) %%",
33
+ "%%% %%",
34
+ "%%%%%%%%%%%%% %%",
35
+ "%%%%%%%%%%%%%%%%"};
@@ -0,0 +1,35 @@
1
+ /* XPM */
2
+ static const char * AlignTop_xpm[] = {
3
+ "16 16 16 1",
4
+ " c #000000",
5
+ ". c #800000",
6
+ "+ c #008000",
7
+ "@ c #808000",
8
+ "# c #000080",
9
+ "$ c #800080",
10
+ "% c None",
11
+ "& c #808080",
12
+ "* c #C0C0C0",
13
+ "= c #FF0000",
14
+ "- c #00FF00",
15
+ "; c #FFFF00",
16
+ "> c #0000FF",
17
+ ", c #FF00FF",
18
+ "' c #00FFFF",
19
+ ") c #FFFFFF",
20
+ "%%%%%%%%%%%%%%%%",
21
+ "%%%%%%%%%%%%%%%%",
22
+ "% %",
23
+ "%% )))) % ))) %%",
24
+ "%% )))) % ))) %%",
25
+ "%% )))) % ))) %%",
26
+ "%% )))) % ))) %%",
27
+ "%% )))) % ))) %%",
28
+ "%% )))) % %%",
29
+ "%% )))) %%%%%%%%",
30
+ "%% )))) %%%%%%%%",
31
+ "%% )))) %%%%%%%%",
32
+ "%% %%%%%%%%",
33
+ "%%%%%%%%%%%%%%%%",
34
+ "%%%%%%%%%%%%%%%%",
35
+ "%%%%%%%%%%%%%%%%"};
@@ -0,0 +1,25 @@
1
+ /* XPM */
2
+ static const char * Bitmap_xpm[] = {
3
+ "16 16 6 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #00FFFF",
7
+ "@ c #FFFF00",
8
+ "# c #00FF00",
9
+ "$ c #008000",
10
+ " ",
11
+ " ",
12
+ " ............ ",
13
+ " .++++++++++. ",
14
+ " .++@+++++++. ",
15
+ " .+@@@++++++. ",
16
+ " .++@+++++++. ",
17
+ " .++++++++++. ",
18
+ " .++++++#$#+. ",
19
+ " .+++#####$#. ",
20
+ " .#####$####. ",
21
+ " .#$#$##$###. ",
22
+ " .########$#. ",
23
+ " ............ ",
24
+ " ",
25
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * Circle_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ... ",
10
+ " ..+++.. ",
11
+ " .+++++++. ",
12
+ " .+++++++. ",
13
+ " .+++++++++. ",
14
+ " .+++++++++. ",
15
+ " .+++++++++. ",
16
+ " .+++++++. ",
17
+ " .+++++++. ",
18
+ " ..+++.. ",
19
+ " ... ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ static const char * Curve_xpm[] = {
3
+ "16 16 2 1",
4
+ " c None",
5
+ ". c #000000",
6
+ " ",
7
+ " ",
8
+ " .... ",
9
+ " . . ",
10
+ " . . ",
11
+ " . . . ",
12
+ " . . . ",
13
+ " . .... ",
14
+ " . . ",
15
+ " . . ",
16
+ " . ",
17
+ " . ",
18
+ " . ",
19
+ " . ",
20
+ " . ",
21
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * Diamond_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " . ",
10
+ " .+. ",
11
+ " .+++. ",
12
+ " .+++++. ",
13
+ " .+++++++. ",
14
+ " .+++++++++. ",
15
+ " .+++++++. ",
16
+ " .+++++. ",
17
+ " .+++. ",
18
+ " .+. ",
19
+ " . ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ static const char * EditText_xpm[] = {
3
+ "16 16 2 1",
4
+ " c None",
5
+ ". c #000000",
6
+ " ",
7
+ " ... ",
8
+ " . ",
9
+ " ......... . ",
10
+ " . . . . ",
11
+ " . . ",
12
+ " . . ",
13
+ " . . ",
14
+ " . . ",
15
+ " . . ",
16
+ " . . ",
17
+ " ... . ",
18
+ " . ",
19
+ " ... ",
20
+ " ",
21
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * Ellipse_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " .... ",
11
+ " ..++++.. ",
12
+ " .++++++++. ",
13
+ " .++++++++++. ",
14
+ " .++++++++++. ",
15
+ " .++++++++++. ",
16
+ " .++++++++++. ",
17
+ " .++++++++. ",
18
+ " ..++++.. ",
19
+ " .... ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * FixedRect_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " .......... ",
11
+ " .++++++++. ",
12
+ " .++++++++. ",
13
+ " .++++++++. ",
14
+ " .++++++++. ",
15
+ " .++++++++. ",
16
+ " .++++++++. ",
17
+ " .++++++++. ",
18
+ " .++++++++. ",
19
+ " .......... ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * FlexGrid_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #A0A0A0",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " .......... ",
11
+ " .++.+++.+. ",
12
+ " .++.+++.+. ",
13
+ " .......... ",
14
+ " .++.+++.+. ",
15
+ " .......... ",
16
+ " .++.+++.+. ",
17
+ " .++.+++.+. ",
18
+ " .++.+++.+. ",
19
+ " .......... ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,23 @@
1
+ /* XPM */
2
+ static const char * GC_xpm[] = {
3
+ "16 16 4 1",
4
+ " c None",
5
+ ". c #B39CFD",
6
+ "+ c #3A3A3A",
7
+ "@ c #000000",
8
+ ". ",
9
+ ".. +++",
10
+ "... +@@@",
11
+ ".... +@@@+",
12
+ "..... +@@@+ ",
13
+ "...... +@@@+ ",
14
+ "....... +@@@+ ",
15
+ "........@@@+ ",
16
+ "......@@@@+ ",
17
+ "......@@@@ ",
18
+ "....@@@@... ",
19
+ "....@@@@.... ",
20
+ "..@@@@....... ",
21
+ "..@@@@........ ",
22
+ "@@@@........... ",
23
+ "@@@@............"};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * Grid_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #A0A0A0",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " .......... ",
11
+ " .++.++.++. ",
12
+ " .++.++.++. ",
13
+ " .......... ",
14
+ " .++.++.++. ",
15
+ " .++.++.++. ",
16
+ " .......... ",
17
+ " .++.++.++. ",
18
+ " .++.++.++. ",
19
+ " .......... ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ static const char * Line_xpm[] = {
3
+ "16 16 2 1",
4
+ " c #000000",
5
+ "% c None",
6
+ "%%%%%%%%%%%%%%%%",
7
+ "%%%%%%%%%%%%%%%%",
8
+ "%%%%%%%%%%%%%%%%",
9
+ "%%%%%%%%%%%%%%%%",
10
+ "%%%%%%%%%% %%%%%",
11
+ "%%%%%%%%%%% %%%%",
12
+ "%%%%%%% %%%",
13
+ "%%%%%% %%%% %%%%",
14
+ "%%%%% %%%% %%%%%",
15
+ "%%%% %%%%%%%%%%%",
16
+ "%%% %%%%%%%%%%%%",
17
+ "%% %%%%%%%%%%%%%",
18
+ "%%%%%%%%%%%%%%%%",
19
+ "%%%%%%%%%%%%%%%%",
20
+ "%%%%%%%%%%%%%%%%",
21
+ "%%%%%%%%%%%%%%%%"};
@@ -0,0 +1,69 @@
1
+ /* XPM */
2
+ static char * NoSource_xpm[] = {
3
+ "100 50 16 1",
4
+ " c #000000",
5
+ ". c #800000",
6
+ "+ c #008000",
7
+ "@ c #808000",
8
+ "# c #000080",
9
+ "$ c #800080",
10
+ "% c #008080",
11
+ "& c #808080",
12
+ "* c #C0C0C0",
13
+ "= c #FF0000",
14
+ "- c #00FF00",
15
+ "; c #FFFF00",
16
+ "> c #0000FF",
17
+ ", c #FF00FF",
18
+ "' c #00FFFF",
19
+ ") c #FFFFFF",
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
+ "===================================================================================================="};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ static const char * OrthoLine_xpm[] = {
3
+ "16 16 2 1",
4
+ " c None",
5
+ ". c #000000",
6
+ " ",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " . ",
11
+ " . ",
12
+ " ...... ",
13
+ " . . ",
14
+ " . . ",
15
+ " . ",
16
+ " . ",
17
+ " ...... ",
18
+ " ",
19
+ " ",
20
+ " ",
21
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * Rect_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " ............ ",
11
+ " .++++++++++. ",
12
+ " .++++++++++. ",
13
+ " .++++++++++. ",
14
+ " .++++++++++. ",
15
+ " .++++++++++. ",
16
+ " .++++++++++. ",
17
+ " .++++++++++. ",
18
+ " .++++++++++. ",
19
+ " ............ ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ const static char * RoundOrthoLine_xpm[] = {
3
+ "16 16 2 1",
4
+ " c None",
5
+ ". c #000000",
6
+ " ",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " . ",
11
+ " . ",
12
+ " ...... ",
13
+ " . . ",
14
+ " . . ",
15
+ " . ",
16
+ " . ",
17
+ " . ",
18
+ " ..... ",
19
+ " ",
20
+ " ",
21
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * RoundRect_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " ........ ",
11
+ " .++++++++. ",
12
+ " .++++++++++. ",
13
+ " .++++++++++. ",
14
+ " .++++++++++. ",
15
+ " .++++++++++. ",
16
+ " .++++++++++. ",
17
+ " .++++++++++. ",
18
+ " .++++++++. ",
19
+ " ........ ",
20
+ " ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,23 @@
1
+ /* XPM */
2
+ static const char * Shadow_xpm[] = {
3
+ "16 16 4 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ "@ c #808080",
8
+ " ",
9
+ " ",
10
+ " ",
11
+ " ",
12
+ " .......... ",
13
+ " .++++++++. ",
14
+ " .++++++++.@@ ",
15
+ " .++++++++.@@ ",
16
+ " .++++++++.@@ ",
17
+ " ..........@@ ",
18
+ " @@@@@@@@@@ ",
19
+ " @@@@@@@@@@ ",
20
+ " ",
21
+ " ",
22
+ " ",
23
+ " "};
@@ -0,0 +1,22 @@
1
+ /* XPM */
2
+ static const char * StandAloneLine_xpm[] = {
3
+ "16 16 3 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " ",
11
+ " ",
12
+ " ... ",
13
+ " .....+. ",
14
+ " . ... ",
15
+ " . ",
16
+ " . ",
17
+ " . ",
18
+ " ... ",
19
+ " .+. ",
20
+ " ... ",
21
+ " ",
22
+ " "};
@@ -0,0 +1,21 @@
1
+ /* XPM */
2
+ static const char * Text_xpm[] = {
3
+ "16 16 2 1",
4
+ " c None",
5
+ ". c #000000",
6
+ " ",
7
+ " ",
8
+ " ",
9
+ " ......... ",
10
+ " . . . ",
11
+ " . ",
12
+ " . ",
13
+ " . ",
14
+ " . ",
15
+ " . ",
16
+ " . ",
17
+ " ... ",
18
+ " ",
19
+ " ",
20
+ " ",
21
+ " "};
@@ -0,0 +1,23 @@
1
+ /* XPM */
2
+ static const char * Tool_xpm[] = {
3
+ "16 16 4 1",
4
+ " c None",
5
+ ". c #000000",
6
+ "+ c #FFFFFF",
7
+ "@ c #808080",
8
+ " ",
9
+ " ",
10
+ " @.. ",
11
+ " @..+. ",
12
+ " @..++.@ ",
13
+ " @..++++. ",
14
+ " @..+++++.@ ",
15
+ " .++++++. ",
16
+ " .++++.@ ",
17
+ " @.++++. ",
18
+ " @.+..+.@ ",
19
+ " @.+.@ .. ",
20
+ " @.+.@ @ ",
21
+ " .+.@ ",
22
+ " @.@ ",
23
+ " "};