Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
4354139f
Commit
4354139f
authored
Apr 16, 2015
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Very minor fixes.
Removing trailing spaces in some files.
parent
d40ea8ad
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
275 additions
and
271 deletions
+275
-271
3d_class.cpp
3d-viewer/3d_class.cpp
+2
-2
3d_draw.cpp
3d-viewer/3d_draw.cpp
+1
-1
3d_material.cpp
3d-viewer/3d_material.cpp
+1
-1
3d_mesh_model.cpp
3d-viewer/3d_mesh_model.cpp
+9
-9
vrml_v2_modelparser.cpp
3d-viewer/vrml_v2_modelparser.cpp
+19
-10
x3dmodelparser.cpp
3d-viewer/x3dmodelparser.cpp
+2
-2
array_line.cpp
bitmaps_png/cpp_26/array_line.cpp
+38
-39
array_pad.cpp
bitmaps_png/cpp_26/array_pad.cpp
+61
-61
array_text.cpp
bitmaps_png/cpp_26/array_text.cpp
+24
-24
wizard_add_fplib_small.cpp
bitmaps_png/cpp_26/wizard_add_fplib_small.cpp
+118
-122
No files found.
3d-viewer/3d_class.cpp
View file @
4354139f
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
/**
/**
* @file 3d_class.cpp
* @file 3d_class.cpp
*/
*/
#include <fctsys.h>
#include <fctsys.h>
#include "3d_viewer.h"
#include "3d_viewer.h"
...
@@ -54,7 +54,7 @@ S3D_MASTER::S3D_MASTER( EDA_ITEM* aParent ) :
...
@@ -54,7 +54,7 @@ S3D_MASTER::S3D_MASTER( EDA_ITEM* aParent ) :
EDA_ITEM
(
aParent
,
NOT_USED
)
EDA_ITEM
(
aParent
,
NOT_USED
)
{
{
m_MatScale
.
x
=
m_MatScale
.
y
=
m_MatScale
.
z
=
1.0
;
m_MatScale
.
x
=
m_MatScale
.
y
=
m_MatScale
.
z
=
1.0
;
m_3D_Drawings
=
NULL
;
m_3D_Drawings
=
NULL
;
m_Materials
=
NULL
;
m_Materials
=
NULL
;
m_parser
=
NULL
;
m_parser
=
NULL
;
...
...
3d-viewer/3d_draw.cpp
View file @
4354139f
...
@@ -929,7 +929,7 @@ void EDA_3D_CANVAS::buildBoard3DView( GLuint aBoardList, GLuint aBodyOnlyList,
...
@@ -929,7 +929,7 @@ void EDA_3D_CANVAS::buildBoard3DView( GLuint aBoardList, GLuint aBodyOnlyList,
int
thickness
=
GetPrm3DVisu
().
GetLayerObjectThicknessBIU
(
layer
);
int
thickness
=
GetPrm3DVisu
().
GetLayerObjectThicknessBIU
(
layer
);
int
zpos
=
GetPrm3DVisu
().
GetLayerZcoordBIU
(
layer
);
int
zpos
=
GetPrm3DVisu
().
GetLayerZcoordBIU
(
layer
);
float
zNormal
=
1.0
f
;
// When using thickness it will draw first the top and then botton (with z inverted)
float
zNormal
=
1.0
f
;
// When using thickness it will draw first the top and then botton (with z inverted)
// If we are not using thickness, then the znormal must face the layer direction
// If we are not using thickness, then the znormal must face the layer direction
...
...
3d-viewer/3d_material.cpp
View file @
4354139f
...
@@ -87,7 +87,7 @@ bool S3D_MATERIAL::SetOpenGLMaterial( unsigned int aMaterialIndex, bool aUseMate
...
@@ -87,7 +87,7 @@ bool S3D_MATERIAL::SetOpenGLMaterial( unsigned int aMaterialIndex, bool aUseMate
if
(
m_Transparency
.
size
()
>
0
)
if
(
m_Transparency
.
size
()
>
0
)
transparency_value
=
m_Transparency
[
0
];
transparency_value
=
m_Transparency
[
0
];
}
}
if
(
m_DiffuseColor
.
size
()
>
aMaterialIndex
)
if
(
m_DiffuseColor
.
size
()
>
aMaterialIndex
)
{
{
glm
::
vec3
color
=
m_DiffuseColor
[
aMaterialIndex
];
glm
::
vec3
color
=
m_DiffuseColor
[
aMaterialIndex
];
...
...
3d-viewer/3d_mesh_model.cpp
View file @
4354139f
...
@@ -188,9 +188,9 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
...
@@ -188,9 +188,9 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
printf("m_MaterialIndexPerVertex.size() %lu\n", m_MaterialIndexPerVertex.size() );
printf("m_MaterialIndexPerVertex.size() %lu\n", m_MaterialIndexPerVertex.size() );
printf("m_PerVertexNormalsNormalized.size() %lu\n", m_PerVertexNormalsNormalized.size() );
printf("m_PerVertexNormalsNormalized.size() %lu\n", m_PerVertexNormalsNormalized.size() );
printf("m_PerFaceVertexNormals.size() %lu\n", m_PerFaceVertexNormals.size() );
printf("m_PerFaceVertexNormals.size() %lu\n", m_PerFaceVertexNormals.size() );
printf("smoothShapes %d\n", smoothShapes );
printf("smoothShapes %d\n", smoothShapes );
if( m_Materials )
if( m_Materials )
{
{
printf(" m_Name %s\n", static_cast<const char*>(m_Materials->m_Name.c_str()) );
printf(" m_Name %s\n", static_cast<const char*>(m_Materials->m_Name.c_str()) );
...
@@ -314,7 +314,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
...
@@ -314,7 +314,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
{
{
glm::vec3 normal = normals_list[ii];
glm::vec3 normal = normals_list[ii];
printf("normal(%f, %f, %f), ", normal.x, normal.y, normal.z );
printf("normal(%f, %f, %f), ", normal.x, normal.y, normal.z );
//glNormal3fv( &normal.x );
//glNormal3fv( &normal.x );
glm::vec3 point = m_Point[m_CoordIndex[idx][ii]];
glm::vec3 point = m_Point[m_CoordIndex[idx][ii]];
...
@@ -378,7 +378,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
...
@@ -378,7 +378,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
continue
;
continue
;
}
}
}
}
if
(
isTransparent
&&
aIsRenderingJustNonTransparentObjects
)
if
(
isTransparent
&&
aIsRenderingJustNonTransparentObjects
)
continue
;
continue
;
...
@@ -408,7 +408,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
...
@@ -408,7 +408,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
// for VRML2:
// for VRML2:
// http://accad.osu.edu/~pgerstma/class/vnv/resources/info/AnnotatedVrmlRef/ch3-323.htm
// http://accad.osu.edu/~pgerstma/class/vnv/resources/info/AnnotatedVrmlRef/ch3-323.htm
// "If colorPerVertex is TRUE, colours are applied to each vertex, as follows:
// "If colorPerVertex is TRUE, colours are applied to each vertex, as follows:
if
(
(
m_Materials
->
m_ColorPerVertex
==
true
)
&&
if
(
(
m_Materials
->
m_ColorPerVertex
==
true
)
&&
(
m_Materials
->
m_DiffuseColor
.
size
()
>
1
)
)
(
m_Materials
->
m_DiffuseColor
.
size
()
>
1
)
)
{
{
// "If the colorIndex field is not empty, then colours
// "If the colorIndex field is not empty, then colours
...
@@ -572,7 +572,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
...
@@ -572,7 +572,7 @@ void S3D_MESH::openGL_Render( bool aIsRenderingJustNonTransparentObjects,
// for VRML2:
// for VRML2:
// http://accad.osu.edu/~pgerstma/class/vnv/resources/info/AnnotatedVrmlRef/ch3-323.htm
// http://accad.osu.edu/~pgerstma/class/vnv/resources/info/AnnotatedVrmlRef/ch3-323.htm
// "If colorPerVertex is TRUE, colours are applied to each vertex, as follows:
// "If colorPerVertex is TRUE, colours are applied to each vertex, as follows:
if
(
(
m_Materials
->
m_ColorPerVertex
==
true
)
&&
if
(
(
m_Materials
->
m_ColorPerVertex
==
true
)
&&
(
m_Materials
->
m_DiffuseColor
.
size
()
>
1
)
)
(
m_Materials
->
m_DiffuseColor
.
size
()
>
1
)
)
{
{
// "If the colorIndex field is not empty, then colours
// "If the colorIndex field is not empty, then colours
...
@@ -804,7 +804,7 @@ void S3D_MESH::calcPerFaceNormals()
...
@@ -804,7 +804,7 @@ void S3D_MESH::calcPerFaceNormals()
for
(
unsigned
int
i
=
0
;
i
<
m_CoordIndex
[
idx
].
size
();
i
++
)
for
(
unsigned
int
i
=
0
;
i
<
m_CoordIndex
[
idx
].
size
();
i
++
)
{
{
glm
::
dvec3
u
=
glm
::
dvec3
(
m_PointNormalized
[
m_CoordIndex
[
idx
][
i
]]
);
glm
::
dvec3
u
=
glm
::
dvec3
(
m_PointNormalized
[
m_CoordIndex
[
idx
][
i
]]
);
glm
::
dvec3
v
=
glm
::
dvec3
(
m_PointNormalized
[
m_CoordIndex
[
idx
][(
i
+
1
)
%
m_CoordIndex
[
idx
].
size
()]]
);
glm
::
dvec3
v
=
glm
::
dvec3
(
m_PointNormalized
[
m_CoordIndex
[
idx
][(
i
+
1
)
%
m_CoordIndex
[
idx
].
size
()]]
);
...
@@ -883,7 +883,7 @@ void S3D_MESH::calcPerFaceNormals()
...
@@ -883,7 +883,7 @@ void S3D_MESH::calcPerFaceNormals()
}
}
else
else
{
{
/*
/*
for( unsigned int i = 0; i < m_CoordIndex[idx].size(); i++ )
for( unsigned int i = 0; i < m_CoordIndex[idx].size(); i++ )
{
{
...
@@ -895,7 +895,7 @@ void S3D_MESH::calcPerFaceNormals()
...
@@ -895,7 +895,7 @@ void S3D_MESH::calcPerFaceNormals()
cross_prod.x, cross_prod.y, cross_prod.z,
cross_prod.x, cross_prod.y, cross_prod.z,
l,
l,
(unsigned int)m_CoordIndex[idx].size()) );
(unsigned int)m_CoordIndex[idx].size()) );
*/
*/
if
(
(
cross_prod
.
x
>
cross_prod
.
y
)
&&
(
cross_prod
.
x
>
cross_prod
.
z
)
)
if
(
(
cross_prod
.
x
>
cross_prod
.
y
)
&&
(
cross_prod
.
x
>
cross_prod
.
z
)
)
...
...
3d-viewer/vrml_v2_modelparser.cpp
View file @
4354139f
...
@@ -174,7 +174,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -174,7 +174,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
(
m_model
->
childs
.
size
()
==
0
)
)
(
m_model
->
childs
.
size
()
==
0
)
)
{
{
m_model
.
reset
();
m_model
.
reset
();
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
}
}
else
else
{
{
...
@@ -184,7 +185,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -184,7 +185,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
m_model
->
m_rotation
=
aTransformationModel
->
m_rotation
;
m_model
->
m_rotation
=
aTransformationModel
->
m_rotation
;
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
}
}
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
m_model
->
m_Point
.
size
(),
m_model
->
m_Point
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
childs
.
size
()
);
m_model
->
childs
.
size
()
);
...
@@ -210,7 +212,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -210,7 +212,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
(
m_model
->
childs
.
size
()
==
0
)
)
(
m_model
->
childs
.
size
()
==
0
)
)
{
{
m_model
.
reset
();
m_model
.
reset
();
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
}
}
else
else
{
{
...
@@ -220,7 +223,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -220,7 +223,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
m_model
->
m_rotation
=
aTransformationModel
->
m_rotation
;
m_model
->
m_rotation
=
aTransformationModel
->
m_rotation
;
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
}
}
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
m_model
->
m_Point
.
size
(),
m_model
->
m_Point
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
childs
.
size
()
);
m_model
->
childs
.
size
()
);
...
@@ -246,7 +250,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -246,7 +250,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
(
m_model
->
childs
.
size
()
==
0
)
)
(
m_model
->
childs
.
size
()
==
0
)
)
{
{
m_model
.
reset
();
m_model
.
reset
();
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: skipping model with no points or childs"
)
);
}
}
else
else
{
{
...
@@ -257,7 +262,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -257,7 +262,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
m_model
->
m_scale
=
aTransformationModel
->
m_scale
;
}
}
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: Add model with %zu points, %zu coordIndex, %zu childs."
),
m_model
->
m_Point
.
size
(),
m_model
->
m_Point
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
m_CoordIndex
.
size
(),
m_model
->
childs
.
size
()
);
m_model
->
childs
.
size
()
);
...
@@ -278,11 +284,13 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -278,11 +284,13 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
if
(
(
m_counter_DEF_GROUP
>
0
)
&&
(
m_counter_USE_GROUP
==
0
)
)
if
(
(
m_counter_DEF_GROUP
>
0
)
&&
(
m_counter_USE_GROUP
==
0
)
)
{
{
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: groups defined with DEF * GROUP but not used with USE, forcing add it..."
)
);
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: groups defined with DEF * GROUP but not used with USE, forcing add it..."
)
);
if
(
m_defGroupMap
.
size
()
>
0
)
if
(
!
m_defGroupMap
.
empty
()
)
{
{
for
(
VRML2_DEF_GROUP_MAP
::
iterator
groupIt
=
m_defGroupMap
.
begin
();
groupIt
!=
m_defGroupMap
.
end
();
++
groupIt
)
for
(
VRML2_DEF_GROUP_MAP
::
iterator
groupIt
=
m_defGroupMap
.
begin
();
groupIt
!=
m_defGroupMap
.
end
();
++
groupIt
)
{
{
wxString
groupName
=
groupIt
->
first
;
wxString
groupName
=
groupIt
->
first
;
S3D_MESH_PTR
ptrModel
(
groupIt
->
second
);
S3D_MESH_PTR
ptrModel
(
groupIt
->
second
);
...
@@ -296,7 +304,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
...
@@ -296,7 +304,8 @@ int VRML2_MODEL_PARSER::loadFileModel( S3D_MESH_PTR aTransformationModel )
}
}
else
else
{
{
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: forced added %s group"
),
groupName
);
wxLogTrace
(
traceVrmlV2Parser
,
m_debugSpacer
+
wxT
(
"loadFileModel: forced added %s group"
),
groupName
);
m_ModelParser
->
childs
.
push_back
(
ptrModel
);
m_ModelParser
->
childs
.
push_back
(
ptrModel
);
}
}
}
}
...
...
3d-viewer/x3dmodelparser.cpp
View file @
4354139f
...
@@ -104,7 +104,7 @@ bool X3D_MODEL_PARSER::Load( const wxString& aFilename )
...
@@ -104,7 +104,7 @@ bool X3D_MODEL_PARSER::Load( const wxString& aFilename )
readTransform
(
node
);
readTransform
(
node
);
}
}
return
true
;
return
true
;
...
@@ -117,7 +117,7 @@ void X3D_MODEL_PARSER::GetChildsByName( wxXmlNode* aParent,
...
@@ -117,7 +117,7 @@ void X3D_MODEL_PARSER::GetChildsByName( wxXmlNode* aParent,
{
{
// (-Breadth-first search (BFS)-)
// (-Breadth-first search (BFS)-)
// **NOTE** This function was changed to get only the first depth of ocorrences
// **NOTE** This function was changed to get only the first depth of ocorrences
// so it will be an workarround for the Bug #1443431
// so it will be an workarround for the Bug #1443431
std
::
queue
<
wxXmlNode
*>
found
;
std
::
queue
<
wxXmlNode
*>
found
;
found
.
push
(
aParent
);
found
.
push
(
aParent
);
...
...
bitmaps_png/cpp_26/array_line.cpp
View file @
4354139f
...
@@ -8,45 +8,44 @@
...
@@ -8,45 +8,44 @@
static
const
unsigned
char
png
[]
=
{
static
const
unsigned
char
png
[]
=
{
0x89
,
0x50
,
0x4e
,
0x47
,
0x0d
,
0x0a
,
0x1a
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x0d
,
0x49
,
0x48
,
0x44
,
0x52
,
0x89
,
0x50
,
0x4e
,
0x47
,
0x0d
,
0x0a
,
0x1a
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x0d
,
0x49
,
0x48
,
0x44
,
0x52
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x08
,
0x06
,
0x00
,
0x00
,
0x00
,
0xa9
,
0x4a
,
0x4c
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x08
,
0x06
,
0x00
,
0x00
,
0x00
,
0xa9
,
0x4a
,
0x4c
,
0xce
,
0x00
,
0x00
,
0x02
,
0x51
,
0x49
,
0x44
,
0x41
,
0x54
,
0x48
,
0xc7
,
0xa5
,
0x96
,
0x4f
,
0x6c
,
0x4c
,
0xce
,
0x00
,
0x00
,
0x02
,
0x47
,
0x49
,
0x44
,
0x41
,
0x54
,
0x48
,
0xc7
,
0xa5
,
0x96
,
0x3b
,
0x68
,
0x14
,
0x51
,
0x14
,
0xc6
,
0x7f
,
0xa3
,
0xff
,
0xa4
,
0xd5
,
0x4a
,
0x34
,
0xb5
,
0x20
,
0x4d
,
0xc5
,
0x42
,
0x5a
,
0x51
,
0x14
,
0x86
,
0xbf
,
0x35
,
0x2f
,
0x51
,
0x13
,
0x91
,
0x10
,
0x0b
,
0x25
,
0xac
,
0x58
,
0xc8
,
0xfa
,
0x74
,
0xa9
,
0x34
,
0x44
,
0x42
,
0x10
,
0x82
,
0x48
,
0x2c
,
0x84
,
0x88
,
0x58
,
0x58
,
0xd0
,
0x8d
,
0xda
,
0x48
,
0xe9
,
0x62
,
0x10
,
0x04
,
0xc5
,
0x07
,
0x62
,
0x40
,
0x10
,
0x14
,
0x15
,
0xb4
,
0xb1
,
0x50
,
0x9b
,
0x48
,
0x49
,
0xa4
,
0xe9
,
0x06
,
0x8b
,
0x62
,
0x31
,
0xb4
,
0xe3
,
0xdd
,
0x73
,
0xdf
,
0x8c
,
0x69
,
0xaa
,
0x60
,
0x63
,
0x44
,
0xf0
,
0xd5
,
0xa8
,
0x20
,
0xb1
,
0x70
,
0x35
,
0xbb
,
0x99
,
0x7b
,
0xee
,
0x64
,
0x4d
,
0x99
,
0x94
,
0x11
,
0xed
,
0x58
,
0xb1
,
0x60
,
0x67
,
0x6d
,
0x65
,
0x6b
,
0x63
,
0x67
,
0x61
,
0x23
,
0xb1
,
0x70
,
0x31
,
0x24
,
0x11
,
0x93
,
0xc1
,
0x4a
,
0x0b
,
0xed
,
0xac
,
0xad
,
0x6c
,
0x6d
,
0xec
,
0x2c
,
0x6c
,
0x20
,
0xd7
,
0xe6
,
0x78
,
0xf3
,
0x5a
,
0x33
,
0xef
,
0xde
,
0xc6
,
0xe2
,
0x25
,
0x2f
,
0x99
,
0xef
,
0xe4
,
0x04
,
0x0b
,
0xe5
,
0x5a
,
0x78
,
0x9c
,
0x8c
,
0x71
,
0x77
,
0xee
,
0x5d
,
0x2c
,
0x06
,
0x06
,
0xe6
,
0x3f
,
0x77
,
0xee
,
0x79
,
0xe7
,
0xfb
,
0xee
,
0xe0
,
0x9c
,
0x23
,
0xf4
,
0x61
,
0x8a
,
0x75
,
0x6b
,
0xd2
,
0x43
,
0x7c
,
0xe7
,
0x7d
,
0x06
,
0xe7
,
0x1c
,
0xa1
,
0x0f
,
0x77
,
0x58
,
0xd5
,
0x96
,
0x1e
,
0x0a
,
0xe9
,
0x7b
,
0x2e
,
0x79
,
0x0f
,
0x2e
,
0x12
,
0xc6
,
0x10
,
0xde
,
0x11
,
0xd3
,
0x1d
,
0xa4
,
0x37
,
0x5c
,
0xc4
,
0x30
,
0xb0
,
0x91
,
0x70
,
0x19
,
0xe1
,
0x0d
,
0x31
,
0xbd
,
0x41
,
0x7a
,
0xcb
,
0x59
,
0x2c
,
0x63
,
0xbc
,
0xa5
,
0xc1
,
0x7b
,
0x5a
,
0x83
,
0x41
,
0x08
,
0x67
,
0x11
,
0x7e
,
0x23
,
0x38
,
0x84
,
0x9b
,
0x01
,
0x90
,
0x13
,
0x33
,
0x18
,
0x84
,
0x70
,
0x02
,
0xe1
,
0x27
,
0x82
,
0x43
,
0xb8
,
0xea
,
0xd5
,
0x1b
,
0x8e
,
0x22
,
0x24
,
0x08
,
0x35
,
0x84
,
0x1a
,
0x31
,
0x87
,
0x82
,
0x40
,
0x58
,
0x0e
,
0x22
,
0xfc
,
0x54
,
0xc8
,
0x0b
,
0xdf
,
0x08
,
0x09
,
0x11
,
0xfb
,
0x83
,
0x40
,
0x58
,
0xf6
,
0x21
,
0x7c
,
0x57
,
0xc8
,
0xbc
,
0x2f
,
0x7d
,
0x4c
,
0xf8
,
0x88
,
0x19
,
0x45
,
0x58
,
0x56
,
0xd0
,
0x58
,
0xd0
,
0xe8
,
0x88
,
0x18
,
0x46
,
0xf8
,
0xae
,
0x90
,
0x32
,
0x8c
,
0x61
,
0x09
,
0x21
,
0xc1
,
0x70
,
0x29
,
0x28
,
0x75
,
0x44
,
0x0c
,
0x21
,
0x7c
,
0x55
,
0xc8
,
0x0f
,
0xe4
,
0xe9
,
0xf0
,
0x9c
,
0x64
,
0x17
,
0x42
,
0x15
,
0xa1
,
0x86
,
0xe5
,
0x36
,
0x2e
,
0xe0
,
0x1b
,
0x3b
,
0x2a
,
0xf4
,
0x78
,
0x22
,
0xd9
,
0x89
,
0x65
,
0x41
,
0x21
,
0xd7
,
0x71
,
0x01
,
0x35
,
0xc2
,
0x52
,
0x61
,
0x19
,
0x40
,
0xf8
,
0xaa
,
0x90
,
0x4f
,
0x44
,
0x6c
,
0xf4
,
0x9c
,
0x7c
,
0x00
,
0xa1
,
0xa2
,
0x27
,
0x44
,
0xf8
,
0xac
,
0x90
,
0x0f
,
0x44
,
0xac
,
0xf7
,
0x44
,
0x5e
,
0xc4
,
0xf0
,
0x5c
,
0x53
,
0x76
,
0x9f
,
0xb9
,
0x4f
,
0x44
,
0xdb
,
0x8a
,
0xdf
,
0x1b
,
0x16
,
0x95
,
0xe9
,
0x45
,
0xf8
,
0xac
,
0x90
,
0x2f
,
0xc4
,
0x88
,
0xae
,
0xbf
,
0xbe
,
0x37
,
0x35
,
0x9a
,
0xa6
,
0x1f
,
0xe1
,
0xa3
,
0x42
,
0x3e
,
0x11
,
0xb3
,
0x29
,
0x6c
,
0xc9
,
0x84
,
0x14
,
0xe9
,
0x43
,
0x78
,
0xa6
,
0x90
,
0x27
,
0xcc
,
0xd1
,
0xf5
,
0x8f
,
0xa6
,
0xc1
,
0x17
,
0x32
,
0xc5
,
0x00
,
0x96
,
0x3a
,
0x42
,
0x82
,
0xe5
,
0x31
,
0x33
,
0xac
,
0xfd
,
0x47
,
0xd3
,
0x24
,
0xb8
,
0x3a
,
0x11
,
0x3e
,
0x2a
,
0xe4
,
0x1b
,
0x11
,
0x83
,
0x9e
,
0x6f
,
0xd2
,
0x8d
,
0x50
,
0x50
,
0x48
,
0x5d
,
0x6b
,
0x10
,
0xde
,
0x2b
,
0xe4
,
0x0b
,
0x11
,
0xa5
,
0x5c
,
0x48
,
0x4c
,
0x2f
,
0x42
,
0x55
,
0xd3
,
0x91
,
0x32
,
0xbd
,
0x0d
,
0x75
,
0xab
,
0x7c
,
0xd2
,
0x8a
,
0xe1
,
0x8d
,
0x42
,
0x7e
,
0x10
,
0x33
,
0x9a
,
0x15
,
0xf3
,
0x84
,
0xfe
,
0xa6
,
0xba
,
0x15
,
0x73
,
0xd2
,
0x89
,
0xe1
,
0x95
,
0x42
,
0xbe
,
0x11
,
0x33
,
0x09
,
0xc9
,
0xd3
,
0x81
,
0x61
,
0x5a
,
0x21
,
0x0b
,
0xcc
,
0xd0
,
0xdf
,
0x54
,
0xbb
,
0x6a
,
0xce
,
0x25
,
0x9c
,
0x0b
,
0xa9
,
0xd0
,
0x83
,
0xf0
,
0x40
,
0x23
,
0x69
,
0x30
,
0xc1
,
0x60
,
0x4b
,
0xed
,
0x8a
,
0x3c
,
0x85
,
0xfc
,
0xc2
,
0x70
,
0x2a
,
0x13
,
0xb2
,
0x48
,
0x0b
,
0x86
,
0x49
,
0x85
,
0x54
,
0x11
,
0x86
,
0x32
,
0xd7
,
0x15
,
0xf2
,
0x03
,
0xc3
,
0x48
,
0x2e
,
0x64
,
0x8e
,
0x0e
,
0x84
,
0x9b
,
0x1a
,
0xc9
,
0x02
,
0x75
,
0xf5
,
0xa9
,
0x8d
,
0xb9
,
0xa7
,
0x10
,
0x87
,
0x70
,
0x25
,
0xc0
,
0x5b
,
0xd7
,
0x75
,
0xbb
,
0x96
,
0x88
,
0x4f
,
0xe4
,
0x99
,
0x8e
,
0xb9
,
0xa7
,
0x10
,
0x87
,
0x70
,
0x21
,
0x60
,
0xb6
,
0x46
,
0xb5
,
0xf0
,
0x8b
,
0xd8
,
0xeb
,
0xd5
,
0x6b
,
0xd1
,
0x85
,
0x04
,
0x62
,
0xb8
,
0x13
,
0x00
,
0x39
,
0x93
,
0x32
,
0xe4
,
0xb1
,
0x58
,
0xca
,
0x5e
,
0xbd
,
0x1a
,
0x9d
,
0x49
,
0x21
,
0x86
,
0x1b
,
0x01
,
0x90
,
0xe3
,
0x99
,
0x81
,
0x3c
,
0x20
,
0xd3
,
0x3b
,
0xe7
,
0x60
,
0x86
,
0x0d
,
0x08
,
0x6f
,
0x11
,
0x66
,
0x9b
,
0x0a
,
0x0b
,
0x6c
,
0x45
,
0x1c
,
0x34
,
0xf4
,
0xce
,
0x39
,
0x98
,
0x60
,
0x1d
,
0xc2
,
0x6b
,
0x84
,
0x6a
,
0x4b
,
0x61
,
0x8d
,
0xcd
,
0x38
,
0xec
,
0x9c
,
0x83
,
0x79
,
0x7a
,
0x30
,
0x3c
,
0xc2
,
0x72
,
0x3e
,
0xc3
,
0x53
,
0x3b
,
0xd2
,
0x27
,
0x08
,
0x07
,
0xb4
,
0x36
,
0x7d
,
0x58
,
0x1e
,
0x62
,
0x38
,
0x9d
,
0x33
,
0x53
,
0xdb
,
0xb2
,
0x91
,
0x66
,
0x4d
,
0xcf
,
0xbc
,
0xbd
,
0x99
,
0xeb
,
0xb1
,
0x6c
,
0xc2
,
0x10
,
0xeb
,
0xa8
,
0x8e
,
0xeb
,
0xe2
,
0xb4
,
0x73
,
0xde
,
0xdd
,
0x6a
,
0xea
,
0x69
,
0xb0
,
0x01
,
0xc1
,
0x6a
,
0x3d
,
0x8e
,
0x68
,
0xe3
,
0x74
,
0x7b
,
0x7b
,
0x9a
,
0x7a
,
0x8e
,
0x65
,
0x09
,
0x61
,
0x5f
,
0x58
,
0x04
,
0x4d
,
0xd3
,
0x85
,
0xe1
,
0xb1
,
0x8e
,
0x9c
,
0x7a
,
0x86
,
0xb0
,
0x88
,
0xb0
,
0x27
,
0x6c
,
0x05
,
0xfd
,
0x6e
,
0xf7
,
0x8a
,
0xa6
,
0xea
,
0x29
,
0xaa
,
0x4c
,
0x91
,
0x3e
,
0x8f
,
0x71
,
0xeb
,
0x4d
,
0x19
,
0x9e
,
0xfe
,
0x0d
,
0x61
,
0x5f
,
0x04
,
0xb5
,
0x53
,
0x0c
,
0xe4
,
0xea
,
0xb3
,
0x4e
,
0x09
,
0xb5
,
0x3f
,
0x4b
,
0xd8
,
0x07
,
0xe9
,
0x42
,
0xb8
,
0xab
,
0xe9
,
0x92
,
0xd4
,
0x10
,
0x2a
,
0x14
,
0xd8
,
0xe6
,
0xd1
,
0x77
,
0x22
,
0xe4
,
0x93
,
0xa6
,
0x0a
,
0x6c
,
0x46
,
0xb3
,
0x58
,
0x8a
,
0x01
,
0x4e
,
0x3d
,
0x52
,
0xfd
,
0x34
,
0x35
,
0x36
,
0xfa
,
0x57
,
0x90
,
0xa3
,
0xf6
,
0x47
,
0x90
,
0x23
,
0x87
,
0x70
,
0x4b
,
0x8b
,
0x5e
,
0x61
,
0xd9
,
0xed
,
0x6d
,
0x4a
,
0xb8
,
0x9b
,
0x80
,
0xe5
,
0x9a
,
0x1a
,
0xbd
,
0xc0
,
0xb2
,
0xab
,
0x2d
,
0xa7
,
0xea
,
0x6c
,
0xf1
,
0xae
,
0x20
,
0x9d
,
0x34
,
0x55
,
0x5a
,
0xd9
,
0x54
,
0x56
,
0x40
,
0x5e
,
0xd3
,
0xa2
,
0x65
,
0x2c
,
0xfb
,
0xb3
,
0x37
,
0x8a
,
0xa9
,
0x8b
,
0x5a
,
0x93
,
0x25
,
0x2c
,
0x7b
,
0xf3
,
0x3b
,
0x8a
,
0x02
,
0x26
,
0xe3
,
0x54
,
0xc4
,
0x90
,
0x1c
,
0x96
,
0x89
,
0xa4
,
0xa9
,
0x88
,
0x61
,
0x6f
,
0x04
,
0x29
,
0xe4
,
0x5c
,
0xb2
,
0xbe
,
0x96
,
0x93
,
0x77
,
0x05
,
0x69
,
0xc7
,
0x9c
,
0xca
,
0xb4
,
0xef
,
0xb1
,
0x80
,
0x3a
,
0x7a
,
0x9d
,
0x6a
,
0x36
,
0x23
,
0x01
,
0x57
,
0xc9
,
0xd5
,
0xa4
,
0xa9
,
0x88
,
0x03
,
0xde
,
0x64
,
0x50
,
0x8f
,
0x1c
,
0x4d
,
0x41
,
0x2e
,
0x87
,
0x52
,
0x88
,
0xe1
,
0x5c
,
0xc0
,
0xbd
,
0x3a
,
0x99
,
0xd1
,
0x8f
,
0x84
,
0xae
,
0xa0
,
0xb2
,
0xb6
,
0x05
,
0x5c
,
0x72
,
0xe9
,
0xa6
,
0x4e
,
0x87
,
0x46
,
0xd0
,
0x88
,
0xae
,
0x64
,
0x0d
,
0xc3
,
0x78
,
0x00
,
0x64
,
0x82
,
0x30
,
0x1a
,
0x70
,
0x49
,
0x0f
,
0xa6
,
0x10
,
0xe1
,
0x7c
,
0xd8
,
0x0a
,
0x8a
,
0x28
,
0x61
,
0xe4
,
0x48
,
0x0a
,
0x72
,
0x39
,
0x2c
,
0x82
,
0x22
,
0x06
,
0x53
,
0x97
,
0xd6
,
0x24
,
0x8b
,
0xb4
,
0x78
,
0xd2
,
0xa3
,
0x75
,
0x8b
,
0x39
,
0x3a
,
0x3c
,
0x90
,
0xdd
,
0x18
,
0x5e
,
0x2a
,
0xe4
,
0x4a
,
0xe8
,
0x66
,
0x20
,
0x7b
,
0x10
,
0x5e
,
0x2b
,
0xe8
,
0x46
,
0x68
,
0x32
,
0xf4
,
0x23
,
0x2c
,
0x68
,
0xd1
,
0x03
,
0xef
,
0x18
,
0xc4
,
0xd2
,
0x50
,
0xa3
,
0x71
,
0xef
,
0x25
,
0x8d
,
0x28
,
0x21
,
0xcc
,
0xab
,
0xfe
,
0xb6
,
0xcf
,
0x4d
,
0x1a
,
0x31
,
0x88
,
0xe5
,
0xa5
,
0xea
,
0xa7
,
0x7c
,
0x4d
,
0xd5
,
0x41
,
0x45
,
0x76
,
0x22
,
0x54
,
0xa9
,
0x65
,
0xd0
,
0x24
,
0x3b
,
0x10
,
0x66
,
0xb3
,
0x03
,
0xe6
,
0xa9
,
0x4b
,
0x59
,
0x4f
,
0xf6
,
0x38
,
0xd2
,
0x06
,
0xf3
,
0x7c
,
0xfc
,
0x11
,
0x84
,
0x2a
,
0x96
,
0x87
,
0x94
,
0x58
,
0x1f
,
0x9c
,
0x75
,
0xce
,
0x75
,
0x56
,
0x07
,
0xef
,
0x3a
,
0xe7
,
0x1c
,
0x54
,
0xd9
,
0xca
,
0xcc
,
0xf2
,
0x80
,
0x05
,
0x2c
,
0xd6
,
0x39
,
0x98
,
0x65
,
0x3b
,
0x73
,
0x75
,
0x83
,
0x05
,
0x04
,
0xeb
,
0x10
,
0xf3
,
0xf4
,
0x04
,
0xeb
,
0xd7
,
0xed
,
0x54
,
0xe8
,
0x0b
,
0xd6
,
0xb7
,
0xf3
,
0x43
,
0xf8
,
0x3f
,
0xcf
,
0x2f
,
0x78
,
0xbb
,
0x45
,
0x34
,
0xf2
,
0x87
,
0xf0
,
0x7f
,
0x9e
,
0x3f
,
0x6d
,
0x57
,
0x45
,
0xa7
,
0xea
,
0xac
,
0xbd
,
0xc8
,
0x00
,
0x00
,
0xcd
,
0x8e
,
0xb0
,
0xa7
,
0x00
,
0x00
,
0x00
,
0x00
,
0x49
,
0x45
,
0x4e
,
0x44
,
0xae
,
0x42
,
0x60
,
0x82
,
0x00
,
0x00
,
0x49
,
0x45
,
0x4e
,
0x44
,
0xae
,
0x42
,
0x60
,
0x82
,
};
};
const
BITMAP_OPAQUE
array_line_xpm
[
1
]
=
{{
png
,
sizeof
(
png
),
"array_line_xpm"
}};
const
BITMAP_OPAQUE
array_line_xpm
[
1
]
=
{{
png
,
sizeof
(
png
),
"array_line_xpm"
}};
...
...
bitmaps_png/cpp_26/array_pad.cpp
View file @
4354139f
This diff is collapsed.
Click to expand it.
bitmaps_png/cpp_26/array_text.cpp
View file @
4354139f
...
@@ -8,30 +8,30 @@
...
@@ -8,30 +8,30 @@
static
const
unsigned
char
png
[]
=
{
static
const
unsigned
char
png
[]
=
{
0x89
,
0x50
,
0x4e
,
0x47
,
0x0d
,
0x0a
,
0x1a
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x0d
,
0x49
,
0x48
,
0x44
,
0x52
,
0x89
,
0x50
,
0x4e
,
0x47
,
0x0d
,
0x0a
,
0x1a
,
0x0a
,
0x00
,
0x00
,
0x00
,
0x0d
,
0x49
,
0x48
,
0x44
,
0x52
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x08
,
0x06
,
0x00
,
0x00
,
0x00
,
0xa9
,
0x4a
,
0x4c
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x00
,
0x00
,
0x00
,
0x1a
,
0x08
,
0x06
,
0x00
,
0x00
,
0x00
,
0xa9
,
0x4a
,
0x4c
,
0xce
,
0x00
,
0x00
,
0x01
,
0x5
9
,
0x49
,
0x44
,
0x41
,
0x54
,
0x48
,
0xc7
,
0xed
,
0x96
,
0xb1
,
0x6a
,
0x0
2
,
0xce
,
0x00
,
0x00
,
0x01
,
0x5
a
,
0x49
,
0x44
,
0x41
,
0x54
,
0x48
,
0xc7
,
0xed
,
0x96
,
0xbf
,
0x6a
,
0xc
2
,
0x
41
,
0x10
,
0x86
,
0x07
,
0x7c
,
0x06
,
0xad
,
0x0c
,
0xd8
,
0x48
,
0xb0
,
0x31
,
0x36
,
0xd6
,
0x22
,
0x58
,
0x
50
,
0x14
,
0x87
,
0x3f
,
0xf0
,
0x19
,
0x74
,
0xaa
,
0xe0
,
0x22
,
0xd2
,
0x41
,
0x9c
,
0x9c
,
0x25
,
0xe0
,
0x
5a
,
0xa4
,
0xb8
,
0x4a
,
0xc8
,
0x1b
,
0x58
,
0xa5
,
0xca
,
0x95
,
0xa9
,
0x7c
,
0x82
,
0x20
,
0xec
,
0xed
,
0x
e6
,
0xe2
,
0xe0
,
0x24
,
0xf8
,
0x06
,
0x4e
,
0x4e
,
0xe9
,
0xe6
,
0xe6
,
0x13
,
0x88
,
0xc9
,
0xbd
,
0x37
,
0x
a9
,
0x98
,
0xce
,
0xca
,
0x60
,
0x93
,
0xd6
,
0x77
,
0xb1
,
0xf0
,
0x1d
,
0x0c
,
0x5c
,
0x66
,
0x6f
,
0xe6
,
0x
06
,
0x1c
,
0x5d
,
0x2c
,
0x9d
,
0xba
,
0xfa
,
0x2e
,
0x0e
,
0x7d
,
0x07
,
0x0b
,
0xe9
,
0x70
,
0xae
,
0xb1
,
0x
bc
,
0xec
,
0xe6
,
0x76
,
0xdd
,
0x1c
,
0x41
,
0x10
,
0xee
,
0xe0
,
0x67
,
0x6f
,
0x66
,
0xff
,
0xe1
,
0x63
,
0x
49
,
0x73
,
0x6d
,
0x1a
,
0x4a
,
0xa1
,
0xe0
,
0xf0
,
0x1b
,
0xce
,
0x9f
,
0x1f
,
0x1f
,
0xc9
,
0xe1
,
0x1c
,
0x
ef
,
0x98
,
0x61
,
0x21
,
0x49
,
0x12
,
0xb8
,
0x86
,
0xf0
,
0x91
,
0x53
,
0x80
,
0xe8
,
0xe8
,
0x2f
,
0xe5
,
0x
2e
,
0x49
,
0x92
,
0xf0
,
0x17
,
0x02
,
0xcc
,
0x1c
,
0xf4
,
0x5b
,
0x79
,
0x99
,
0x39
,
0x98
,
0x11
,
0xa8
,
0x
17
,
0x63
,
0x7c
,
0x7f
,
0xf7
,
0x97
,
0xf2
,
0x43
,
0xf4
,
0x82
,
0x42
,
0x64
,
0x74
,
0x40
,
0x7d
,
0xa2
,
0x
5d
,
0x79
,
0x99
,
0x11
,
0xa0
,
0x7d
,
0xd0
,
0x09
,
0xe8
,
0x13
,
0xe8
,
0x57
,
0xd0
,
0x47
,
0x1b
,
0x5f
,
0x
f6
,
0x1c
,
0x67
,
0xda
,
0x73
,
0xfe
,
0xc0
,
0xb1
,
0xf2
,
0x07
,
0xa8
,
0x1d
,
0x6a
,
0x85
,
0xe0
,
0x57
,
0x
74
,
0xb4
,
0xf9
,
0x93
,
0x8d
,
0x7d
,
0xd0
,
0x13
,
0xd0
,
0x2f
,
0x60
,
0x62
,
0xd0
,
0x4b
,
0xd0
,
0x2b
,
0x
5c
,
0x67
,
0x1c
,
0x67
,
0x9a
,
0x71
,
0x7e
,
0xc5
,
0x71
,
0x90
,
0x81
,
0xbe
,
0x90
,
0xda
,
0xa7
,
0x23
,
0x
89
,
0x53
,
0xad
,
0x24
,
0x6f
,
0x62
,
0x1b
,
0x4f
,
0x2e
,
0xa0
,
0x77
,
0x50
,
0x7d
,
0xf9
,
0xc4
,
0x4d
,
0x
ce
,
0x5b
,
0x3a
,
0x68
,
0xde
,
0xa2
,
0xbc
,
0xe8
,
0x93
,
0x2f
,
0x03
,
0xc9
,
0x0f
,
0x80
,
0x65
,
0x9b
,
0x
2b
,
0x0b
,
0xda
,
0xb4
,
0x24
,
0xaf
,
0xfa
,
0xd2
,
0x97
,
0x82
,
0x9e
,
0x21
,
0x68
,
0x4b
,
0x6d
,
0xd7
,
0x
f6
,
0xd6
,
0x0d
,
0x1d
,
0xb4
,
0x6e
,
0x50
,
0x7e
,
0xd9
,
0x26
,
0x1f
,
0x81
,
0x3a
,
0x00
,
0xf1
,
0x30
,
0x
c8
,
0x82
,
0x76
,
0x0d
,
0xc9
,
0x07
,
0x6d
,
0xe9
,
0x13
,
0xd0
,
0x23
,
0x44
,
0xde
,
0xf5
,
0x5f
,
0x16
,
0x
ff
,
0x96
,
0xc5
,
0x20
,
0xda
,
0x8b
,
0x87
,
0xe4
,
0x7f
,
0xbb
,
0xc3
,
0xb5
,
0x9b
,
0xe7
,
0x8b
,
0x41
,
0x
83
,
0xa4
,
0x16
,
0x79
,
0xd2
,
0xbf
,
0x6e
,
0x42
,
0xdc
,
0xbd
,
0xe6
,
0x8b
,
0x41
,
0x52
,
0x8b
,
0xbb
,
0xb
4
,
0x17
,
0x75
,
0x53
,
0xff
,
0xef
,
0x9f
,
0x66
,
0x07
,
0xd9
,
0x7f
,
0xb4
,
0x1d
,
0x74
,
0xf6
,
0x54
,
0xb
0
,
0x6e
,
0x16
,
0x0c
,
0xcd
,
0x0d
,
0x72
,
0x0f
,
0xda
,
0x0d
,
0x4a
,
0x7b
,
0xee
,
0xa0
,
0xff
,
0x08
,
0x
a0
,
0x5b
,
0x04
,
0x89
,
0x91
,
0x0e
,
0x12
,
0xa3
,
0xcb
,
0x20
,
0xd1
,
0xd3
,
0x41
,
0xa2
,
0xe7
,
0x04
,
0x
52
,
0xc3
,
0x2c
,
0x48
,
0x0d
,
0xbf
,
0x07
,
0x45
,
0xbd
,
0x2c
,
0x28
,
0xea
,
0xdd
,
0x04
,
0x81
,
0x5a
,
0x
a1
,
0xe1
,
0x19
,
0x8d
,
0x27
,
0xa3
,
0x61
,
0x4f
,
0x2a
,
0x6f
,
0x87
,
0xc8
,
0x47
,
0xf4
,
0x6c
,
0x8
d
,
0x
80
,
0x3e
,
0xe7
,
0x16
,
0xf6
,
0x0c
,
0x6a
,
0xe1
,
0x86
,
0x84
,
0x63
,
0x50
,
0x87
,
0x2c
,
0x48
,
0x1
d
,
0x
86
,
0xdd
,
0xaa
,
0xbc
,
0x03
,
0x24
,
0x27
,
0xdc
,
0x90
,
0x86
,
0xe4
,
0xc4
,
0x71
,
0x9a
,
0x01
,
0x4f
,
0x
20
,
0x1c
,
0xdf
,
0x00
,
0x99
,
0xa9
,
0x5d
,
0xc8
,
0x9c
,
0xcc
,
0xd4
,
0x0d
,
0x52
,
0x03
,
0xbb
,
0xc0
,
0x
0a
,
0x43
,
0x62
,
0x60
,
0xcc
,
0xba
,
0xf8
,
0xbe
,
0xd8
,
0x68
,
0x93
,
0xf2
,
0x97
,
0xa9
,
0xc9
,
0xe
7
,
0x
39
,
0xa9
,
0x41
,
0xee
,
0xd6
,
0x45
,
0x9d
,
0xe2
,
0x46
,
0x97
,
0xa2
,
0x4e
,
0x35
,
0x4f
,
0x7a
,
0xb
7
,
0x
96
,
0xaf
,
0x82
,
0x72
,
0x35
,
0xe7
,
0x22
,
0xf9
,
0x84
,
0x6b
,
0x13
,
0xe9
,
0x0f
,
0xba
,
0x29
,
0x8d
,
0x
4a
,
0x6b
,
0x52
,
0xcd
,
0x93
,
0x9a
,
0xd4
,
0x0c
,
0xf4
,
0x03
,
0x04
,
0xb9
,
0xc1
,
0x06
,
0x3d
,
0xc9
,
0x
9b
,
0xbc
,
0x6f
,
0x80
,
0xfe
,
0x52
,
0x93
,
0xce
,
0x2f
,
0x19
,
0x02
,
0x6c
,
0x6a
,
0xee
,
0x01
,
0xb9
,
0x
ab
,
0xd9
,
0x57
,
0xd0
,
0x4f
,
0x3c
,
0x84
,
0x1e
,
0xa8
,
0x27
,
0xd8
,
0xd7
,
0x6e
,
0x1f
,
0xc8
,
0x7d
,
0x
a9
,
0x91
,
0x4f
,
0xf9
,
0x4b
,
0xd4
,
0x94
,
0xe9
,
0x89
,
0x7f
,
0xea
,
0xa3
,
0x0a
,
0x54
,
0x81
,
0xd
2
,
0x
4d
,
0xfa
,
0x42
,
0xaf
,
0x92
,
0xa7
,
0xca
,
0x4e
,
0xfc
,
0xd2
,
0x1e
,
0xdd
,
0x41
,
0x77
,
0x50
,
0x9
2
,
0x
82
,
0x45
,
0x9d
,
0x2f
,
0x15
,
0x3f
,
0x8a
,
0x54
,
0xbc
,
0xa8
,
0xdb
,
0x21
,
0x7e
,
0x35
,
0xe6
,
0xdc
,
0x
00
,
0xdb
,
0xba
,
0x7d
,
0x6c
,
0x7c
,
0x5e
,
0xb6
,
0x25
,
0x6c
,
0xeb
,
0x6e
,
0x48
,
0x39
,
0x4f
,
0xce
,
0x
0a
,
0x2d
,
0xd7
,
0xa5
,
0xd0
,
0x31
,
0xeb
,
0xbc
,
0x6a
,
0xe0
,
0x5a
,
0x17
,
0xc8
,
0x6f
,
0x28
,
0x7
d
,
0x
a4
,
0xfd
,
0xe2
,
0xe7
,
0x92
,
0xf6
,
0xdd
,
0xa0
,
0x72
,
0x1e
,
0xfe
,
0xea
,
0x01
,
0xf9
,
0x01
,
0xb
d
,
0x
35
,
0x0d
,
0xec
,
0xf1
,
0xfb
,
0x82
,
0x00
,
0x00
,
0x00
,
0x00
,
0x49
,
0x45
,
0x4e
,
0x44
,
0xae
,
0x42
,
0x
5c
,
0x34
,
0x23
,
0x26
,
0x7e
,
0x75
,
0xbb
,
0x00
,
0x00
,
0x00
,
0x00
,
0x49
,
0x45
,
0x4e
,
0x44
,
0xae
,
0x60
,
0x82
,
0x
42
,
0x
60
,
0x82
,
};
};
const
BITMAP_OPAQUE
array_text_xpm
[
1
]
=
{{
png
,
sizeof
(
png
),
"array_text_xpm"
}};
const
BITMAP_OPAQUE
array_text_xpm
[
1
]
=
{{
png
,
sizeof
(
png
),
"array_text_xpm"
}};
...
...
bitmaps_png/cpp_26/wizard_add_fplib_small.cpp
View file @
4354139f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment