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.
- checksums.yaml +7 -0
- data/.yardopts +12 -0
- data/CREDITS.md +18 -0
- data/INSTALL.md +39 -0
- data/LICENSE +21 -0
- data/README.md +118 -0
- data/assets/screenshot.png +0 -0
- data/bin/wx-shapes +9 -0
- data/lib/wx/shapes/arrow_base.rb +86 -0
- data/lib/wx/shapes/arrows/circle_arrow.rb +39 -0
- data/lib/wx/shapes/arrows/diamond_arrow.rb +33 -0
- data/lib/wx/shapes/arrows/open_arrow.rb +56 -0
- data/lib/wx/shapes/arrows/solid_arrow.rb +69 -0
- data/lib/wx/shapes/art/shape_canvas/page.xpm +73 -0
- data/lib/wx/shapes/auto_layout.rb +358 -0
- data/lib/wx/shapes/base.rb +33 -0
- data/lib/wx/shapes/canvas_history.rb +84 -0
- data/lib/wx/shapes/connection_point.rb +238 -0
- data/lib/wx/shapes/core.rb +19 -0
- data/lib/wx/shapes/diagram.rb +659 -0
- data/lib/wx/shapes/events.rb +389 -0
- data/lib/wx/shapes/printout.rb +136 -0
- data/lib/wx/shapes/serializable.rb +440 -0
- data/lib/wx/shapes/serialize/core.rb +40 -0
- data/lib/wx/shapes/serialize/id.rb +82 -0
- data/lib/wx/shapes/serialize/wx.rb +104 -0
- data/lib/wx/shapes/serializer/json.rb +258 -0
- data/lib/wx/shapes/serializer/yaml.rb +125 -0
- data/lib/wx/shapes/shape.rb +2129 -0
- data/lib/wx/shapes/shape_canvas.rb +3285 -0
- data/lib/wx/shapes/shape_data_object.rb +43 -0
- data/lib/wx/shapes/shape_handle.rb +287 -0
- data/lib/wx/shapes/shape_list.rb +161 -0
- data/lib/wx/shapes/shapes/bitmap_shape.rb +257 -0
- data/lib/wx/shapes/shapes/circle_shape.rb +136 -0
- data/lib/wx/shapes/shapes/control_shape.rb +483 -0
- data/lib/wx/shapes/shapes/curve_shape.rb +231 -0
- data/lib/wx/shapes/shapes/diamond_shape.rb +62 -0
- data/lib/wx/shapes/shapes/edit_text_shape.rb +317 -0
- data/lib/wx/shapes/shapes/ellipse_shape.rb +106 -0
- data/lib/wx/shapes/shapes/flex_grid_shape.rb +78 -0
- data/lib/wx/shapes/shapes/grid_shape.rb +404 -0
- data/lib/wx/shapes/shapes/line_shape.rb +907 -0
- data/lib/wx/shapes/shapes/multi_sel_rect.rb +214 -0
- data/lib/wx/shapes/shapes/ortho_shape.rb +357 -0
- data/lib/wx/shapes/shapes/polygon_shape.rb +294 -0
- data/lib/wx/shapes/shapes/rect_shape.rb +378 -0
- data/lib/wx/shapes/shapes/round_ortho_shape.rb +131 -0
- data/lib/wx/shapes/shapes/round_rect_shape.rb +142 -0
- data/lib/wx/shapes/shapes/square_shape.rb +119 -0
- data/lib/wx/shapes/shapes/text_shape.rb +324 -0
- data/lib/wx/shapes/thumbnail.rb +234 -0
- data/lib/wx/shapes/version.rb +12 -0
- data/lib/wx/shapes/wx.rb +29 -0
- data/lib/wx/shapes.rb +18 -0
- data/lib/wx/wx-shapes/base.rb +87 -0
- data/lib/wx/wx-shapes/cmd/sampler.rb +58 -0
- data/lib/wx/wx-shapes/cmd/test.rb +27 -0
- data/rakelib/yard/templates/default/fulldoc/html/css/wxruby3.css +7 -0
- data/rakelib/yard/templates/default/layout/html/setup.rb +5 -0
- data/rakelib/yard/yard/relative_markdown_links/version.rb +8 -0
- data/rakelib/yard/yard/relative_markdown_links.rb +39 -0
- data/rakelib/yard/yard-custom-templates.rb +2 -0
- data/rakelib/yard/yard-relative_markdown_links.rb +4 -0
- data/samples/demo/art/AlignBottom.xpm +35 -0
- data/samples/demo/art/AlignCenter.xpm +35 -0
- data/samples/demo/art/AlignLeft.xpm +35 -0
- data/samples/demo/art/AlignMiddle.xpm +35 -0
- data/samples/demo/art/AlignRight.xpm +35 -0
- data/samples/demo/art/AlignTop.xpm +35 -0
- data/samples/demo/art/Bitmap.xpm +25 -0
- data/samples/demo/art/Circle.xpm +22 -0
- data/samples/demo/art/Curve.xpm +21 -0
- data/samples/demo/art/Diamond.xpm +22 -0
- data/samples/demo/art/EditText.xpm +21 -0
- data/samples/demo/art/Ellipse.xpm +22 -0
- data/samples/demo/art/FixedRect.xpm +22 -0
- data/samples/demo/art/FlexGrid.xpm +22 -0
- data/samples/demo/art/GC.xpm +23 -0
- data/samples/demo/art/Grid.xpm +22 -0
- data/samples/demo/art/Line.xpm +21 -0
- data/samples/demo/art/NoSource.xpm +69 -0
- data/samples/demo/art/OrthoLine.xpm +21 -0
- data/samples/demo/art/Rect.xpm +22 -0
- data/samples/demo/art/RoundOrthoLine.xpm +21 -0
- data/samples/demo/art/RoundRect.xpm +22 -0
- data/samples/demo/art/Shadow.xpm +23 -0
- data/samples/demo/art/StandAloneLine.xpm +22 -0
- data/samples/demo/art/Text.xpm +21 -0
- data/samples/demo/art/Tool.xpm +23 -0
- data/samples/demo/art/sample.xpm +251 -0
- data/samples/demo/demo.rb +658 -0
- data/samples/demo/frame_canvas.rb +422 -0
- data/samples/demo/images/motyl.bmp +0 -0
- data/samples/demo/images/motyl2.bmp +0 -0
- data/samples/sample1/art/sample.xpm +251 -0
- data/samples/sample1/sample.rb +263 -0
- data/samples/sample2/art/sample.xpm +251 -0
- data/samples/sample2/sample.rb +133 -0
- data/samples/sample2/sample_canvas.rb +35 -0
- data/samples/sample2/sample_shape.rb +108 -0
- data/samples/sample3/art/sample.xpm +251 -0
- data/samples/sample3/sample.rb +281 -0
- data/samples/sample4/art/sample.xpm +251 -0
- data/samples/sample4/sample.rb +180 -0
- data/tests/art/motyl.bmp +0 -0
- data/tests/lib/wxapp_runner.rb +64 -0
- data/tests/serializer_tests.rb +521 -0
- data/tests/test_grid_shapes.rb +42 -0
- data/tests/test_serialize.rb +7 -0
- data/tests/test_serialize_yaml.rb +17 -0
- 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
|
+
" "};
|