Commit 78442a8b authored by Tomasz Włostowski's avatar Tomasz Włostowski

Merge branch 'bzr/master'

parents ee66a3cd 79e2a414
[core]
excludesfile .bzrignore
......@@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2014 Mario Luzeiro <mrluzeiro@gmail.com>
* Copyright (C) 1992-2014 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
......@@ -28,9 +28,13 @@
#include "vrml_aux.h"
char SkipGetChar( FILE* File )
static int SkipGetChar ( FILE* File );
static int SkipGetChar( FILE* File )
{
char c;
int c;
bool re_parse;
if( ( c = fgetc( File ) ) == EOF )
......@@ -92,7 +96,7 @@ char SkipGetChar( FILE* File )
char* GetNextTag( FILE* File, char* tag )
{
char c = SkipGetChar( File );
int c = SkipGetChar( File );
if( c == EOF )
{
......@@ -136,7 +140,7 @@ char* GetNextTag( FILE* File, char* tag )
int read_NotImplemented( FILE* File, char closeChar )
{
char c;
int c;
// DBG( printf( "look for %c\n", closeChar) );
while( ( c = fgetc( File ) ) != EOF )
......@@ -189,7 +193,7 @@ int parseVertex( FILE* File, glm::vec3& dst_vertex )
dst_vertex.y = b;
dst_vertex.z = c;
char s = SkipGetChar( File );
int s = SkipGetChar( File );
if( s != EOF )
{
......
......@@ -49,7 +49,6 @@
#include <wx/glcanvas.h>
int read_NotImplemented( FILE* File, char closeChar);
char SkipGetChar ( FILE* File );
int parseVertexList( FILE* File, std::vector< glm::vec3 > &dst_vector);
int parseVertex( FILE* File, glm::vec3 &dst_vertex );
int parseFloat( FILE* File, float *dst_float );
......
......@@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2014 Mario Luzeiro <mrluzeiro@gmail.com>
* Copyright (C) 1992-2014 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
......@@ -93,7 +93,7 @@ void VRML1_MODEL_PARSER::Load( const wxString& aFilename, double aVrmlunits_to_3
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == '}' ) || ( *text == ']' ) )
if( ( *text == '}' ) || ( *text == ']' ) )
{
continue;
}
......@@ -187,7 +187,7 @@ int VRML1_MODEL_PARSER::readMaterial()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -235,7 +235,7 @@ int VRML1_MODEL_PARSER::readCoordinate3()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -263,7 +263,7 @@ int VRML1_MODEL_PARSER::readIndexedFaceSet()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......
......@@ -95,7 +95,7 @@ void VRML2_MODEL_PARSER::Load( const wxString& aFilename, double aVrmlunits_to_3
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == '}' ) || ( *text == ']' ) )
if( ( *text == '}' ) || ( *text == ']' ) )
{
continue;
}
......@@ -140,7 +140,7 @@ int VRML2_MODEL_PARSER::read_Transform()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -259,7 +259,7 @@ int VRML2_MODEL_PARSER::read_DEF()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
// DBG( printf( " skiping %c\n", *text) );
continue;
......@@ -316,7 +316,7 @@ int VRML2_MODEL_PARSER::read_Shape()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -363,7 +363,7 @@ int VRML2_MODEL_PARSER::read_Appearance()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -468,7 +468,7 @@ int VRML2_MODEL_PARSER::read_Material()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -561,7 +561,7 @@ int VRML2_MODEL_PARSER::read_IndexedFaceSet()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -744,7 +744,7 @@ int VRML2_MODEL_PARSER::read_Color()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -774,7 +774,7 @@ int VRML2_MODEL_PARSER::read_Normal()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......@@ -812,7 +812,7 @@ int VRML2_MODEL_PARSER::read_Coordinate()
while( GetNextTag( m_file, text ) )
{
if( ( text == NULL ) || ( *text == ']' ) )
if( *text == ']' )
{
continue;
}
......
......@@ -36,6 +36,22 @@ option( KICAD_KEEPCASE
ON
)
# The footprint library wizard uses wxWebview, which needs a system webkit to be built
# The default build option in wxWidgets is to build wxWebview, but it could be not built
# if web kit devel tools are missing
# So this option disable use of wxWebview, if building wxWebview creates issues
# see:
# http://docs.wxwidgets.org/3.0/classwx_web_view.html
# * No issues on Windows.
# * needs webkitgtk-devel package installed on Linux, and wxWidgets rebuilt with this package.
# * Seems also OK on OSX.
# However the default option is on and has effect only if BUILD_GITHUB_PLUGIN is ON
# This option could be removed soon, if no serious issue happens on Linux
option( KICAD_USE_WEBKIT
"Use system web kit to build a web viewer in footprint library wizard to easily select github libraries (default ON)."
ON
)
option( USE_WX_GRAPHICS_CONTEXT
"Use wxGraphicsContext for rendering (default OFF). Warning, this is experimental" )
......@@ -100,7 +116,7 @@ LINK_DIRECTORIES( ${LINK_DIRECTORIES_PATH} )
if( UNIX )
set( KICAD_USER_CONFIG_DIR $ENV{HOME} CACHE PATH "Location of user specific KiCad config files" )
elseif( MINGW )
set( KICAD_USER_CONFIG_DIR $ENV{%APPDATA%} CACHE PATH "Location of user specific KiCad config files" )
set( KICAD_USER_CONFIG_DIR $ENV{APPDATA} CACHE PATH "Location of user specific KiCad config files" )
endif()
mark_as_advanced( KICAD_USER_CONFIG_DIR )
......@@ -226,8 +242,8 @@ if( CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
if( APPLE )
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__ASSERTMACROS__ -mmacosx-version-min=10.5" )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__ASSERTMACROS__ -mmacosx-version-min=10.5" )
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D__ASSERTMACROS__" )
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__ASSERTMACROS__" )
# Allows .dylib relocation in the future - needed by fixbundle
set( CMAKE_LD_FLAGS "${CMAKE_LD_FLAGS} -headerpad_max_install_names")
......@@ -240,6 +256,12 @@ if( CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
EXEC_PROGRAM( wx-config ARGS --cxx OUTPUT_VARIABLE CMAKE_CXX_COMPILER )
endif()
# There seems to be no consistent behavior when -mmacosx-min-version is
# not specified, so force user to set minimum OSX version to build for
if( NOT CMAKE_OSX_DEPLOYMENT_TARGET )
message( FATAL_ERROR "Please specify target OS X version using -DCMAKE_OSX_DEPLOYMENT_TARGET=10.x" )
endif()
endif()
endif( CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
......@@ -397,7 +419,14 @@ add_definitions( -DWX_COMPATIBILITY )
# See line 41 of CMakeModules/FindwxWidgets.cmake
set( wxWidgets_CONFIG_OPTIONS --static=no )
find_package( wxWidgets 3.0.0 COMPONENTS gl aui adv html core net base xml REQUIRED )
if( KICAD_USE_WEBKIT AND BUILD_GITHUB_PLUGIN )
set( webkitlib "webview" )
add_definitions( -DKICAD_USE_WEBKIT )
else()
set( webkitlib "" )
endif()
find_package( wxWidgets 3.0.0 COMPONENTS gl aui adv html core net base xml ${webkitlib} stc REQUIRED )
# Include wxWidgets macros.
include( ${wxWidgets_USE_FILE} )
......@@ -678,6 +707,9 @@ add_subdirectory( cvpcb )
add_subdirectory( eeschema )
add_subdirectory( gerbview )
add_subdirectory( lib_dxf )
if( KICAD_USE_WEBKIT )
add_subdirectory( webviewer )
endif()
add_subdirectory( pcbnew )
add_subdirectory( polygon )
add_subdirectory( pagelayout_editor )
......@@ -773,10 +805,6 @@ install( FILES INSTALL.txt
DESTINATION ${KICAD_DOCS}
COMPONENT resources )
install( FILES resources/freeroute.jnlp
DESTINATION ${KICAD_BIN}
COMPONENT resources )
###
# Install scripts
###
......
......@@ -54,15 +54,15 @@ if( Bazaar_EXECUTABLE )
# Fetch the Bazaar executable version.
execute_process( COMMAND ${Bazaar_EXECUTABLE} --version
OUTPUT_VARIABLE bzr_version_output
OUTPUT_VARIABLE _bzr_version_output
ERROR_VARIABLE _bzr_version_error
RESULT_VARIABLE _bzr_version_result
OUTPUT_STRIP_TRAILING_WHITESPACE )
if( ${_bzr_version_result} EQUAL 0 )
set( Bazaar_FOUND TRUE )
string( REGEX REPLACE "^(.*\n)? \(bzr\) ([^\n]+).*"
"\\2" Bazaar_VERSION "${_bzr_version_output}" )
string( REGEX REPLACE "^[\n]*Bazaar \\(bzr\\) ([0-9.a-z]+).*"
"\\1" Bazaar_VERSION "${_bzr_version_output}" )
message( STATUS "Bazaar version control system version ${Bazaar_VERSION} found." )
endif( ${_bzr_version_result} EQUAL 0 )
......
......@@ -165,7 +165,7 @@ if(WIN32 AND NOT CYGWIN)
find_library(LIB_EAY
NAMES
${LIB_EAY_NAMES}
${_OPENSLL_ROOT_HINTS_AND_PATHS}
${_OPENSSL_ROOT_HINTS_AND_PATHS}
PATH_SUFFIXES
"lib"
"lib/MinGW"
......@@ -177,7 +177,7 @@ if(WIN32 AND NOT CYGWIN)
find_library(SSL_EAY
NAMES
${SSL_EAY_NAMES}
${_OPENSLL_ROOT_HINTS_AND_PATHS}
${_OPENSSL_ROOT_HINTS_AND_PATHS}
PATH_SUFFIXES
"lib"
"lib/MinGW"
......
......@@ -330,7 +330,7 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
# Find wxWidgets multilib libraries.
foreach(LIB core adv aui html media xrc dbgrid gl qa richtext
stc ribbon propgrid)
webview stc ribbon propgrid)
find_library(WX_${LIB}${_DBG}
NAMES
wxmsw${_UNV}31${_UCD}${_DBG}_${LIB}
......@@ -374,7 +374,7 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
# Clear wxWidgets multilib libraries.
foreach(LIB core adv aui html media xrc dbgrid gl qa richtext
stc ribbon propgrid)
webview stc ribbon propgrid)
wx_clear_lib(WX_${LIB}${_DBG})
endforeach(LIB)
endmacro(wx_clear_all_libs)
......@@ -448,6 +448,7 @@ if(wxWidgets_FIND_STYLE STREQUAL "win32")
D:/
$ENV{ProgramFiles}
PATH_SUFFIXES
wxWidgets-3.0.2
wxWidgets-3.0.1
wxWidgets-3.0.0
wxWidgets-2.9.5
......
......@@ -140,11 +140,8 @@ endif()
if( APPLE )
# I set this to being compatible with wxWidgets
# wxWidgets still using libstdc++ (gcc), meanwhile OSX
# has switched to libc++ (llvm) by default
set( BOOST_CXXFLAGS "cxxflags=-mmacosx-version-min=10.5 -fno-common" )
set( BOOST_LINKFLAGS "linkflags=-mmacosx-version-min=10.5 -fno-common" )
set( BOOST_CXXFLAGS "cxxflags=-mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET} -fno-common" )
set( BOOST_LINKFLAGS "linkflags=-mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET} -fno-common" )
set( BOOST_TOOLSET "toolset=darwin" )
if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
......
Compiling KiCad from Source
===========================
KiCad Documentation Team
Last revised on 12-mars-2012 by jp Charras
Last revised on 2014-december-24 by JP Charras
Introduction
------------
......@@ -32,7 +32,7 @@ KiCad from source.
* CMake - Cross-platform make
* GLUT - The OpenGL Utility Library
* GLEW
* wxGTK or wxWidgets - The wxWidgets GUI toolkit with GTK+ bindings
* wxWidgets - The wxWidgets GUI toolkit with GTK+ bindings version 3.0 or more
* libbz2 (dev)
* libcairo (dev)
......@@ -57,7 +57,7 @@ Compiler and basic development tools
Make sure g++, make and other tools are in your path.
If windows, then try running g++ and make from within your msys bash shell.
PLEASE NOTE: g++ 4.7.1 at least (possibly the 4.7.x series) is known to
PLEASE NOTE: g++ 4.7.1 and 4.7.2 are known to
miscompile pcbnew (it get zones wrong) with -O2; using -O1 is a suitable
workaround until they fix the compiler.
......@@ -68,7 +68,7 @@ WARNING:
see wxWidgets_patch_notes.txt for patches and issues in wxWidgets.
On Windows, download
http://sourceforge.net/projects/wxwindows/files/3.0.0/wxWidgets-3.0.0.zip/download
http://sourceforge.net/projects/wxwindows/files/3.0.2/wxWidgets-3.0.2.zip/download
or a newer version.
Do NOT use previous versions which all have annoying issues for KiCad.
Start msys so you have a bash shell.
......@@ -95,6 +95,10 @@ or more recent (Older versions have a print function which does not work).
Verify that wx-config is in your path by running it from a command prompt.
Linux users then go to next step.
Note also wxWidgets must be compiled with the wxWebView support.
This is the default when building wxWidgets, but only if the libwebkitgtk-dev is installed
before building wxWidgets (sudo apt-get install libwebkitgtk-dev)
Install CMake
-------------
On windows, download the installation binary for windows from cmake.org.
......@@ -167,9 +171,12 @@ Linux and windows users both then make two "out of source" build directories:
On either cmake command line shown below, you can optionally include
-DCMAKE_INSTALL_PREFIX=<finallInstallDir>
For instance on Linux: <finallInstallDir>=/usr/local/kicad or ~/kicad
On windows, run the following command:
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
Avoid installing Kicad on C: disk, which is protected by Windows.
Use D: or E: ...
On linux, run instead the following command:
cmake -DCMAKE_BUILD_TYPE=Release ../../
......
......@@ -100,9 +100,12 @@ USE_IMAGES_IN_MENUS (ON/OFF)
----------------------------
Default: OFF for OSX, ON for other platforms.
This option is used to enable or disable building KiCad with images in menu
This option is used to enable or disable building KiCad with images (icons) in menu
items. If this is not defined when CMake is used to create the build files,
images will be included in menu items on all platforms except OSX.
Note also, on Linux, some window managers do not show icons in menu, or
show them only if the current option is activated.
Therefore, even if you have icons in menus, they will be not always displayed
DOWNLOAD_DIR (PATH)
......@@ -138,6 +141,7 @@ Default: OFF
This option enables or disables building Python scripting support within KiCad.
Currently only Pcbnew is supported. This option requires SWIG and Python to be
installed on the system.
It allows using footprint wizards in footprint editor to create new footprints
KICAD_SCRIPTING_MODULES (ON/OFF)
......@@ -147,6 +151,8 @@ Default: OFF
This option enables or disables building KiCad Python modules that can be used
externally by Python. Currently only Pcbnew is supported. This option
requires SWIG and Python to be installed on the system.
This python module is used to edit board files (.kicad_pcb files) from a
python script, outside kicad.
KICAD_SCRIPTING_WXPYTHON (ON/OFF)
......@@ -156,6 +162,7 @@ Default: OFF
This option enables or disables building wxPython support into the KiCad
scripting support. Currently only Pcbnew has scripting support. This option requires
SWIG, Python, and wxPython to be installed on the system.
It allows execution of python scripts insided Pcbnew, during a session.
PYTHON_SITE_PACKAGE_PATH (PATH)
......@@ -169,11 +176,21 @@ different path, set this variable to the desired path.
BUILD_GITHUB_PLUGIN (ON/OFF)
----------------------------
Default: OFF
Default: ON
This option enables or disables building KiCad with a pcbnew plugin for loading
footprints from a GitHub repository.
KICAD_USE_WEBKIT (ON/OFF)
----------------------------
Default: ON (and OFF when BUILD_GITHUB_PLUGIN is OFF)
This option enables or disables building a web viewer used if the
footprint library table wizard to easily add footprints library entries
to this tables when libraries are on a GitHub repository.
This option need the full support of wxWebview/WebKit in wxWidgets, which is not
always the case on Linux.
KICAD_REPO_NAME (STRING)
------------------------
......
Compiling KiCad on Apple Mac OS X
=================================
Building on OSX is very similar to building on Linux. This document will provide
a complete walk-through on what to do but it will focus on OSX specific things.
See general documentation on non-OSX specific KiCad build switches, etc.
Building on OS X is very similar to building on Linux. This document will provide
a complete walk-through on what to do but it will focus on OS X specific things.
See general documentation on non OS X specific KiCad build switches, etc.
Prerequisites
......@@ -24,6 +24,7 @@ Mandatory library dependencies needed to compile KiCad:
OR
wxPython - A blending of the wxWidgets C++ class library with the Python
programming language
* SWIG - Interface compiler (only needed for scripting/wxPython builds)
Optional library dependencies, depends on used KiCad features
* OpenSSL - The Open Source toolkit for SSL/TLS
......@@ -31,7 +32,7 @@ Optional library dependencies, depends on used KiCad features
All tools (except XCode, of course) and all dependencies except wxWidgets/wxPython
can be compiled manually, but it is advised to install them using your favorite
package manager for OSX like MacPorts or Homebrew.
package manager for OS X like MacPorts or Homebrew.
Depending on the package manager the development packages of the library
dependencies may have to be installed (usually something like <pkg>-dev or
<pkg>-devel).
......@@ -44,7 +45,7 @@ automatically by KiCad build process.
IMPORTANT:
At the moment you *must not* use a wxWidgets/wxPython version installed by any
package manager.
KiCad on OSX needs overlay support and some other fixes, which are not yet
KiCad on OS X needs overlay support and some other fixes, which are not yet
contained in mainline wxWidgets/wxPython sources and builds.
If you don't use a patched wxWidgets you will get graphical artifacts (something
like a magnifying glass effect in the upper left corner of KiCad windows) or
......@@ -92,13 +93,15 @@ It is recommended to use the latest stable version. As of this writing this is
There is a little helper script osx_build_wx.sh in kicad/scripts that does all
the patching/configuring/compiling of wxWidgets or wxPython for you.
Go to your working root "KiCad" and run:
# kicad/scripts/osx_build_wx.sh wx-src wx-bin kicad "-j4"
Go to your working root "KiCad" and for example run:
# kicad/scripts/osx_build_wx.sh wx-src wx-bin kicad 10.7 "-j4"
First parameter is the source folder of wxWidgets/wxPython, second parameter the
target folder for compiled binaries, third parameter is the kicad folder, and
the last optional parameter are make options used during the build (in this
case for building with 4 jobs in parallel).
target folder for compiled binaries, and third parameter is the kicad folder.
The fourth parameter is the minimum OS X version you are building for (see the
section about compiling KiCad for further notes on minimum OS X version).
The last parameter is optional and contains make options used during the build
(in this example for building with 4 jobs in parallel).
The script will automatically detect if you are compiling wxWidgets or wxPython.
NOTE: All paths are assumed to be relative to the current directory, i.e., the
working root you are in.
......@@ -132,10 +135,8 @@ work:
--with-zlib=builtin \
--with-expat=builtin \
--without-liblzma \
--with-macosx-version-min=10.5 \
--with-macosx-version-min=<osxtarget> \
--enable-universal-binary=i386,x86_64 \
CPPFLAGS="-stdlib=libstdc++" \
LDFLAGS="-stdlib=libstdc++" \
CC=clang \
CXX=clang++
If you know what you are doing, you can of course use different settings.
......@@ -152,6 +153,7 @@ Now, configure KiCad without scripting support:
# cmake ../kicad \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 \
-DwxWidgets_CONFIG_EXECUTABLE=../wx-bin/bin/wx-config \
-DKICAD_SCRIPTING=OFF \
-DKICAD_SCRIPTING_MODULES=OFF \
......@@ -163,6 +165,7 @@ or, configure KiCad with scripting support:
# cmake ../kicad \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.7 \
-DwxWidgets_CONFIG_EXECUTABLE=../wx-bin/bin/wx-config \
-DPYTHON_EXECUTABLE=`which python` \
-DPYTHON_SITE_PACKAGE_PATH=`pwd`/../wx-bin/lib/python2.7/site-packages \
......@@ -177,6 +180,18 @@ been generated when compiling/installing wxPython. If you want to use a specific
python, you can also specify it via "-DPYTHON_EXECUTABLE" instead of using
`which python` (this one will just detect/use you default python).
The parameter "-DCMAKE_OSX_DEPLOYMENT_TARGET=10.x" is mandatory, you have to
specify the (minimum) OS X version you intend to build for. It is important that
at least wxWidgets/wxPython and KiCad (and boost, if you use an external build)
are built using the same or compatible settings. If not, you might get linker
errors, because this parameter influences which standard C++ library is being
used (libstdc++ vs. libc++).
If you don't know what to use and you are only building for your machine, just
set it to your current OS X version (e.g., MacPorts always builds this way).
Binaries built with a target OS X version <10.7 are known to show strange
behavior in some situations on recent systems (maybe because libc++ is standard
on everything >= 10.7 and problems arise due to mixing libstdc++/libc++).
Now KiCad is configured using default features/build-switches.
See Documentation/compiling/build-config.txt for a list of all CMake options
available when compiling KiCad.
......
......@@ -646,7 +646,8 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = stable-release-policy.md \
INPUT = coding-style-policy.md \
stable-release-policy.md \
road-map.md
# This tag can be used to specify the character encoding of the source files
......
This diff is collapsed.
......@@ -536,7 +536,7 @@ Add features such as matched length and microwave tools to the P&S router.
- None
**Status:**
- No progress.
- Match trace length work in progress.
## Layer Improvements ## {#pcb_layers}
**Goal:**
......@@ -553,7 +553,7 @@ Increase the number of usable technical and user defined layers in Pcbnew.
- None
**Status:**
- No progress.
- Work complete on 32 copper and 32 technical layers is complete.
## Pin and Part Swapping ## {#pcb_drc}
**Goal:**
......@@ -620,6 +620,7 @@ Create additional DRC tests for improved error checking.
- Remove floating point code from clearance calculations to prevent rounding
errors.
- Add checks for component, silk screen, and mask clearances.
- Add checks for keep out zones.
- Remove DRC related limitations such as no arc or text on copper layers.
- Add option for saving and loading DRC options.
......@@ -655,6 +656,23 @@ GAL rendering.
**Progress:**
- Initial discussion.
## Keepout Zones. ## {#keepout_zones}
**Goal:**
Add support for keepout zones on boards and footprints.
**Task:**
- Add keepout support to zone classes.
- Add keepout zone support to board editor.
- Add keepout zone support to library editor.
**Dependencies:**
- [DRC Improvements.](#drc_improvements)
**Progress:**
- Planning
## Gerber File Attributes ## {#gerber_attributes}
**Goal:**
......@@ -671,7 +689,7 @@ document for more information.
- None
**Progress:**
- Under investigation.
- Done both in Pcbnew and Gerbview.
## Net Highlighting ## {#pcb_net_highlight}
**Goal:**
......
......@@ -645,7 +645,8 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT = Documentation/development/stable-release-policy.md \
INPUT = Documentation/development/coding-style-policy.md \
Documentation/development/stable-release-policy.md \
Documentation/development/road-map.md \
kicad \
pcbnew \
......@@ -1211,7 +1212,7 @@ MATHJAX_EXTENSIONS =
# typically be disabled. For large projects the javascript based search engine
# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution.
SEARCHENGINE = NO
SEARCHENGINE = YES
# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
# implemented using a PHP enabled web server instead of at the web client
......
......@@ -151,7 +151,7 @@ BM2CMP_FRAME_BASE::BM2CMP_FRAME_BASE( wxWindow* parent, wxWindowID id, const wxS
int m_radio_PCBLayerNChoices = sizeof( m_radio_PCBLayerChoices ) / sizeof( wxString );
m_radio_PCBLayer = new wxRadioBox( m_panelRight, wxID_ANY, _("Board Layer for Outline:"), wxDefaultPosition, wxDefaultSize, m_radio_PCBLayerNChoices, m_radio_PCBLayerChoices, 1, wxRA_SPECIFY_COLS );
m_radio_PCBLayer->SetSelection( 0 );
m_radio_PCBLayer->SetToolTip( _("Choose the board layer to place the outline.\nThe 2 invisible fields reference and value and always placed on the silk screen layer.") );
m_radio_PCBLayer->SetToolTip( _("Choose the board layer to place the outline.\nThe 2 invisible fields reference and value are always placed on the silk screen layer.") );
brightSizer->Add( m_radio_PCBLayer, 0, wxALL|wxEXPAND, 5 );
......
......@@ -2412,7 +2412,7 @@
<property name="style">wxRA_SPECIFY_COLS</property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Choose the board layer to place the outline.&#x0A;The 2 invisible fields reference and value and always placed on the silk screen layer.</property>
<property name="tooltip">Choose the board layer to place the outline.&#x0A;The 2 invisible fields reference and value are always placed on the silk screen layer.</property>
<property name="validator_data_type"></property>
<property name="validator_style">wxFILTER_NONE</property>
<property name="validator_type">wxDefaultValidator</property>
......
......@@ -158,6 +158,12 @@ int bitmap2component( potrace_bitmap_t* aPotrace_bitmap, FILE* aOutfile,
st = potrace_trace( param, aPotrace_bitmap );
if( !st || st->status != POTRACE_STATUS_OK )
{
if( st )
{
potrace_state_free( st );
}
potrace_param_free( param );
fprintf( stderr, "Error tracing bitmap: %s\n", strerror( errno ) );
return 1;
}
......
......@@ -168,6 +168,7 @@ set( BMAPS_MID
browse_files
cancel
change_entry_orient
contrast_mode
create_cmp_file
checked_ok
component_select_unit
......@@ -253,11 +254,9 @@ set( BMAPS_MID
gbr_select_mode2
gerber_file
gerber_recent_files
gerber_open_dcode_file
gerbview_show_negative_objects
gerbview_drill_file
gerbview_clear_layers
gerber_open_dcode_file
gerbview_open_recent_drill_files
general_deletions
general_ratsnest
......@@ -457,6 +456,8 @@ set( BMAPS_MID
reload
reset_text
resize_sheet
rescue_pcbnew
revert_pcbnew
right
rotate_field
rotate_glabel
......@@ -551,6 +552,7 @@ set( BMAPS_BIG
libedit_icon
viewlibs_icon
icon_pagelayout_editor
wizard_add_fplib_icon
)
......
......@@ -8,67 +8,36 @@
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x03, 0xb6, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x96, 0x7f, 0x68, 0x95,
0x55, 0x18, 0xc7, 0xbf, 0xe7, 0xde, 0x6d, 0x77, 0x8e, 0x61, 0x33, 0xa1, 0x56, 0x62, 0xb1, 0xfc,
0x91, 0xc9, 0x6c, 0x8d, 0x8a, 0x7e, 0xfc, 0x95, 0x10, 0x15, 0xa6, 0x99, 0x91, 0xab, 0x1c, 0xb5,
0xe8, 0x07, 0x37, 0x8b, 0x4a, 0x6c, 0x26, 0x34, 0x64, 0x8c, 0x8d, 0xcc, 0xb4, 0x41, 0x65, 0x51,
0xfe, 0xb1, 0x4a, 0xa8, 0x60, 0x19, 0x0c, 0xb4, 0x08, 0x11, 0x32, 0xcd, 0xa8, 0x88, 0x58, 0x05,
0x26, 0x06, 0x6b, 0xa5, 0x33, 0x67, 0xe2, 0xb5, 0x6c, 0xf7, 0xbe, 0xe7, 0x9c, 0xe7, 0x47, 0x7f,
0xdc, 0xf7, 0xbd, 0xbb, 0xbb, 0xdc, 0xed, 0x5e, 0x4d, 0x7a, 0xe1, 0xe1, 0x3d, 0xef, 0x79, 0x0e,
0xcf, 0xe7, 0x3c, 0xdf, 0xf7, 0x39, 0xcf, 0xfb, 0x1a, 0x55, 0xc5, 0xff, 0x71, 0xc5, 0x0a, 0x27,
0xd2, 0x3d, 0xed, 0x7d, 0x99, 0xee, 0x75, 0x6b, 0xd0, 0xf5, 0x54, 0xed, 0x7f, 0x8a, 0x9c, 0x4c,
0x56, 0xe6, 0x3f, 0x9a, 0xfc, 0x8c, 0xd2, 0x3d, 0xcf, 0x25, 0x8d, 0x9a, 0xb7, 0xc2, 0xc7, 0xd3,
0x50, 0x7d, 0x1b, 0x71, 0x7d, 0x7d, 0x5a, 0x47, 0xef, 0x48, 0x39, 0xb1, 0x4f, 0x24, 0x1f, 0x9e,
0xa3, 0x4a, 0xcf, 0x42, 0x68, 0x99, 0x8a, 0x4c, 0x03, 0xcb, 0xfa, 0xfa, 0xed, 0x1f, 0x6f, 0x87,
0xaa, 0xe6, 0x40, 0x41, 0xcf, 0xba, 0x06, 0x55, 0xfd, 0x11, 0x40, 0x2d, 0x00, 0xa8, 0x48, 0xd6,
0x58, 0xbc, 0xa8, 0xbe, 0x38, 0xfd, 0x97, 0xd1, 0x6e, 0xf4, 0xf7, 0x73, 0x31, 0xc0, 0x1f, 0xc9,
0x55, 0x0b, 0x0c, 0xc9, 0x0b, 0x2a, 0xbc, 0x4a, 0x59, 0xe2, 0x2a, 0x0c, 0x25, 0x1d, 0x54, 0xe6,
0x4d, 0xb3, 0x4d, 0xcd, 0x47, 0xe8, 0xef, 0xe7, 0x1c, 0x28, 0xdd, 0xb5, 0xf6, 0x3a, 0xa8, 0x6e,
0x14, 0x96, 0x5b, 0xb3, 0x00, 0xce, 0x87, 0x41, 0x59, 0xf6, 0x83, 0xd1, 0x7a, 0xe1, 0x1b, 0x7d,
0x47, 0x22, 0xc0, 0x48, 0xdb, 0xfd, 0xf3, 0x0d, 0xa8, 0x5b, 0x45, 0xee, 0x55, 0xe6, 0x58, 0xb8,
0x36, 0x50, 0xd6, 0x0d, 0x97, 0x37, 0xdd, 0xd0, 0x8b, 0xce, 0x4e, 0x29, 0x2a, 0x1d, 0x00, 0xa4,
0xd6, 0x26, 0x17, 0x19, 0xa3, 0x6b, 0x98, 0xb9, 0x15, 0xcc, 0x89, 0x08, 0x24, 0x59, 0xf8, 0x29,
0x15, 0x7e, 0xf4, 0x92, 0x77, 0x76, 0x0c, 0x8c, 0x3c, 0x78, 0x77, 0x52, 0x49, 0x7a, 0x55, 0xa4,
0x46, 0x38, 0xda, 0x10, 0x1f, 0x50, 0xd2, 0x47, 0xae, 0xf8, 0x64, 0xcf, 0xe1, 0xc2, 0xac, 0xcd,
0x64, 0x55, 0x37, 0xba, 0xfa, 0xa1, 0x8b, 0x8c, 0xf7, 0x2f, 0x8b, 0x70, 0xdb, 0x38, 0x48, 0xa0,
0xc2, 0x0a, 0x96, 0x9f, 0x44, 0xe4, 0x6a, 0x65, 0x8e, 0xe6, 0x49, 0x45, 0x9e, 0x9f, 0x7b, 0xe3,
0x17, 0xaf, 0xa2, 0x53, 0xa5, 0x58, 0x3c, 0x53, 0xaa, 0xbc, 0x47, 0x1e, 0x58, 0x7e, 0xa7, 0x08,
0x6f, 0x13, 0x96, 0x4b, 0x27, 0x48, 0xca, 0x51, 0xa6, 0x9c, 0x11, 0x92, 0x96, 0x05, 0x9f, 0x7f,
0xb5, 0x6b, 0xaa, 0x38, 0xa6, 0x9c, 0x73, 0x34, 0xbc, 0x62, 0x71, 0x1d, 0x7b, 0xf4, 0x29, 0xeb,
0x8a, 0x09, 0x20, 0x91, 0x8c, 0x08, 0xdf, 0xb6, 0x70, 0xff, 0x77, 0x5f, 0x96, 0x8a, 0x51, 0x51,
0x4e, 0xd9, 0xba, 0xb4, 0xad, 0x57, 0xc2, 0x4d, 0x3a, 0xfe, 0x2e, 0x22, 0x58, 0xb5, 0x7a, 0x9d,
0x59, 0x4e, 0x8c, 0x92, 0x19, 0x0d, 0x2e, 0x6e, 0xae, 0xab, 0x72, 0xf1, 0x6f, 0x55, 0x65, 0x5e,
0x21, 0x28, 0x2c, 0x82, 0xd3, 0x31, 0xa1, 0xe6, 0x6b, 0x7e, 0xfe, 0x75, 0xf8, 0xac, 0x3a, 0xc3,
0xc4, 0x6d, 0x98, 0x58, 0x7c, 0x4c, 0x3e, 0x24, 0x6b, 0xe7, 0x51, 0x26, 0x00, 0x05, 0x01, 0x28,
0x13, 0xc0, 0x67, 0x82, 0x1d, 0xde, 0x3a, 0xf2, 0xce, 0xc3, 0x79, 0xaa, 0x4b, 0x33, 0xfa, 0x0f,
0x36, 0x36, 0x56, 0x9d, 0x33, 0xe8, 0x87, 0xa6, 0x2b, 0x37, 0x72, 0x26, 0xb8, 0x23, 0x0b, 0xb1,
0xf0, 0xd6, 0xc1, 0x7b, 0xff, 0xd9, 0xb5, 0x87, 0x86, 0x5a, 0x9c, 0xa7, 0x27, 0x1d, 0x11, 0x1c,
0x11, 0x9c, 0xf7, 0xd7, 0x8f, 0x8e, 0xa5, 0xba, 0xcf, 0x49, 0xba, 0xef, 0xaf, 0x9a, 0xb3, 0x54,
0x80, 0x9d, 0x22, 0x0a, 0xd1, 0xac, 0xa9, 0xea, 0x3f, 0x46, 0xe2, 0x8d, 0x37, 0x0f, 0x0d, 0xfd,
0x06, 0x00, 0x7b, 0x2e, 0x9b, 0xb5, 0x59, 0xa1, 0xed, 0xa1, 0xcf, 0x0b, 0xb8, 0x71, 0xc9, 0xd1,
0x3f, 0x0f, 0x97, 0x9d, 0xd1, 0xde, 0x86, 0x86, 0x6a, 0xcb, 0xfc, 0x9a, 0x8d, 0x76, 0x9c, 0xdb,
0x39, 0x75, 0x44, 0x10, 0x00, 0x38, 0x70, 0xe4, 0xd8, 0x7a, 0xef, 0x69, 0xa7, 0x23, 0x86, 0x25,
0xae, 0xb4, 0x4e, 0x5f, 0x39, 0x2b, 0xe9, 0x62, 0x71, 0x6e, 0x77, 0xc4, 0x0d, 0x61, 0x00, 0x58,
0x62, 0x38, 0xe2, 0x6f, 0xf6, 0xfd, 0x7e, 0x6c, 0x6b, 0xfe, 0xba, 0x4e, 0x55, 0xb1, 0x1a, 0x7b,
0xcc, 0x11, 0x9d, 0x72, 0x44, 0x70, 0x4c, 0x4b, 0x3f, 0x98, 0x79, 0xc1, 0xed, 0x65, 0x49, 0xb7,
0x7b, 0xee, 0xac, 0xd9, 0x31, 0xaf, 0x87, 0x44, 0xb5, 0x46, 0x15, 0x88, 0xa4, 0x33, 0x31, 0x6d,
0x5e, 0x72, 0xf4, 0xc4, 0x60, 0xb1, 0x20, 0xef, 0xcf, 0x98, 0xde, 0x06, 0xc5, 0xbb, 0xa1, 0xc4,
0x07, 0x87, 0xcf, 0x8c, 0x35, 0x75, 0xaa, 0xd2, 0x94, 0x19, 0x49, 0xc0, 0x5b, 0x1c, 0x71, 0x8d,
0x23, 0x86, 0xf5, 0x04, 0x4b, 0x04, 0x4f, 0xf4, 0xe9, 0x64, 0x10, 0x00, 0x68, 0x4d, 0xfd, 0xfd,
0x9e, 0x25, 0xde, 0x6d, 0x89, 0x60, 0x3d, 0x2d, 0xac, 0x4f, 0x24, 0x56, 0x97, 0x94, 0xce, 0x12,
0x8d, 0xba, 0xac, 0x54, 0xe3, 0xe6, 0x65, 0x53, 0xc9, 0x43, 0xcd, 0x92, 0x74, 0xc4, 0x63, 0x59,
0xb9, 0xa9, 0xa3, 0xcb, 0x98, 0xaa, 0x29, 0x41, 0xcb, 0x8f, 0x9f, 0x7c, 0xc6, 0xb2, 0x7f, 0xda,
0x12, 0x71, 0x58, 0x0c, 0x5f, 0xb7, 0xa4, 0x52, 0xfb, 0x4a, 0x81, 0x9e, 0xc8, 0x64, 0x86, 0x2d,
0xf9, 0x0d, 0x8e, 0x08, 0x9e, 0xf9, 0xe2, 0x5a, 0x60, 0x65, 0xc9, 0x62, 0xb8, 0xef, 0xe4, 0x5f,
0x5b, 0x3d, 0xd3, 0x32, 0x47, 0x74, 0x26, 0x20, 0x79, 0xa9, 0xdc, 0xaf, 0x77, 0x85, 0xe0, 0x4d,
0x05, 0x8e, 0x03, 0x80, 0x01, 0x16, 0x4d, 0x70, 0x6a, 0xf6, 0x0c, 0x14, 0xb5, 0x6d, 0x89, 0xc4,
0x7c, 0x0d, 0x0b, 0xa6, 0x5c, 0xdb, 0x0c, 0x3c, 0xbe, 0x05, 0xb8, 0xa7, 0x70, 0x3e, 0x57, 0x75,
0x03, 0xc6, 0xd4, 0x45, 0xf0, 0x4a, 0xc0, 0x00, 0x40, 0x3a, 0xbc, 0x87, 0xdd, 0xd7, 0x14, 0xfa,
0x01, 0x20, 0x13, 0x8e, 0xf3, 0xfd, 0xf1, 0xbc, 0xf1, 0x5d, 0xaa, 0xa3, 0xb9, 0xee, 0xbd, 0xd7,
0x98, 0x6a, 0x03, 0xa4, 0x22, 0x67, 0x54, 0x97, 0x93, 0x35, 0xaf, 0xfc, 0x1f, 0x87, 0x62, 0x6b,
0xf2, 0x0e, 0x8c, 0x05, 0x50, 0x5d, 0xba, 0xa9, 0x9e, 0xc7, 0xab, 0x02, 0x00, 0x6e, 0x51, 0x0d,
0x06, 0x8c, 0x99, 0x71, 0xbe, 0x83, 0xfb, 0xbc, 0xe4, 0xfe, 0x05, 0x6f, 0xa9, 0x1e, 0xe7, 0x5c,
0x0f, 0xb4, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x01, 0xb8, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xdd, 0x96, 0xc1, 0x4a, 0x02,
0x51, 0x14, 0x86, 0x2f, 0x45, 0x8a, 0xe0, 0xda, 0x27, 0x70, 0xe3, 0xda, 0x8d, 0x4f, 0xe0, 0xc2,
0x85, 0x3b, 0xc1, 0x37, 0x08, 0x5a, 0xf4, 0x0a, 0x36, 0xf8, 0x00, 0x6d, 0x9d, 0x56, 0xad, 0x7b,
0x82, 0x88, 0x36, 0x0a, 0x21, 0x62, 0x82, 0x41, 0x6e, 0x22, 0x88, 0x56, 0x2d, 0x22, 0x18, 0x21,
0x23, 0x4a, 0xba, 0xfd, 0x67, 0x9a, 0x2b, 0xa7, 0xdb, 0x69, 0xc6, 0x7b, 0x6b, 0x11, 0x2d, 0x3e,
0x18, 0xef, 0x39, 0xe7, 0xff, 0x9c, 0x3b, 0xe3, 0x8c, 0xaa, 0xd1, 0x68, 0xa8, 0x2c, 0x74, 0xa7,
0xb3, 0xe1, 0x53, 0xe3, 0x64, 0x36, 0xbc, 0x54, 0xab, 0x87, 0xaf, 0x95, 0xca, 0xa9, 0x6e, 0xb5,
0x36, 0xbf, 0x48, 0xb0, 0x46, 0x35, 0xea, 0xf9, 0x91, 0x68, 0x81, 0x80, 0x47, 0xa5, 0x34, 0xf1,
0x64, 0xc9, 0xe8, 0x98, 0xd6, 0x4c, 0x7d, 0x91, 0x21, 0x4b, 0xdd, 0xae, 0x08, 0x41, 0x0f, 0x08,
0x31, 0x44, 0x89, 0x8c, 0x10, 0x6b, 0x29, 0xdb, 0x98, 0x7e, 0x6d, 0x10, 0x78, 0x8f, 0x80, 0x3b,
0x04, 0x19, 0xe8, 0xb3, 0xb4, 0x26, 0x6d, 0xed, 0x27, 0x91, 0xda, 0x53, 0x3b, 0x20, 0x02, 0x3a,
0x17, 0xe4, 0xde, 0xda, 0xfb, 0x6d, 0x1d, 0x86, 0xe1, 0x8a, 0x83, 0x5e, 0x4f, 0x5f, 0xd4, 0xeb,
0xfa, 0x16, 0x81, 0x12, 0x54, 0xa3, 0x1e, 0x3e, 0x43, 0x19, 0x85, 0xa0, 0xa0, 0x29, 0x13, 0x3c,
0x83, 0x5d, 0x12, 0xdd, 0x24, 0x0b, 0x31, 0xd4, 0xc0, 0x87, 0x8c, 0x6c, 0x82, 0xc0, 0x2b, 0x04,
0x73, 0x26, 0x82, 0x84, 0xc8, 0x07, 0x79, 0xcd, 0x33, 0x63, 0x47, 0x6c, 0xfb, 0xb0, 0xae, 0x0a,
0x92, 0x68, 0x84, 0xd0, 0x4b, 0x84, 0x73, 0x46, 0xdf, 0x88, 0x2c, 0x49, 0x14, 0xef, 0xda, 0x6a,
0x0f, 0x59, 0xd1, 0xbe, 0x4e, 0x33, 0x5c, 0x83, 0x09, 0x9d, 0x81, 0xc0, 0x4c, 0xb8, 0x3e, 0x52,
0x56, 0x6a, 0x91, 0x02, 0xa6, 0x08, 0x1a, 0x22, 0xd0, 0x40, 0x9f, 0xa5, 0x35, 0x2e, 0x73, 0x12,
0xd1, 0xad, 0x3a, 0x46, 0x40, 0x1f, 0x41, 0x86, 0x31, 0xbb, 0xbd, 0xc5, 0x5a, 0x72, 0x7b, 0x3b,
0x9f, 0xd1, 0x10, 0x3f, 0xc2, 0x13, 0x84, 0x10, 0x67, 0x08, 0x3a, 0x62, 0xdf, 0x9a, 0x8e, 0x69,
0xcd, 0xd4, 0x87, 0xec, 0x07, 0xeb, 0x2c, 0x22, 0x06, 0x08, 0xe8, 0x5b, 0x12, 0x2e, 0xa3, 0xda,
0xc0, 0x7a, 0x2a, 0x78, 0x89, 0x7c, 0x1e, 0xaa, 0xde, 0x22, 0x57, 0xfe, 0x9e, 0x48, 0x85, 0x6a,
0xcb, 0x5b, 0x82, 0xd9, 0x2c, 0xd1, 0x9c, 0x35, 0x1c, 0x83, 0xa2, 0xc7, 0x99, 0x14, 0x93, 0x59,
0x93, 0x33, 0x97, 0x44, 0x81, 0xf5, 0xe8, 0x38, 0x07, 0x25, 0x07, 0x49, 0x29, 0x99, 0xe1, 0x19,
0x81, 0xf8, 0x9a, 0x40, 0xa1, 0x6b, 0x35, 0x5e, 0x83, 0xf2, 0x1a, 0x92, 0x72, 0xd2, 0xcb, 0x67,
0xbb, 0xa9, 0xef, 0x23, 0x9c, 0xd7, 0x36, 0x9a, 0x96, 0xd6, 0x90, 0x0b, 0x4b, 0xca, 0x58, 0xeb,
0xc5, 0x87, 0xe6, 0x26, 0x58, 0x78, 0x48, 0x68, 0xa6, 0xe9, 0xf4, 0x86, 0xc5, 0x40, 0x0d, 0x4c,
0x1d, 0x24, 0xd4, 0x5b, 0xf3, 0xfe, 0x17, 0xf4, 0x5b, 0xfc, 0x3f, 0xd1, 0x3b, 0xe8, 0xb5, 0x4e,
0xbb, 0xfd, 0x4c, 0x20, 0xb2, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60,
0x82,
};
const BITMAP_OPAQUE auto_delete_track_xpm[1] = {{ png, sizeof( png ), "auto_delete_track_xpm" }};
......
This diff is collapsed.
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x01, 0xfb, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xb5, 0x96, 0xbf, 0x4f, 0xc2,
0x40, 0x14, 0xc7, 0x1f, 0x09, 0x03, 0x9b, 0x81, 0xc4, 0x81, 0xc9, 0xc4, 0xc4, 0xc1, 0xd9, 0x91,
0x89, 0xd9, 0x9d, 0x85, 0x81, 0x8d, 0x45, 0xc2, 0xc4, 0x1f, 0xd0, 0x56, 0xb1, 0x26, 0x24, 0x18,
0x35, 0x21, 0xc0, 0xc6, 0xc4, 0x1f, 0x20, 0xb3, 0x09, 0x13, 0x1b, 0x83, 0x16, 0x9d, 0x9c, 0xdc,
0x64, 0x73, 0x80, 0x41, 0xe3, 0xf9, 0xde, 0xf5, 0xae, 0xbc, 0x6a, 0xdb, 0x94, 0x8b, 0x0c, 0xdf,
0x5e, 0xd2, 0xbb, 0xdc, 0xa7, 0xdf, 0xf7, 0xe3, 0x7a, 0x20, 0x84, 0x80, 0x5d, 0xaa, 0xdf, 0xef,
0x1f, 0xd1, 0xb8, 0x53, 0xc8, 0x60, 0x30, 0xb8, 0x46, 0x89, 0x5e, 0xaf, 0x77, 0x28, 0x5f, 0x80,
0x0d, 0x67, 0x60, 0xc1, 0x2b, 0xaa, 0xc1, 0x17, 0x3e, 0x02, 0xe4, 0x9f, 0x00, 0x66, 0xa4, 0x67,
0x80, 0xa2, 0x09, 0x84, 0xc6, 0xc0, 0x11, 0x02, 0x96, 0x28, 0x81, 0xfa, 0x86, 0x73, 0x38, 0xd6,
0x8b, 0x11, 0xd0, 0xf4, 0x70, 0x89, 0xd2, 0xc8, 0x14, 0xc2, 0x41, 0x13, 0x05, 0x22, 0x0d, 0xf5,
0x24, 0x6e, 0x5e, 0xd2, 0xa0, 0x05, 0xc0, 0x8a, 0x1c, 0x9a, 0x40, 0x36, 0x20, 0x1b, 0xca, 0x0c,
0xb4, 0x86, 0x4b, 0xd8, 0x67, 0x30, 0x4f, 0xc3, 0xc8, 0xa1, 0x09, 0x24, 0x54, 0x0c, 0x08, 0x98,
0x33, 0x98, 0x15, 0x13, 0x3e, 0xcf, 0x04, 0x12, 0x06, 0xd9, 0x50, 0x65, 0xa0, 0x77, 0x54, 0x4e,
0x17, 0x04, 0x85, 0x8d, 0xc1, 0xfe, 0xe8, 0xbe, 0x52, 0x21, 0x80, 0xb8, 0x73, 0x5d, 0x61, 0x59,
0xd6, 0x6f, 0x2d, 0x50, 0x05, 0xee, 0x28, 0x8b, 0x7a, 0x63, 0xb0, 0x3a, 0x0b, 0xdf, 0xc8, 0x10,
0x22, 0x65, 0xdb, 0x76, 0x2d, 0x6c, 0xcf, 0x82, 0x16, 0x03, 0xbd, 0xe0, 0x33, 0x43, 0xef, 0xa9,
0xb4, 0xa9, 0xc4, 0x13, 0x20, 0x5f, 0x71, 0x10, 0xd4, 0xb4, 0xdd, 0x6e, 0x17, 0xc3, 0xa0, 0x2b,
0xd8, 0x43, 0xc0, 0x47, 0x00, 0xb3, 0xe1, 0xd4, 0x34, 0x27, 0xb1, 0x39, 0x62, 0xae, 0xba, 0xcc,
0xd5, 0xc3, 0x7f, 0x40, 0xa2, 0x41, 0x17, 0x70, 0x80, 0x80, 0x4f, 0x06, 0x0b, 0xa9, 0xd2, 0xf5,
0xc3, 0x45, 0x63, 0xe4, 0x1a, 0x07, 0x4e, 0x52, 0x81, 0x94, 0xab, 0xb1, 0x11, 0xc4, 0xd7, 0x38,
0x3d, 0x08, 0xbf, 0xca, 0x10, 0x22, 0x64, 0x34, 0x30, 0x2a, 0xa9, 0x40, 0x26, 0x39, 0xa1, 0x7c,
0x32, 0x58, 0x77, 0x6b, 0x50, 0xda, 0xc4, 0x53, 0x85, 0x32, 0xd0, 0x07, 0x55, 0x70, 0x68, 0x5e,
0xf5, 0xc8, 0x34, 0xa9, 0x19, 0x6f, 0x3a, 0x9d, 0x75, 0x4c, 0x8f, 0xcc, 0xa8, 0x47, 0xfc, 0x2f,
0x86, 0x8c, 0xec, 0xbd, 0x0d, 0xac, 0x15, 0x02, 0xe1, 0x86, 0xb5, 0x24, 0xc8, 0x6d, 0x42, 0xc7,
0x2b, 0x8d, 0x58, 0xf8, 0xea, 0x0c, 0x44, 0xa7, 0x4c, 0x36, 0x98, 0xc3, 0x73, 0xac, 0x80, 0x1b,
0x2f, 0x0c, 0x21, 0xa4, 0x95, 0xeb, 0xba, 0x79, 0x05, 0xca, 0xa9, 0x73, 0x52, 0x37, 0x7c, 0x35,
0x36, 0x47, 0x69, 0x73, 0x82, 0x00, 0x8f, 0xc1, 0x9a, 0xcc, 0x95, 0xc5, 0x5c, 0xcd, 0x23, 0x41,
0xdb, 0x74, 0x3c, 0x6d, 0xce, 0x40, 0xc1, 0xef, 0x83, 0xfe, 0x65, 0xf2, 0x9f, 0xb6, 0x71, 0x55,
0x0e, 0x81, 0xb6, 0x3d, 0x56, 0x28, 0x5c, 0x14, 0x36, 0x0d, 0x73, 0x1c, 0xa7, 0xc4, 0x5c, 0x0d,
0x99, 0xab, 0x49, 0x00, 0x32, 0x39, 0xbb, 0x94, 0xab, 0x51, 0x64, 0xf8, 0xf0, 0xde, 0x21, 0xef,
0x1f, 0x3e, 0x68, 0x29, 0xdf, 0xd1, 0x55, 0xc8, 0x04, 0x42, 0xa2, 0xd2, 0xa6, 0x12, 0x27, 0xe9,
0x82, 0x60, 0xae, 0x1a, 0xf2, 0x66, 0x85, 0x37, 0xac, 0xc0, 0x91, 0xbe, 0xe4, 0xed, 0x52, 0x3f,
0xd1, 0xb7, 0x63, 0x3d, 0x80, 0xd8, 0x20, 0x6d, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44,
0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE contrast_mode_xpm[1] = {{ png, sizeof( png ), "contrast_mode_xpm" }};
//EOF
This diff is collapsed.
This diff is collapsed.
......@@ -8,45 +8,55 @@
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x02, 0x4e, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0xd6, 0x4f, 0x88, 0x55,
0x75, 0x18, 0xc6, 0xf1, 0xcf, 0x55, 0xeb, 0x6a, 0xf9, 0x27, 0x66, 0x9c, 0x9a, 0x09, 0x44, 0x92,
0x30, 0x8b, 0x0c, 0x89, 0xa0, 0x86, 0x18, 0xa8, 0x5c, 0x84, 0x03, 0x2d, 0x1c, 0x45, 0x1c, 0x66,
0xae, 0xbf, 0x8b, 0xe3, 0xcc, 0xf8, 0x53, 0x46, 0x4d, 0x4b, 0x98, 0xa2, 0xa1, 0x36, 0x11, 0xb8,
0x8d, 0x88, 0x5a, 0x15, 0x84, 0x03, 0x53, 0x8b, 0x5c, 0x0c, 0x0c, 0x38, 0x1b, 0x97, 0xa1, 0x9b,
0x68, 0xe1, 0x26, 0x57, 0xe1, 0x4e, 0x33, 0x61, 0xa2, 0x91, 0xd1, 0xb7, 0x85, 0x47, 0xb8, 0xc8,
0x9d, 0xe9, 0x7a, 0xef, 0xa5, 0xc5, 0xc3, 0x81, 0xf3, 0x1c, 0xce, 0x97, 0xf7, 0xfd, 0xbd, 0xe7,
0x7d, 0x8e, 0x88, 0xf0, 0x7f, 0xe8, 0x3f, 0x1f, 0x18, 0x3f, 0xa4, 0x37, 0x57, 0x4d, 0xe7, 0xaa,
0xe9, 0x9c, 0x9c, 0xaf, 0x56, 0x3d, 0x85, 0x52, 0xdb, 0x41, 0xf9, 0x90, 0x1f, 0x72, 0x12, 0x39,
0x59, 0xca, 0x49, 0x0c, 0xef, 0xf7, 0x01, 0x9e, 0xc1, 0xaa, 0xb6, 0x81, 0x26, 0x86, 0x6c, 0xcc,
0xc9, 0xdf, 0x39, 0x89, 0xa1, 0x01, 0x3f, 0xe7, 0x24, 0x2a, 0xfb, 0x5d, 0xc3, 0x09, 0x3c, 0xfb,
0x28, 0x95, 0xad, 0x68, 0x1e, 0x4b, 0x46, 0x72, 0x12, 0x47, 0x93, 0x3f, 0x9e, 0xdb, 0xea, 0xe3,
0xa2, 0xb2, 0xd8, 0xd2, 0xe3, 0x73, 0xbc, 0x8d, 0xd5, 0x6d, 0x01, 0xe5, 0xe4, 0x52, 0x4e, 0x62,
0x6c, 0xd8, 0x95, 0xde, 0xd7, 0x7c, 0x3f, 0x56, 0xb1, 0x98, 0x93, 0xe8, 0x7f, 0xc7, 0x1c, 0xc6,
0x50, 0x6e, 0x19, 0x94, 0x0f, 0xdb, 0x96, 0x93, 0x7b, 0x0f, 0xaa, 0xa8, 0xd5, 0xc8, 0xa0, 0x1b,
0x38, 0x8d, 0xed, 0x8d, 0x9e, 0xd5, 0xf2, 0x6d, 0xab, 0xfa, 0x34, 0x27, 0x31, 0x5e, 0x71, 0xa1,
0xab, 0xd3, 0xe4, 0xe6, 0x0e, 0x9f, 0x75, 0x75, 0xfa, 0x68, 0x74, 0xd8, 0xed, 0x9c, 0xc4, 0xcb,
0x2f, 0xfa, 0x0a, 0xef, 0x35, 0xda, 0xbe, 0xfa, 0x37, 0x29, 0xe5, 0xe4, 0x5a, 0x4e, 0x62, 0xef,
0x1e, 0x53, 0x78, 0x1f, 0x23, 0xd8, 0x3d, 0xbc, 0xcf, 0xc5, 0x9c, 0xc4, 0x40, 0xbf, 0x5f, 0x30,
0x81, 0x0d, 0x4d, 0x83, 0x8e, 0x57, 0xbc, 0x9e, 0x93, 0x5b, 0x39, 0xf9, 0xb3, 0xe7, 0x69, 0xe3,
0x05, 0xa8, 0x17, 0x6b, 0x8e, 0x26, 0x43, 0x39, 0xb9, 0x75, 0x64, 0xc8, 0x8d, 0x72, 0xd9, 0x87,
0x78, 0xb5, 0x91, 0xf6, 0x2d, 0x6f, 0x50, 0x42, 0x67, 0x31, 0xca, 0x27, 0x6b, 0xc7, 0x19, 0xab,
0xd1, 0x87, 0x53, 0x38, 0x80, 0x35, 0xad, 0x82, 0x3a, 0xb0, 0x0b, 0xaf, 0xd4, 0x9e, 0xc5, 0x43,
0xde, 0xce, 0x96, 0x40, 0x35, 0x2f, 0x5c, 0x55, 0xaf, 0x35, 0x2b, 0x79, 0xcd, 0x80, 0xca, 0x58,
0xc0, 0x3f, 0x85, 0x7e, 0xad, 0xdd, 0x06, 0xa8, 0xb4, 0x6d, 0xd7, 0xe1, 0x77, 0x67, 0x84, 0x6f,
0x84, 0xed, 0xee, 0x62, 0x14, 0x3b, 0x0a, 0xef, 0x26, 0xa6, 0xb0, 0xb6, 0x1d, 0xa0, 0x59, 0xa3,
0xc2, 0xbc, 0x70, 0x4a, 0xe0, 0x2a, 0xfa, 0x51, 0xb2, 0xd5, 0x82, 0x4d, 0x02, 0xd3, 0x78, 0xa2,
0x55, 0xd0, 0xa0, 0x37, 0x0a, 0xd0, 0xbc, 0xf0, 0x89, 0xb0, 0xdb, 0x5f, 0x5e, 0x30, 0xa3, 0xcf,
0x92, 0xef, 0x84, 0x6e, 0x81, 0x19, 0x3c, 0xd9, 0x34, 0x28, 0x22, 0x28, 0x99, 0x73, 0xb6, 0x06,
0xf6, 0x40, 0x73, 0xc5, 0x75, 0x46, 0x78, 0x5e, 0xe0, 0x27, 0xac, 0x6f, 0x1e, 0x44, 0x8f, 0x92,
0x59, 0x15, 0x61, 0xba, 0x0e, 0x70, 0x5e, 0x98, 0x14, 0xb8, 0x8d, 0x63, 0xf5, 0x60, 0x8d, 0x07,
0xd7, 0xfd, 0x71, 0x1e, 0x53, 0x72, 0xd9, 0x4b, 0x6e, 0xea, 0x73, 0xc7, 0x44, 0x01, 0x39, 0x27,
0x3c, 0x66, 0x01, 0x17, 0xf1, 0x05, 0xde, 0x7d, 0x38, 0xab, 0x1e, 0x3d, 0xfb, 0xd9, 0x54, 0x0c,
0xc3, 0x69, 0x6f, 0xba, 0xeb, 0x4b, 0x61, 0x9d, 0x05, 0xcc, 0xe3, 0x6b, 0x0c, 0xd6, 0x8b, 0x8f,
0xe6, 0x7e, 0x34, 0xee, 0x57, 0x57, 0xb2, 0xcd, 0xa2, 0x8d, 0xae, 0xe3, 0x47, 0x7c, 0xbb, 0x1c,
0xa4, 0x69, 0x50, 0x0d, 0xf0, 0x37, 0xbc, 0x85, 0x73, 0x38, 0xb8, 0x52, 0x10, 0xb6, 0x0a, 0xea,
0xc6, 0x8e, 0x62, 0xb1, 0x96, 0x5b, 0xfa, 0x8e, 0x1a, 0x80, 0x75, 0xe0, 0xf1, 0x96, 0x37, 0x43,
0xbb, 0xf4, 0x2f, 0x1f, 0x40, 0x09, 0xe1, 0x51, 0x20, 0x95, 0x01, 0x00, 0x00, 0x00, 0x00, 0x49,
0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x02, 0xef, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0x95, 0x5d, 0x48, 0x53,
0x61, 0x18, 0xc7, 0x9f, 0xb3, 0xed, 0x6c, 0xce, 0x2d, 0xb0, 0x05, 0x95, 0xd1, 0x46, 0xa6, 0xd0,
0x37, 0x7d, 0x58, 0xd8, 0x98, 0x93, 0x99, 0xa6, 0x91, 0xb4, 0x96, 0x6e, 0x2c, 0x53, 0xe7, 0xb1,
0xe5, 0x72, 0x11, 0x7d, 0x50, 0x18, 0x04, 0xe5, 0x2e, 0x8a, 0x90, 0xba, 0xe8, 0xa2, 0x88, 0xa0,
0x42, 0x2f, 0x8a, 0x6e, 0x0c, 0x84, 0x02, 0x6f, 0x02, 0x2f, 0xba, 0x89, 0x32, 0xa8, 0xbb, 0x10,
0xc2, 0x2e, 0x82, 0xf2, 0x4a, 0x6f, 0x8c, 0x42, 0x3d, 0xfd, 0x9f, 0xd3, 0x7b, 0xea, 0x24, 0x16,
0x9e, 0xe3, 0xe8, 0xc8, 0x8f, 0x73, 0xce, 0xe3, 0xcb, 0xf3, 0x3b, 0xcf, 0xf3, 0x7e, 0x8c, 0x54,
0x55, 0xa5, 0xff, 0xc1, 0xbc, 0xc1, 0x13, 0x0a, 0xad, 0xcc, 0x2a, 0x34, 0xa4, 0x93, 0x49, 0x51,
0x25, 0x11, 0x49, 0x79, 0x17, 0x75, 0xb5, 0xd3, 0xb9, 0x6c, 0x3b, 0xa9, 0xe0, 0x3b, 0xdf, 0x8f,
0x36, 0xd3, 0x13, 0x88, 0x02, 0xa0, 0x20, 0xdf, 0xa2, 0x77, 0x2c, 0x48, 0xc5, 0xa9, 0x8f, 0xef,
0xc7, 0xdb, 0xe8, 0x9b, 0xc7, 0x43, 0xdd, 0x10, 0xed, 0x04, 0xb6, 0xbc, 0x88, 0xba, 0x52, 0xb4,
0x5d, 0x54, 0xa3, 0xfa, 0x57, 0x51, 0xc7, 0xb1, 0x23, 0x34, 0xc1, 0xcf, 0xe1, 0x0a, 0x7a, 0x0c,
0x49, 0x0b, 0x90, 0xf3, 0x23, 0x52, 0xe8, 0xa6, 0x26, 0x4a, 0xd1, 0x64, 0x6d, 0x15, 0x0d, 0x28,
0x49, 0xfa, 0xc4, 0xef, 0xad, 0x71, 0x1a, 0x85, 0xe4, 0x0c, 0x28, 0xb6, 0x32, 0x5f, 0x7f, 0xbc,
0x64, 0x32, 0x24, 0x23, 0xe9, 0xb8, 0x5e, 0xd1, 0x1c, 0x66, 0x8b, 0x57, 0xd0, 0x15, 0x48, 0x22,
0xc0, 0xbe, 0x28, 0x11, 0x92, 0x45, 0x45, 0x35, 0x1f, 0x90, 0xac, 0x19, 0x9c, 0x07, 0x67, 0x93,
0x31, 0x1a, 0xe1, 0xf8, 0xbe, 0x6a, 0x1a, 0xc2, 0x7b, 0x27, 0x70, 0x2d, 0x4e, 0x94, 0xa2, 0x01,
0x4e, 0x98, 0x6e, 0xa6, 0x3e, 0x24, 0x3b, 0x0d, 0x4e, 0x82, 0xe0, 0xc1, 0x7a, 0xba, 0x2a, 0xe2,
0xe3, 0x2c, 0x06, 0xa5, 0x66, 0xdb, 0xf7, 0x7b, 0xef, 0x24, 0xc8, 0x8b, 0x64, 0xef, 0x21, 0x1b,
0xdb, 0x53, 0x49, 0x17, 0x44, 0xc2, 0x03, 0x3c, 0xf9, 0x1d, 0x87, 0xc9, 0x8f, 0x45, 0xf2, 0xb1,
0xb3, 0x85, 0x3e, 0x97, 0x96, 0xd0, 0x75, 0xc4, 0x1a, 0xcc, 0xb6, 0x8f, 0x2f, 0x89, 0xf7, 0x87,
0x01, 0x37, 0xe8, 0x00, 0xa7, 0xc0, 0x56, 0x7d, 0x39, 0x8b, 0x71, 0x6b, 0x45, 0x3c, 0x0b, 0x3c,
0x66, 0x45, 0x1b, 0x81, 0x6a, 0x60, 0x10, 0x6c, 0x00, 0xeb, 0xc5, 0x0a, 0x4b, 0x1b, 0x06, 0xcb,
0x60, 0x9d, 0xf8, 0x9f, 0xd7, 0xac, 0xc8, 0x09, 0xa6, 0xe9, 0x16, 0x24, 0x0f, 0x81, 0x8f, 0x26,
0xc4, 0x84, 0xfb, 0xc1, 0x72, 0x30, 0x0b, 0xb8, 0x95, 0x4e, 0x43, 0x65, 0xd6, 0x96, 0x37, 0xae,
0x51, 0xea, 0x81, 0xe4, 0x39, 0x68, 0xd3, 0xaa, 0x1a, 0x01, 0x15, 0x60, 0x35, 0x6d, 0xc1, 0x7b,
0xa1, 0x26, 0xbb, 0x67, 0x65, 0xb5, 0xcd, 0x15, 0x75, 0xd3, 0x21, 0x21, 0x62, 0x2e, 0x82, 0x06,
0x9a, 0xa4, 0x6d, 0x34, 0xac, 0x89, 0xef, 0x82, 0x65, 0x9a, 0xec, 0x81, 0xd5, 0xf3, 0x4e, 0x17,
0x39, 0xd0, 0xfd, 0xb7, 0xbf, 0xaa, 0x9a, 0x8f, 0x47, 0x20, 0xa0, 0x55, 0xdb, 0x6f, 0x45, 0x66,
0x9c, 0xac, 0x00, 0xd9, 0x91, 0xb2, 0x15, 0xc9, 0xfa, 0xff, 0x22, 0x6b, 0xd4, 0x44, 0x63, 0xa0,
0xd5, 0x6c, 0x1b, 0xe7, 0xae, 0x0c, 0x49, 0x6c, 0xd4, 0x97, 0x58, 0x0a, 0xe3, 0x98, 0x9f, 0xaf,
0x68, 0xea, 0x4f, 0x49, 0x5a, 0x93, 0xf0, 0x86, 0x7d, 0x0a, 0x2e, 0xf1, 0xd2, 0x5f, 0xf4, 0xcf,
0x04, 0xae, 0xa5, 0x60, 0x3f, 0xb8, 0x8c, 0x83, 0x48, 0xc5, 0xce, 0xe1, 0xe0, 0x17, 0xf0, 0x0c,
0xf4, 0x82, 0x2a, 0xcb, 0x27, 0xc3, 0x3c, 0x32, 0xae, 0xae, 0x04, 0x7f, 0x2a, 0x9e, 0x5e, 0xe1,
0x99, 0x7f, 0xfc, 0x6e, 0x58, 0x91, 0xfc, 0x53, 0x24, 0x64, 0x6b, 0x00, 0x1f, 0xa4, 0xb5, 0xe0,
0x9a, 0x55, 0xc9, 0x42, 0x44, 0x85, 0xe2, 0x48, 0x0a, 0x0b, 0x24, 0x59, 0x96, 0x77, 0x79, 0xbd,
0xde, 0x4d, 0x89, 0x44, 0xc2, 0x6e, 0x6c, 0xb5, 0xc3, 0xe1, 0xa8, 0x0f, 0x06, 0x83, 0x6e, 0x63,
0x47, 0x10, 0xab, 0xf6, 0xf9, 0x7c, 0xfe, 0x5c, 0x2e, 0x67, 0x5b, 0xe8, 0xf1, 0xe1, 0xe3, 0x3b,
0x24, 0xbc, 0x89, 0x55, 0x9b, 0xcd, 0x36, 0x53, 0x57, 0x57, 0x97, 0x8d, 0x44, 0x22, 0x0e, 0x8e,
0x4b, 0x92, 0xf4, 0x9a, 0xe3, 0x65, 0x65, 0x65, 0x6f, 0xa2, 0xd1, 0xe8, 0x12, 0x8e, 0xd9, 0xed,
0x76, 0x3e, 0x2f, 0x55, 0x97, 0xcb, 0x35, 0xd5, 0xd4, 0xd4, 0x54, 0x6f, 0xaa, 0x7c, 0x54, 0xb2,
0x19, 0x49, 0xa7, 0x9d, 0x4e, 0xe7, 0x6c, 0x2c, 0x16, 0x1b, 0x56, 0x14, 0xa5, 0x80, 0xbf, 0x16,
0xc9, 0x5e, 0x70, 0xd2, 0xf2, 0xf2, 0xf2, 0xa9, 0x64, 0x32, 0xb9, 0x9b, 0x63, 0x18, 0xd3, 0xc8,
0xc7, 0x57, 0x51, 0x51, 0xd1, 0x4c, 0x3c, 0x1e, 0xbf, 0x4f, 0x26, 0x0f, 0x46, 0x5b, 0x28, 0x14,
0x0a, 0xe3, 0xab, 0xef, 0xa0, 0x75, 0x7b, 0xf5, 0xf6, 0xe1, 0xee, 0xae, 0xa9, 0xa9, 0xe9, 0x45,
0xc2, 0x1e, 0x7e, 0xe6, 0x18, 0xcb, 0xc2, 0xe1, 0x70, 0x1c, 0x1f, 0x74, 0x1b, 0xf2, 0x1d, 0xe6,
0x27, 0x15, 0xb2, 0x4c, 0x26, 0x23, 0x73, 0x22, 0x63, 0x9c, 0xdb, 0xa8, 0xb7, 0x52, 0x87, 0xc7,
0xe8, 0x63, 0x7f, 0x00, 0x56, 0xb3, 0x98, 0x72, 0xf8, 0x9a, 0x02, 0x50, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE gl_change_xpm[1] = {{ png, sizeof( png ), "gl_change_xpm" }};
......
This diff is collapsed.
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x04, 0x74, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xa5, 0x96, 0xc9, 0x4f, 0x54,
0x79, 0x10, 0xc7, 0x5b, 0x83, 0x89, 0x89, 0x27, 0x33, 0x9e, 0x3c, 0xc9, 0xdd, 0xab, 0x81, 0x39,
0xc1, 0x1c, 0x8d, 0xf0, 0x0f, 0x68, 0xe2, 0x61, 0xe2, 0x1c, 0x8d, 0x89, 0x98, 0x78, 0x11, 0x48,
0xc0, 0x80, 0xcc, 0x0c, 0x08, 0x28, 0x04, 0xc4, 0xb0, 0x2a, 0x4b, 0x83, 0x44, 0x22, 0xcb, 0x98,
0x09, 0xcb, 0x00, 0x42, 0x06, 0xe6, 0x02, 0x63, 0xd8, 0xf7, 0x1d, 0x1a, 0x9a, 0x7d, 0xa7, 0xa9,
0xa9, 0xcf, 0x8f, 0xee, 0xe7, 0xa3, 0x97, 0xc4, 0x64, 0x2a, 0xa9, 0xf4, 0x7b, 0xfd, 0xde, 0xfb,
0x7d, 0x7e, 0x55, 0xf5, 0xad, 0x7a, 0xcf, 0xe1, 0x70, 0x38, 0x6e, 0xa8, 0x47, 0xa9, 0x47, 0xff,
0x0f, 0x8f, 0x54, 0xbf, 0xa2, 0x7e, 0x51, 0x44, 0x1c, 0xc1, 0x1c, 0x8b, 0x9a, 0x99, 0x99, 0x91,
0xc9, 0xc9, 0x49, 0x99, 0x9d, 0x9d, 0x95, 0xb9, 0xb9, 0x39, 0x99, 0x9f, 0x9f, 0x97, 0x85, 0x85,
0x05, 0xe3, 0x8b, 0x8b, 0x8b, 0xb2, 0xb4, 0xb4, 0x24, 0xcb, 0xcb, 0xcb, 0xc6, 0x57, 0x56, 0x56,
0xc4, 0xe5, 0x72, 0x19, 0x5f, 0x5d, 0x5d, 0x35, 0xde, 0xd1, 0xd1, 0xb1, 0x91, 0x94, 0x94, 0x54,
0xa9, 0x6b, 0xfd, 0xa8, 0x7e, 0x29, 0x14, 0x28, 0x1a, 0x48, 0x45, 0x45, 0x85, 0x4c, 0x4d, 0x4d,
0x59, 0x90, 0xee, 0xee, 0x6e, 0x19, 0x1d, 0x1d, 0xb5, 0x20, 0x6c, 0x42, 0x17, 0x3c, 0x07, 0xe8,
0xe9, 0xe9, 0x91, 0xb5, 0xb5, 0x35, 0x69, 0x69, 0x69, 0x91, 0xe9, 0xe9, 0x69, 0xe9, 0xeb, 0xeb,
0x73, 0x87, 0x87, 0x87, 0xff, 0x4c, 0x74, 0x41, 0x41, 0x2c, 0x62, 0x87, 0xe0, 0x40, 0x2a, 0x2b,
0x2b, 0x65, 0x6c, 0x6c, 0xcc, 0x8a, 0xa4, 0xb9, 0xb9, 0x59, 0x5a, 0x5b, 0x5b, 0x0d, 0x04, 0x40,
0x55, 0x55, 0x95, 0xb8, 0xdd, 0x6e, 0xe9, 0xed, 0xed, 0x95, 0xce, 0xce, 0x4e, 0xf3, 0xfc, 0xf8,
0xf8, 0xf8, 0x61, 0x4c, 0x4c, 0x4c, 0xa2, 0xae, 0xfb, 0x43, 0x00, 0x88, 0x74, 0xb1, 0x23, 0x00,
0x0d, 0x0d, 0x0d, 0x56, 0x24, 0x40, 0x80, 0xe9, 0xc3, 0x56, 0x24, 0x9c, 0x03, 0x01, 0x00, 0x68,
0x7d, 0x7d, 0xdd, 0x3c, 0xcb, 0xff, 0x5c, 0x27, 0xd5, 0x7a, 0xee, 0xf1, 0xc2, 0xae, 0x9c, 0x03,
0x71, 0xa3, 0xd3, 0xe9, 0x34, 0x0f, 0x14, 0x16, 0x16, 0x4a, 0x49, 0x49, 0x89, 0x15, 0x09, 0x10,
0x16, 0xf4, 0xa5, 0xcb, 0x17, 0x05, 0x00, 0x8e, 0x37, 0x36, 0x36, 0xcc, 0xe2, 0x39, 0x39, 0x39,
0xb2, 0xbd, 0xbd, 0x6d, 0xae, 0x71, 0x3e, 0x31, 0x31, 0x71, 0xe8, 0x4d, 0xe3, 0x25, 0x0b, 0x44,
0x24, 0x40, 0xb8, 0xa1, 0xb8, 0xb8, 0x58, 0xf2, 0xf3, 0xf3, 0x8d, 0x37, 0x35, 0x36, 0x4a, 0x59,
0x6e, 0xae, 0xbc, 0x88, 0x8f, 0x97, 0xf4, 0xa4, 0x24, 0x73, 0x9c, 0xf3, 0xfa, 0x35, 0xb5, 0xb0,
0x22, 0xda, 0xdc, 0xdc, 0x34, 0x69, 0x4d, 0x48, 0x48, 0x90, 0xc3, 0xc3, 0x43, 0x03, 0x63, 0x43,
0xa4, 0xb1, 0xbf, 0xbf, 0xdf, 0xed, 0x15, 0xc8, 0x45, 0x03, 0x02, 0x80, 0xf2, 0x48, 0x57, 0x41,
0x41, 0x81, 0xfc, 0x9a, 0x98, 0x28, 0x1f, 0x32, 0x32, 0x64, 0xac, 0xac, 0x4c, 0xb6, 0xb4, 0xd0,
0x1e, 0xbd, 0xee, 0xba, 0x76, 0x4d, 0xfe, 0xbd, 0x79, 0x53, 0x3e, 0xdf, 0xbe, 0x2d, 0xf9, 0x8f,
0x1f, 0x4b, 0x41, 0x66, 0xa6, 0x94, 0x71, 0x7d, 0x6b, 0xcb, 0x40, 0xe3, 0xe2, 0xe2, 0xcc, 0x26,
0xeb, 0xea, 0xea, 0xa4, 0xbc, 0xbc, 0xdc, 0x08, 0x84, 0xba, 0xa7, 0xa4, 0xa4, 0x54, 0x7a, 0xa5,
0xef, 0x88, 0x06, 0x52, 0x5d, 0x5d, 0x2d, 0x7f, 0x68, 0x04, 0x19, 0xcf, 0x9f, 0x8b, 0xeb, 0xd3,
0x27, 0x09, 0x30, 0x87, 0xe3, 0x9b, 0x5f, 0xb8, 0x20, 0xbd, 0x91, 0x91, 0x92, 0xfa, 0xec, 0x99,
0xfc, 0xa5, 0xe2, 0x20, 0x0a, 0x54, 0x4b, 0xed, 0xa8, 0x65, 0x5e, 0x5e, 0x1e, 0x00, 0xc9, 0xd4,
0xcd, 0x74, 0x75, 0x75, 0x6d, 0x28, 0x23, 0xc2, 0x80, 0x88, 0xe4, 0x73, 0x53, 0x93, 0x7c, 0x7c,
0xf5, 0x4a, 0x3c, 0x9a, 0xc6, 0xa0, 0x66, 0x07, 0x79, 0xdd, 0x7d, 0xf5, 0xaa, 0xe4, 0x69, 0x74,
0xed, 0x6d, 0x6d, 0x26, 0x8d, 0x7b, 0x7b, 0x7b, 0xc6, 0xa9, 0x31, 0xa9, 0xe7, 0x97, 0x74, 0x7a,
0x9b, 0xda, 0x11, 0x3d, 0x32, 0x32, 0x22, 0x59, 0xa9, 0xa9, 0xa1, 0x21, 0x21, 0x40, 0x3e, 0x18,
0xa9, 0xce, 0xd5, 0xfa, 0x51, 0x97, 0xfd, 0xfd, 0xfd, 0x73, 0xa0, 0xa3, 0xa3, 0xa3, 0x33, 0x50,
0x58, 0x58, 0xd8, 0x4f, 0xf9, 0x5a, 0x8f, 0xa0, 0xe9, 0x52, 0x3b, 0xfa, 0xfa, 0x55, 0x56, 0x6a,
0x6b, 0xa5, 0xe7, 0xd6, 0x2d, 0x59, 0xb8, 0x7e, 0x3d, 0x28, 0x8c, 0x34, 0x02, 0x1b, 0x1e, 0x1e,
0x96, 0x83, 0x83, 0x03, 0x0b, 0x54, 0x5a, 0x5a, 0x2a, 0xc7, 0xc7, 0xc7, 0x67, 0xa0, 0xd8, 0xd8,
0xd8, 0x27, 0x1f, 0xb3, 0xb3, 0x03, 0x09, 0x2a, 0xdb, 0xbf, 0x75, 0x97, 0xe9, 0xc9, 0xc9, 0x92,
0x9b, 0x9e, 0x2e, 0x15, 0x2a, 0x7b, 0x8e, 0x9d, 0xf7, 0xee, 0xc9, 0xc1, 0xe5, 0xcb, 0x01, 0x35,
0xcb, 0x7d, 0xf4, 0xc8, 0xa8, 0x91, 0x54, 0xd9, 0x41, 0x27, 0x27, 0x27, 0x67, 0xa0, 0x5f, 0x1e,
0x3c, 0x78, 0x8b, 0xba, 0xfc, 0xad, 0x5b, 0x65, 0x5c, 0xf5, 0xee, 0x9d, 0x91, 0x2a, 0x12, 0x46,
0x5d, 0xf4, 0x8e, 0xf3, 0xfd, 0x7b, 0xf9, 0x70, 0xff, 0x7e, 0x40, 0x54, 0x7f, 0xde, 0xb9, 0x23,
0xad, 0xaa, 0x34, 0x40, 0x00, 0x02, 0x40, 0xf1, 0x0f, 0x1f, 0xfe, 0x83, 0x84, 0xfd, 0xd3, 0xf5,
0x42, 0xfb, 0x02, 0x15, 0xf9, 0x20, 0x28, 0x6b, 0x67, 0x67, 0xc7, 0x34, 0x28, 0xca, 0xf4, 0x4f,
0x23, 0xd2, 0x2f, 0xd7, 0xc5, 0xa9, 0x89, 0x1d, 0xe4, 0xf1, 0x78, 0xce, 0x40, 0xc9, 0x4f, 0x9f,
0x6e, 0xd1, 0x27, 0x76, 0xa3, 0x26, 0x99, 0x2a, 0x0e, 0x7f, 0x08, 0xbe, 0xbb, 0xbb, 0x2b, 0x35,
0x9a, 0x01, 0x6a, 0x66, 0x07, 0xd1, 0x67, 0x19, 0x9a, 0x5a, 0x6a, 0x62, 0x07, 0x9d, 0x9e, 0x9e,
0x7e, 0x03, 0x71, 0x93, 0xfd, 0x21, 0x16, 0x01, 0x04, 0x84, 0xae, 0x6f, 0xd4, 0xfe, 0xf2, 0x8d,
0x20, 0x8e, 0x9d, 0x5a, 0x03, 0x36, 0x63, 0x37, 0x36, 0xcb, 0xf4, 0x20, 0x55, 0x76, 0xd0, 0x99,
0x60, 0xbd, 0xa9, 0x23, 0x6c, 0x3b, 0x88, 0xb4, 0x90, 0x3a, 0x6a, 0x32, 0x38, 0x38, 0x68, 0x1e,
0x1a, 0x1a, 0x1a, 0x32, 0xaa, 0xa2, 0x19, 0x7f, 0xd7, 0x05, 0x49, 0xaf, 0xdd, 0x48, 0x7f, 0x91,
0x8a, 0x8a, 0x54, 0x05, 0x05, 0x21, 0x06, 0x0a, 0xe9, 0x5f, 0xdc, 0xaa, 0xbb, 0x77, 0x4d, 0xe1,
0x19, 0x23, 0x8c, 0x25, 0x26, 0x3c, 0xaf, 0x93, 0xdf, 0xb4, 0xe3, 0x51, 0xa3, 0xbf, 0x8d, 0xea,
0xa2, 0xcc, 0xc6, 0x90, 0x20, 0xe4, 0xcd, 0xec, 0x42, 0xa2, 0x76, 0x10, 0x12, 0x46, 0x5d, 0x14,
0x3e, 0x3b, 0x2d, 0xcd, 0xd4, 0x85, 0x63, 0xd4, 0x88, 0xf4, 0xfd, 0xcd, 0xcc, 0x46, 0x9d, 0xf8,
0xd4, 0x24, 0x28, 0x88, 0x86, 0x7d, 0xf3, 0xf2, 0xa5, 0xf4, 0x44, 0x44, 0x04, 0x6d, 0x46, 0xd2,
0x48, 0xcd, 0xa8, 0x89, 0x7f, 0xba, 0x7c, 0x46, 0xb3, 0x23, 0x04, 0xa2, 0xc1, 0x82, 0x82, 0x7c,
0x43, 0x95, 0xce, 0x66, 0x9c, 0x84, 0x1a, 0x35, 0xa1, 0x8c, 0xb1, 0x95, 0xad, 0xc2, 0x61, 0xa8,
0x52, 0x53, 0xac, 0xbd, 0xbd, 0x5d, 0x8a, 0x8a, 0x8a, 0x02, 0x41, 0xa8, 0xab, 0x55, 0x5f, 0xd3,
0x0c, 0xc8, 0x90, 0xb0, 0x10, 0x90, 0xda, 0xac, 0x2c, 0xe9, 0xfe, 0xf2, 0xc5, 0x40, 0x6a, 0x6a,
0x6a, 0x2c, 0x58, 0x9b, 0x0e, 0x5a, 0x60, 0xe7, 0x40, 0xbc, 0x4f, 0xea, 0xeb, 0xeb, 0x0d, 0x2c,
0x4d, 0xd5, 0x66, 0xd2, 0xe8, 0x57, 0xb3, 0x60, 0xe9, 0x22, 0x92, 0x1a, 0x7d, 0x33, 0x33, 0x48,
0x31, 0x20, 0x03, 0x03, 0x03, 0xd6, 0x3d, 0xf4, 0xa1, 0x1d, 0x14, 0xe5, 0xeb, 0x78, 0x9a, 0x91,
0x09, 0xfc, 0x56, 0x77, 0xf9, 0x46, 0x5f, 0x64, 0xa8, 0x11, 0xe9, 0xd3, 0x67, 0xf4, 0x09, 0x12,
0x66, 0x5c, 0xd5, 0xa9, 0x8c, 0x0b, 0xf5, 0x95, 0x42, 0x5f, 0x7d, 0x8f, 0x79, 0xbf, 0x1b, 0x03,
0x3f, 0x20, 0x11, 0x08, 0x6a, 0x44, 0xfa, 0xf4, 0x19, 0x4d, 0x8d, 0x73, 0xcc, 0x7f, 0x5c, 0xe3,
0x9e, 0xef, 0xfc, 0xb8, 0x64, 0xed, 0x1b, 0xff, 0x01, 0xc2, 0xf6, 0x5d, 0x89, 0x10, 0x37, 0x07,
0x7a, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE rescue_pcbnew_xpm[1] = {{ png, sizeof( png ), "rescue_pcbnew_xpm" }};
//EOF
/* Do not modify this file, it was automatically generated by the
* PNG2cpp CMake script, using a *.png file as input.
*/
#include <bitmaps.h>
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x05, 0x4f, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xad, 0x96, 0x6b, 0x4c, 0x9b,
0x65, 0x14, 0xc7, 0x2b, 0x66, 0x26, 0x3a, 0x3f, 0x18, 0x17, 0xcd, 0x62, 0x9c, 0x0e, 0x8d, 0xcb,
0xe2, 0x34, 0x46, 0x67, 0xdc, 0x66, 0x1c, 0xb0, 0xa8, 0x5b, 0x54, 0x96, 0xcd, 0xa9, 0x91, 0xa8,
0x31, 0x66, 0x9f, 0x8c, 0xf1, 0xf2, 0x61, 0x9a, 0xf8, 0x45, 0x66, 0xe6, 0x5c, 0x4c, 0xfc, 0x32,
0x3f, 0xa0, 0x30, 0xee, 0x53, 0x36, 0xe8, 0xca, 0xb8, 0x0c, 0xe6, 0xd8, 0x05, 0xba, 0x76, 0x03,
0x06, 0x43, 0x46, 0x81, 0x16, 0x4a, 0x0b, 0xa5, 0x40, 0x29, 0x97, 0xb6, 0x50, 0x2e, 0x1d, 0xa3,
0xdd, 0xdf, 0xe7, 0x7f, 0xe8, 0x35, 0xc2, 0xfc, 0xa0, 0x4f, 0x72, 0xf2, 0xbe, 0xcf, 0xfb, 0xbe,
0xcf, 0xf3, 0x7b, 0xce, 0x39, 0xff, 0x73, 0x5a, 0x8d, 0x46, 0xa3, 0x59, 0xaf, 0x2c, 0x55, 0x59,
0xda, 0x7f, 0xb0, 0xad, 0xca, 0x56, 0x2b, 0x4b, 0x02, 0xa0, 0x59, 0xce, 0x38, 0x52, 0x9d, 0x4e,
0x27, 0x06, 0x06, 0x06, 0x30, 0x34, 0x34, 0x84, 0xe1, 0xe1, 0x61, 0x8c, 0x8c, 0x8c, 0xc0, 0xe5,
0x72, 0x89, 0x8d, 0x8e, 0x8e, 0xc2, 0xed, 0x76, 0x63, 0x6c, 0x6c, 0x4c, 0x6c, 0x7c, 0x7c, 0x1c,
0x13, 0x13, 0x13, 0x62, 0x93, 0x93, 0x93, 0x62, 0x46, 0xa3, 0x71, 0xea, 0xd0, 0xa1, 0x43, 0xa5,
0x6a, 0xaf, 0x6d, 0xca, 0x56, 0xad, 0x04, 0x4a, 0x23, 0xe4, 0xe4, 0xc9, 0x93, 0x70, 0x38, 0x1c,
0x51, 0x48, 0x53, 0x53, 0x13, 0xfa, 0xfa, 0xfa, 0xa2, 0x10, 0x1e, 0xc2, 0x68, 0x34, 0x24, 0x00,
0x5a, 0x5a, 0x5a, 0xe0, 0xf1, 0x78, 0x50, 0x5f, 0x5f, 0x8f, 0xc1, 0xc1, 0x41, 0x74, 0x74, 0x74,
0x78, 0x93, 0x93, 0x93, 0xf7, 0xd3, 0xbb, 0x65, 0x41, 0xdc, 0x24, 0x1e, 0x42, 0x23, 0xa4, 0xb4,
0xb4, 0x14, 0x36, 0x9b, 0x6d, 0xc9, 0x9b, 0xd1, 0x41, 0x18, 0x4a, 0x76, 0xa2, 0xa1, 0xa1, 0x41,
0x20, 0x04, 0x94, 0x95, 0x95, 0xc1, 0xeb, 0xf5, 0xa2, 0xb5, 0xb5, 0x15, 0x57, 0xae, 0x5c, 0x91,
0xf5, 0x76, 0xbb, 0x7d, 0x21, 0x3d, 0x3d, 0xfd, 0xa0, 0xda, 0x77, 0xcd, 0x3f, 0x40, 0x0c, 0x17,
0x4f, 0x44, 0x40, 0x6d, 0x6d, 0x6d, 0xd4, 0x13, 0x42, 0x08, 0xeb, 0xb3, 0xb4, 0xe0, 0x86, 0x6e,
0x0b, 0x5a, 0xff, 0x78, 0x5c, 0xe6, 0x84, 0x10, 0x40, 0x90, 0xcf, 0xe7, 0x93, 0xb5, 0x7c, 0xce,
0x03, 0x30, 0xd4, 0x6a, 0x1e, 0x0a, 0xc3, 0x56, 0x27, 0x80, 0xf8, 0xa1, 0x56, 0xab, 0x95, 0x05,
0x05, 0x05, 0x05, 0x28, 0x2e, 0x2e, 0x8e, 0x7a, 0xd2, 0x6b, 0x3a, 0x8f, 0x96, 0x92, 0x4d, 0xf0,
0xbb, 0x2a, 0xd0, 0x59, 0x95, 0x1a, 0xf5, 0x82, 0x00, 0xde, 0x4f, 0x4d, 0x4d, 0xc9, 0xe6, 0x59,
0x59, 0x59, 0x98, 0x99, 0x99, 0x91, 0x77, 0x9c, 0xf7, 0xf7, 0xf7, 0x2f, 0x84, 0xc3, 0xb8, 0x2a,
0x0a, 0xa2, 0x27, 0x84, 0xf0, 0x83, 0xa2, 0xa2, 0x22, 0xe4, 0xe4, 0xe4, 0xe0, 0xf8, 0xf1, 0xe3,
0x18, 0xec, 0xae, 0x42, 0xc7, 0xe9, 0xad, 0x98, 0x1b, 0xd7, 0x22, 0x38, 0xa3, 0x43, 0x67, 0x65,
0x4a, 0xd4, 0x8b, 0x08, 0x68, 0x7a, 0x7a, 0x5a, 0x04, 0x92, 0x99, 0x99, 0x89, 0x85, 0x85, 0x05,
0x81, 0xd1, 0x33, 0x86, 0xd1, 0x64, 0x32, 0x79, 0xc3, 0x02, 0x49, 0x12, 0x10, 0x01, 0x54, 0x1e,
0xc3, 0x15, 0x01, 0x95, 0xe7, 0x7f, 0x0a, 0x73, 0xed, 0x1b, 0x08, 0x4c, 0xea, 0x10, 0x9a, 0x29,
0x40, 0xd0, 0xaf, 0x85, 0xa9, 0x72, 0x3b, 0x2e, 0x14, 0xbd, 0x0e, 0x5b, 0xd3, 0x8f, 0x18, 0xb5,
0x5f, 0x12, 0x90, 0xdf, 0xef, 0x17, 0x2f, 0x0e, 0x1c, 0x38, 0x20, 0x6b, 0xab, 0xaa, 0xaa, 0x70,
0xe2, 0xc4, 0x09, 0x11, 0x08, 0xf3, 0x7e, 0xe4, 0xc8, 0x91, 0xd2, 0xb0, 0xf4, 0x35, 0x69, 0x84,
0x9c, 0x3a, 0x75, 0x4a, 0xa4, 0xcd, 0x8f, 0x2b, 0xb2, 0xf7, 0xc0, 0x7a, 0xe9, 0x63, 0x2c, 0xf8,
0x96, 0x20, 0x62, 0xfe, 0x02, 0xcc, 0x8f, 0xfd, 0x0e, 0xbf, 0xf3, 0x57, 0x4c, 0xf4, 0x1e, 0x56,
0xef, 0x33, 0x60, 0x2c, 0xde, 0x04, 0x97, 0xf5, 0x8c, 0x78, 0x41, 0xd5, 0x32, 0x77, 0x54, 0x65,
0x76, 0x76, 0x36, 0x01, 0x38, 0x7a, 0xf4, 0x28, 0x1a, 0x1b, 0x1b, 0xa7, 0x14, 0x63, 0x8b, 0x80,
0xe8, 0x09, 0x21, 0x63, 0x6e, 0x17, 0xce, 0xe5, 0xa5, 0xc0, 0x71, 0xed, 0x1b, 0x2c, 0x4e, 0x6b,
0x63, 0x10, 0x01, 0xe5, 0x22, 0x34, 0xfd, 0x0b, 0x42, 0x53, 0x3f, 0x21, 0xe4, 0xcb, 0x44, 0xd0,
0xfb, 0x1d, 0xa6, 0x1d, 0x87, 0xd1, 0x73, 0xee, 0x2d, 0xf4, 0x37, 0x1f, 0x14, 0xef, 0xe6, 0xe7,
0xe7, 0xc5, 0x98, 0x63, 0x46, 0x85, 0x57, 0x86, 0x33, 0x5c, 0xd4, 0x9a, 0x34, 0x26, 0x9d, 0x31,
0xed, 0xbe, 0xf4, 0xb9, 0x3a, 0xe9, 0x07, 0x08, 0x8c, 0x7e, 0x8d, 0xc0, 0xc8, 0xbb, 0x08, 0x0c,
0xef, 0xc6, 0xfc, 0xd0, 0x2e, 0xcc, 0x3b, 0xd3, 0x94, 0xed, 0x50, 0xf3, 0x74, 0xf5, 0x7c, 0x9f,
0xb2, 0xf7, 0xe4, 0xca, 0x77, 0xb3, 0xce, 0x0c, 0xf4, 0x5e, 0xd8, 0x83, 0xea, 0x63, 0x3b, 0x65,
0x8f, 0x40, 0x20, 0x90, 0x00, 0xba, 0x75, 0xeb, 0x56, 0x0c, 0xc4, 0x0f, 0xca, 0xcb, 0xcb, 0x31,
0xec, 0xb4, 0x42, 0x9f, 0xf7, 0x14, 0x06, 0x1a, 0x33, 0xe0, 0xb5, 0x3c, 0x04, 0x6f, 0xf7, 0xdd,
0x77, 0xb0, 0x7b, 0xe0, 0xeb, 0x59, 0x03, 0x9f, 0xe5, 0x01, 0x78, 0x7b, 0x36, 0x89, 0x68, 0xcc,
0x6d, 0xa7, 0x71, 0xf3, 0xe6, 0xcd, 0x28, 0x88, 0x82, 0x5a, 0x5c, 0x5c, 0x8c, 0x81, 0xa8, 0x1a,
0x2a, 0x8f, 0x6a, 0x29, 0x2e, 0xca, 0xc3, 0xf9, 0x63, 0xcf, 0xc0, 0x76, 0xf9, 0x1d, 0x78, 0xcc,
0x8f, 0xc0, 0xd3, 0xa5, 0x89, 0xda, 0x64, 0xf7, 0x06, 0xb5, 0xf9, 0xc3, 0xea, 0x3e, 0x29, 0xee,
0xf9, 0x5d, 0x72, 0x75, 0x77, 0xbc, 0xad, 0x6a, 0xed, 0x05, 0x09, 0x55, 0x3c, 0x28, 0x18, 0x0c,
0xc6, 0x40, 0x4c, 0x20, 0x95, 0xc7, 0x64, 0x2e, 0xa9, 0xee, 0x37, 0xd4, 0xe5, 0x6d, 0x83, 0xad,
0x7e, 0xaf, 0x82, 0x3d, 0xb9, 0xb4, 0xa1, 0x39, 0x19, 0x9d, 0xd5, 0xaf, 0x2a, 0x89, 0xbf, 0x02,
0xbb, 0xfe, 0x7d, 0x38, 0xaf, 0x65, 0x28, 0xf0, 0xba, 0x28, 0xd0, 0xdb, 0xf3, 0xa8, 0x02, 0x6d,
0xc6, 0x9c, 0xdf, 0x2d, 0x80, 0x65, 0x41, 0x84, 0x54, 0x54, 0x54, 0x48, 0x81, 0x46, 0xe4, 0xcd,
0x53, 0xf5, 0xea, 0x3f, 0x43, 0x4f, 0xdd, 0x2e, 0x4c, 0x9a, 0x9f, 0x85, 0xc7, 0xb2, 0x11, 0xed,
0x65, 0x4f, 0xc3, 0xef, 0x73, 0x61, 0xdc, 0xa1, 0x47, 0x6f, 0xfd, 0x7e, 0x58, 0x2f, 0xee, 0x56,
0xb0, 0x8d, 0x61, 0x58, 0x12, 0x6c, 0x0d, 0xfb, 0x30, 0xe9, 0xa8, 0x4b, 0x00, 0x85, 0x42, 0xa1,
0x18, 0x88, 0x9e, 0x10, 0xc2, 0x7a, 0x88, 0x4f, 0x24, 0x8b, 0xd1, 0xde, 0xfc, 0x3d, 0xba, 0xce,
0xa4, 0xc0, 0xdb, 0xf7, 0x91, 0x80, 0xe6, 0xe6, 0xe6, 0x44, 0x59, 0x4c, 0x7a, 0x9f, 0xe1, 0x4b,
0xe5, 0xd9, 0x87, 0x51, 0xaf, 0xec, 0x97, 0xf7, 0x62, 0xcc, 0x5a, 0x96, 0x00, 0xba, 0x7d, 0xfb,
0x76, 0x0c, 0x44, 0x00, 0x41, 0xac, 0xf6, 0x78, 0x10, 0x8b, 0x91, 0xf9, 0xbb, 0x50, 0xf6, 0x15,
0x4c, 0xa7, 0x37, 0xe3, 0x7a, 0xc9, 0x13, 0x38, 0x7b, 0xf6, 0xac, 0x7c, 0xc7, 0x35, 0x17, 0x75,
0xdf, 0xaa, 0x30, 0xee, 0x84, 0x47, 0x09, 0xc3, 0x6b, 0xbe, 0x17, 0xe6, 0x9a, 0x1d, 0x98, 0xf5,
0xf4, 0x24, 0x80, 0xb0, 0xd4, 0x7f, 0x62, 0xf2, 0xae, 0xac, 0xac, 0x94, 0x62, 0x8b, 0x07, 0xb1,
0x10, 0x2d, 0x16, 0x8b, 0xcc, 0x4d, 0xc6, 0x2c, 0x34, 0xe6, 0x3d, 0x28, 0xf7, 0x56, 0xab, 0x55,
0xec, 0xcf, 0x9c, 0x2d, 0x70, 0x5c, 0x7d, 0x53, 0xbc, 0x99, 0xe8, 0x7c, 0x5e, 0x35, 0xdd, 0xc7,
0x54, 0xa8, 0x82, 0x2b, 0x83, 0x78, 0x42, 0x42, 0x18, 0xaa, 0x78, 0xd0, 0xec, 0xec, 0xac, 0xfc,
0x0e, 0xe5, 0xe6, 0xe6, 0x4a, 0x41, 0x0f, 0x98, 0xeb, 0xe4, 0x7e, 0xa9, 0xe6, 0xbe, 0x40, 0x57,
0xed, 0x76, 0xe5, 0x0d, 0xcb, 0xe0, 0x3e, 0x74, 0xd7, 0xbc, 0x0c, 0x6b, 0xf3, 0xcf, 0x92, 0x93,
0x15, 0x41, 0xec, 0xc0, 0x94, 0xf6, 0x72, 0x20, 0xe6, 0x84, 0x55, 0xcf, 0x9c, 0xd0, 0xd8, 0xe5,
0x47, 0xba, 0x72, 0xd1, 0x55, 0xf5, 0x22, 0x26, 0xba, 0xd6, 0x2a, 0xd0, 0xfd, 0x18, 0x30, 0xa4,
0xc0, 0x50, 0xb8, 0x41, 0xbc, 0x61, 0x4e, 0x56, 0x04, 0x11, 0x52, 0x5d, 0x5d, 0x1d, 0x95, 0x77,
0x7e, 0x7e, 0xbe, 0x34, 0xc5, 0x48, 0xe2, 0xd9, 0x07, 0x09, 0x61, 0x31, 0xf2, 0xbe, 0xad, 0x64,
0x1d, 0xdc, 0x37, 0x9e, 0x53, 0xe1, 0x5a, 0xa7, 0x1a, 0xef, 0x4b, 0xca, 0x9b, 0xd7, 0x50, 0xae,
0x2d, 0x16, 0x08, 0xc7, 0x8a, 0x20, 0x26, 0x9d, 0x10, 0xe6, 0x84, 0xb1, 0x37, 0x9b, 0xcd, 0x51,
0x08, 0xfb, 0xa0, 0x4e, 0xa7, 0x13, 0x08, 0x8b, 0x91, 0xa0, 0xbe, 0x86, 0x4f, 0xd0, 0xa1, 0x7b,
0x06, 0xcd, 0x45, 0x6b, 0xe1, 0xbc, 0xfe, 0x83, 0x02, 0x84, 0xa4, 0xb3, 0x30, 0x05, 0x1c, 0x06,
0x83, 0x01, 0x85, 0x85, 0x85, 0xcb, 0x83, 0xa8, 0xa2, 0x48, 0xa8, 0xe2, 0x21, 0xdc, 0x98, 0x62,
0x21, 0x84, 0x7d, 0x8b, 0x73, 0xb6, 0x15, 0xff, 0xf8, 0x5f, 0x68, 0xba, 0xaa, 0x67, 0x77, 0x16,
0x4f, 0x08, 0xe1, 0x81, 0x22, 0x30, 0xbd, 0x5e, 0x2f, 0xb0, 0x04, 0x10, 0x21, 0x35, 0x35, 0x35,
0xf2, 0x6b, 0xd9, 0xde, 0xde, 0x2e, 0x79, 0xe0, 0x86, 0x5c, 0x18, 0x0f, 0x21, 0xa0, 0xb3, 0xb3,
0x53, 0xaa, 0x9d, 0x49, 0x27, 0xa0, 0xad, 0xad, 0x4d, 0xc2, 0xca, 0x41, 0x08, 0xa3, 0x11, 0x19,
0xcc, 0x79, 0x3c, 0x28, 0x95, 0x9e, 0x10, 0x12, 0x5f, 0x8c, 0x0c, 0x55, 0x24, 0x5c, 0x11, 0x08,
0x2d, 0x1e, 0x12, 0xc9, 0xc9, 0xbf, 0x8d, 0xf0, 0xff, 0xc6, 0xff, 0xe5, 0x0f, 0xe4, 0x9d, 0x8c,
0x7b, 0xaf, 0xff, 0x1b, 0x47, 0x57, 0x8d, 0x83, 0x7a, 0x4f, 0x71, 0x3e, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE revert_pcbnew_xpm[1] = {{ png, sizeof( png ), "revert_pcbnew_xpm" }};
//EOF
This diff is collapsed.
......@@ -8,34 +8,38 @@
static const unsigned char png[] = {
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,
0xce, 0x00, 0x00, 0x01, 0xa6, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0xd5, 0xbf, 0x4b, 0xc3,
0x50, 0x10, 0x07, 0xf0, 0x4b, 0xfa, 0xde, 0x8b, 0x4e, 0x16, 0x71, 0x12, 0x2b, 0x0e, 0x2e, 0xa5,
0x43, 0x71, 0x12, 0x1c, 0xc4, 0xa5, 0xe8, 0x22, 0x76, 0x71, 0xd0, 0xa1, 0xa3, 0x4b, 0x41, 0x6c,
0x5a, 0x7f, 0x80, 0x08, 0x2e, 0x82, 0xe0, 0xa2, 0x83, 0xae, 0x2a, 0x45, 0x11, 0x9c, 0x15, 0x5c,
0x0a, 0x8a, 0xe0, 0xe0, 0xa0, 0x50, 0xf0, 0x0f, 0x28, 0x2a, 0x16, 0xc4, 0x22, 0x0e, 0x6a, 0xa1,
0x3d, 0xbf, 0x95, 0x0e, 0x6a, 0x92, 0xa9, 0x87, 0x90, 0x6f, 0x08, 0x21, 0xe4, 0x93, 0xbb, 0xe4,
0x5d, 0x88, 0x99, 0xe9, 0x3f, 0x42, 0xd8, 0x1c, 0xa4, 0x4d, 0x28, 0xa1, 0x60, 0xc8, 0x98, 0x3c,
0xc2, 0x22, 0x71, 0x9c, 0x0b, 0xdc, 0xd2, 0x0e, 0xaa, 0x28, 0x8c, 0x8b, 0xee, 0x05, 0x31, 0xd7,
0x17, 0xca, 0x11, 0xed, 0xec, 0xda, 0x76, 0x59, 0x0c, 0x32, 0xe6, 0x1d, 0x89, 0x7a, 0xa0, 0x05,
0xa2, 0x6e, 0x60, 0x2f, 0x57, 0x4a, 0xb1, 0x20, 0x76, 0x8d, 0x5b, 0xab, 0xdf, 0xad, 0xc3, 0x0e,
0xd0, 0xf4, 0x32, 0x0e, 0x9f, 0xb5, 0x96, 0xc4, 0x56, 0x3c, 0x50, 0x13, 0x3b, 0xde, 0xb6, 0x2c,
0xae, 0xcb, 0x41, 0x55, 0xd6, 0x7a, 0xc0, 0x03, 0x65, 0x89, 0xba, 0xe6, 0x89, 0x9e, 0xce, 0x43,
0x21, 0xc9, 0xaa, 0x8a, 0xdf, 0xcb, 0xe7, 0x27, 0xd4, 0xac, 0x6a, 0x62, 0x09, 0xa7, 0xca, 0xb2,
0x2d, 0x5c, 0xf7, 0x40, 0x4d, 0x6c, 0x6f, 0x0b, 0x2d, 0xac, 0xc9, 0x41, 0x35, 0x56, 0x6a, 0xc8,
0x03, 0x2d, 0x12, 0x75, 0x00, 0x2b, 0xed, 0xdb, 0x36, 0x9f, 0xa0, 0x8d, 0xad, 0xe6, 0x46, 0xa9,
0x53, 0x60, 0x93, 0xbe, 0xe3, 0x02, 0xef, 0x2b, 0x01, 0xac, 0x8e, 0xb0, 0x40, 0x3e, 0xf0, 0xf0,
0xb1, 0xc0, 0x21, 0x88, 0x0b, 0xdc, 0x46, 0x1b, 0x85, 0x32, 0x4b, 0x59, 0x56, 0xc3, 0x19, 0x76,
0xc6, 0x64, 0x62, 0x62, 0x81, 0x43, 0xd5, 0x65, 0x27, 0xed, 0xb2, 0x61, 0xa1, 0x54, 0x5c, 0x6e,
0x8f, 0xf8, 0x42, 0x3d, 0xe3, 0x14, 0x4d, 0xbf, 0xe9, 0x4b, 0x39, 0x4c, 0x17, 0x30, 0xa9, 0x2d,
0x3f, 0x28, 0xd7, 0x9f, 0xb2, 0x38, 0xfd, 0x2a, 0x56, 0x15, 0xe2, 0xe4, 0xfc, 0x20, 0x0b, 0x29,
0x0c, 0xae, 0xd9, 0x82, 0x90, 0xf9, 0x44, 0x65, 0x71, 0xcf, 0xac, 0x03, 0x14, 0x41, 0x2a, 0xc9,
0x33, 0x25, 0x89, 0x15, 0x57, 0x19, 0x7f, 0xdd, 0xbf, 0xb3, 0x0e, 0xd0, 0x54, 0x1f, 0x96, 0xd5,
0xcc, 0xa3, 0x16, 0xc3, 0x32, 0xac, 0x37, 0x3d, 0x50, 0x13, 0x3b, 0x88, 0xe7, 0x2c, 0xce, 0xd4,
0xc4, 0xaa, 0xaa, 0x67, 0xd9, 0x49, 0xf8, 0x41, 0x61, 0xa4, 0x34, 0x7a, 0x18, 0x92, 0x6c, 0xe1,
0x43, 0x86, 0xa9, 0xd3, 0xf3, 0xbd, 0x03, 0x1a, 0xe9, 0x4d, 0x52, 0x2d, 0x75, 0xa7, 0x79, 0xae,
0x6a, 0x5a, 0x8e, 0x5b, 0x37, 0x55, 0x60, 0x79, 0xdf, 0x55, 0x0c, 0x6c, 0x03, 0x61, 0xa1, 0x94,
0x1a, 0x9d, 0x0a, 0x82, 0x0c, 0x72, 0x2b, 0x88, 0x1d, 0x7d, 0x01, 0xbf, 0xeb, 0x9b, 0xb8, 0x05,
0x3e, 0x9f, 0x36, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
0xce, 0x00, 0x00, 0x01, 0xdf, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xd5, 0x96, 0xcf, 0x4b, 0x42,
0x41, 0x10, 0xc7, 0xe7, 0xf9, 0x03, 0xd4, 0xa3, 0x27, 0x41, 0x0f, 0x5e, 0xf2, 0x20, 0x5e, 0x3c,
0x28, 0x88, 0xfd, 0x01, 0x0a, 0x56, 0x42, 0x1a, 0x24, 0xe4, 0xa5, 0x4e, 0x85, 0xa6, 0xd4, 0x45,
0x09, 0xd2, 0xcc, 0x8b, 0x50, 0x22, 0x84, 0x41, 0x04, 0x81, 0x87, 0xfc, 0x1b, 0xed, 0xb2, 0xcd,
0xac, 0x2b, 0xf8, 0x9e, 0x3b, 0xcf, 0x57, 0x9a, 0x10, 0x8f, 0x2f, 0x8f, 0xdd, 0x9d, 0x99, 0x0f,
0x3b, 0x3b, 0xfb, 0x03, 0xf2, 0xd3, 0xbc, 0xd8, 0x85, 0xe0, 0x5f, 0x82, 0xa2, 0xa3, 0xa8, 0x80,
0x0e, 0xe8, 0xb5, 0x2d, 0x48, 0xec, 0x25, 0xc6, 0x43, 0xb6, 0x05, 0x4a, 0xbc, 0x26, 0xec, 0x21,
0xdb, 0x00, 0x25, 0xdf, 0x92, 0xc2, 0xe8, 0x18, 0x7f, 0x0b, 0x4a, 0xbd, 0xa7, 0x84, 0xab, 0xeb,
0x5a, 0x0f, 0xd9, 0x04, 0x94, 0xf9, 0xc8, 0x08, 0xf7, 0x83, 0x5b, 0x1f, 0xb4, 0x86, 0x3a, 0xb4,
0xc8, 0x2e, 0x58, 0x6e, 0x9a, 0x93, 0xa9, 0x89, 0x0c, 0x23, 0x22, 0x38, 0x08, 0x0a, 0x7f, 0xdf,
0x2f, 0x67, 0xe0, 0x7b, 0xf4, 0x09, 0xa3, 0xcb, 0xa4, 0xab, 0x89, 0x3a, 0x72, 0x08, 0x22, 0x40,
0x7c, 0x1c, 0x17, 0x81, 0x7e, 0xc0, 0x59, 0x5a, 0x16, 0xba, 0x45, 0x15, 0x35, 0x10, 0x1d, 0x28,
0xf7, 0x99, 0x13, 0xa1, 0xa7, 0xd0, 0xcf, 0x00, 0x96, 0xd9, 0x78, 0x8e, 0x3d, 0x22, 0x3b, 0xce,
0xf2, 0x1b, 0x76, 0x23, 0x88, 0x92, 0xd1, 0x34, 0x44, 0x7a, 0x94, 0xb6, 0x3f, 0x19, 0x68, 0x3d,
0x56, 0x9c, 0xef, 0x51, 0x75, 0xd4, 0x19, 0xaa, 0xac, 0x52, 0x53, 0x56, 0xed, 0xba, 0x1a, 0xb7,
0xf8, 0x50, 0x1c, 0x5b, 0x50, 0x78, 0x18, 0x36, 0x3b, 0xb5, 0x50, 0x25, 0x26, 0xe7, 0x0b, 0x95,
0x94, 0xdd, 0x92, 0x1f, 0xc5, 0x61, 0x41, 0x54, 0x00, 0xde, 0x9e, 0xd7, 0x0c, 0xaa, 0xac, 0x81,
0x2c, 0x54, 0x31, 0x83, 0x28, 0x0e, 0xc5, 0x63, 0x41, 0x70, 0x07, 0x3a, 0xd0, 0x0c, 0x17, 0x78,
0x02, 0x07, 0x50, 0xc0, 0x6f, 0x0f, 0xd3, 0xe6, 0x97, 0x7f, 0x6a, 0x53, 0x3f, 0x8d, 0x5b, 0x40,
0x14, 0x87, 0x05, 0xc9, 0x46, 0x0d, 0xac, 0xa9, 0xfb, 0x82, 0x4b, 0xd8, 0x17, 0x42, 0x00, 0x27,
0x1a, 0x97, 0x76, 0x96, 0x0d, 0xcb, 0xa7, 0x0e, 0x2b, 0x0e, 0xaa, 0xda, 0x4a, 0x9a, 0xa1, 0x26,
0xa8, 0x02, 0xf4, 0x70, 0x26, 0xcf, 0x38, 0x23, 0xfa, 0x53, 0x7b, 0xde, 0x3f, 0x5b, 0xf1, 0xc1,
0x38, 0x14, 0x8f, 0x05, 0x79, 0x4f, 0x70, 0x8d, 0x1a, 0xb0, 0x51, 0x79, 0x93, 0x3f, 0xc5, 0x61,
0x41, 0xb2, 0xea, 0xae, 0xc3, 0xf3, 0xe3, 0xa3, 0xf1, 0x7b, 0x08, 0xf9, 0x53, 0x1c, 0xfb, 0x7d,
0x34, 0x48, 0xce, 0xab, 0x88, 0x60, 0xe7, 0xab, 0x65, 0xcb, 0xaa, 0xa5, 0xec, 0xd5, 0x19, 0x47,
0x71, 0x6c, 0x41, 0xf2, 0x64, 0xb8, 0x0a, 0x99, 0x4b, 0xb7, 0xaa, 0x4e, 0xe3, 0x1b, 0x54, 0x5b,
0x6d, 0xd0, 0xb6, 0x6a, 0xd7, 0xd4, 0xf8, 0x92, 0x3d, 0xf9, 0x5b, 0xd3, 0xa6, 0x7d, 0x33, 0x68,
0x61, 0x0e, 0xc5, 0x41, 0xd8, 0xc7, 0x09, 0x19, 0xc7, 0xbb, 0x78, 0x7a, 0x57, 0x02, 0x8e, 0x00,
0x64, 0x47, 0xf6, 0x1c, 0x64, 0xed, 0x2b, 0x88, 0x1c, 0x29, 0xdf, 0x91, 0x06, 0xde, 0x47, 0x17,
0x78, 0x1f, 0x9d, 0xe2, 0x7d, 0x54, 0x74, 0xc9, 0x3f, 0xb5, 0xa9, 0x9f, 0xc6, 0xed, 0x00, 0x3b,
0x7f, 0xd7, 0x7d, 0x03, 0x27, 0x0b, 0xd1, 0x6c, 0x6a, 0xc8, 0x74, 0xef, 0x00, 0x00, 0x00, 0x00,
0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
const BITMAP_OPAQUE use_3D_copper_thickness_xpm[1] = {{ png, sizeof( png ), "use_3D_copper_thickness_xpm" }};
......
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
......@@ -10,111 +8,141 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="26"
height="26"
id="svg3019"
width="26"
version="1.1"
inkscape:version="0.48.1 r9760"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="auto_delete_track.svg">
<defs
id="defs3021">
<linearGradient
id="linearGradient3165">
<stop
style="stop-color:#f68273;stop-opacity:1;"
offset="0"
id="stop3167" />
<stop
id="stop3165"
offset="0.5"
style="stop-color:#cd2923;stop-opacity:1;" />
<stop
style="stop-color:#8c0000;stop-opacity:1"
offset="1"
id="stop3169" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3165"
id="linearGradient3186"
x1="9.5"
y1="2.5"
x2="14.909858"
y2="21.491209"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.98251411,0,0,0.98913061,2.0822965,1025.7779)" />
<linearGradient
y2="21.491209"
x2="15.409858"
y1="2.5"
x1="10"
gradientTransform="matrix(0.98251411,0,0,0.98913061,1.5910398,1025.7779)"
gradientUnits="userSpaceOnUse"
id="linearGradient3017"
xlink:href="#linearGradient3165"
inkscape:collect="always" />
</defs>
<metadata
id="metadata40">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
pagecolor="#4a4a4a"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="22.4"
inkscape:cx="14.142857"
inkscape:cy="13.409153"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1366"
inkscape:window-height="744"
id="namedview38"
showgrid="true"
inkscape:window-width="1600"
inkscape:window-height="876"
inkscape:snap-to-guides="true"
inkscape:snap-grids="true"
inkscape:zoom="21.730769"
inkscape:cx="17.716814"
inkscape:cy="8.9044248"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:snap-to-guides="false"
inkscape:snap-grids="false">
inkscape:current-layer="svg2"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid3027"
empspacing="5"
id="grid3017"
empspacing="2"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
</sodipodi:namedview>
<metadata
id="metadata3024">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs4">
<linearGradient
inkscape:collect="always"
id="linearGradient3761">
<stop
style="stop-color:#b40000;stop-opacity:1"
offset="0"
id="stop3763" />
<stop
style="stop-color:#fa0000;stop-opacity:1"
offset="1"
id="stop3765" />
</linearGradient>
<filter
id="c"
height="1.3651"
width="1.2097"
color-interpolation-filters="sRGB"
y="-0.18257"
x="-0.10484">
<feGaussianBlur
stdDeviation="1.5978799"
id="feGaussianBlur7" />
</filter>
<filter
id="d"
height="1.4696"
width="1.4809999"
color-interpolation-filters="sRGB"
y="-0.23481999"
x="-0.24049">
<feGaussianBlur
stdDeviation="1.5978799"
id="feGaussianBlur10" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3761"
id="linearGradient3767"
x1="13"
y1="12.5"
x2="13"
y2="1.5"
gradientUnits="userSpaceOnUse" />
<filter
inkscape:collect="always"
id="filter3766">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.25"
id="feGaussianBlur3768" />
</filter>
</defs>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
d="m 22.5,6.5 -19,0"
style="fill:none;stroke:#999999;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3758" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1026.3622)">
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3017);fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 20.692618,1048.2026 c 0,0 -5.214797,-13.2753 -18.291902,-17.5833 l 2.1195398,-3.139 c 12.9664562,4.2059 18.2602092,19.3933 18.2602092,19.3933 z"
id="path2205"
sodipodi:nodetypes="ccccc" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3186);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="m 3.9616888,1044.486 3.9097961,3.3086 c 5.8127561,-14.9521 16.3173761,-18.404 16.3173761,-18.404 l -1.918242,-1.1257 c 0,0 -11.228168,2.0235 -18.3089302,16.2211 z"
id="path2408"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;stroke:#b00000;stroke-width:2.1474092px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.9572536,1050.3623 22.0229904,-0.012"
id="path3763"
inkscape:connector-curvature="0" />
transform="matrix(1.6382539,0,0,1.5572263,1.2572207,0.36314149)"
id="g16">
<rect
height="16"
width="16"
y="0"
x="0"
id="rect18"
style="fill-opacity:0" />
</g>
<path
id="path2990"
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 24.5,6.5 -2,0 0,11 -4.5,4 -10,0 -4.5,-4 0,-11 -2,0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
<path
d="M 8,2 18,12 M 8,12 18,2"
style="fill:none;stroke:#ffffff;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;opacity:0.50000000000000000;filter:url(#filter3766)"
id="path3786" />
<path
id="path3766"
style="fill:none;stroke:url(#linearGradient3767);stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 8,2 18,12 M 8,12 18,2" />
</svg>
......@@ -5,13 +5,14 @@
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
version="1.1"
id="svg2"
inkscape:version="0.48.1 "
inkscape:version="0.48.4 r9939"
sodipodi:docname="change_entry_orient.svg">
<metadata
id="metadata53">
......@@ -21,7 +22,7 @@
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
......@@ -34,12 +35,12 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="968"
inkscape:window-width="1920"
inkscape:window-height="1033"
id="namedview51"
showgrid="false"
inkscape:zoom="9.7321397"
inkscape:cx="8.2414503"
inkscape:cx="-8.507179"
inkscape:cy="26.142558"
inkscape:window-x="-4"
inkscape:window-y="-4"
......@@ -176,56 +177,137 @@
stdDeviation="0.77409508"
id="feGaussianBlur3842-2" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#a"
id="linearGradient5269"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.22841461,-0.21205346,-0.25385384,0.25152007,67.875075,27.602468)"
x1="113.16"
y1="25.785999"
x2="39.268002"
y2="25.785999" />
<linearGradient
id="a">
<stop
stop-color="#0968ef"
offset="0"
id="stop5191" />
<stop
stop-color="#aecffc"
offset="1"
id="stop5193" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#w"
id="linearGradient5262"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.14240515,0.2794743,0.32350927,-0.14654455,-14.926968,6.234846)"
x1="113.16"
y1="25.785999"
x2="39.268002"
y2="25.785999" />
<linearGradient
id="w"
y2="25.785999"
gradientUnits="userSpaceOnUse"
x2="39.268002"
gradientTransform="matrix(0.41788,0.8215,0.94932,-0.43076,-50.048,24.308)"
y1="25.785999"
x1="113.16">
<stop
stop-color="#0968ef"
offset="0"
id="stop5225" />
<stop
stop-color="#aecffc"
offset="1"
id="stop5227" />
</linearGradient>
<linearGradient
y2="25.785999"
x2="39.268002"
y1="25.785999"
x1="113.16"
gradientTransform="matrix(0.14240515,0.2794743,0.32350927,-0.14654455,-14.926968,6.234846)"
gradientUnits="userSpaceOnUse"
id="linearGradient5306"
xlink:href="#w"
inkscape:collect="always" />
<linearGradient
inkscape:collect="always"
xlink:href="#w"
id="linearGradient5356"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.1544415,0.28350851,0.35085289,-0.14865992,-18.171522,8.2663206)"
x1="113.16"
y1="25.785999"
x2="39.268002"
y2="25.785999" />
<linearGradient
inkscape:collect="always"
xlink:href="#a"
id="linearGradient5359"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.24772065,-0.21511445,-0.27531005,0.25515076,71.629107,29.942384)"
x1="113.16"
y1="25.785999"
x2="39.268002"
y2="25.785999" />
</defs>
<g
id="g3890"
transform="translate(34.422029,34.730287)">
<g
id="g35-5"
transform="matrix(0,2.9379,-2.1996,0,8.491481,-32.124217)">
<rect
style="fill-opacity:0"
id="rect37-5"
x="0"
y="0"
width="16"
height="16" />
</g>
<path
transform="matrix(0,0.91790986,-0.91920821,0,11.841319,-33.997331)"
inkscape:connector-curvature="0"
id="path3800-8-1"
d="m 7.8690809,3.4934004 41.1855461,40.6965116 0,0"
style="opacity:0.26068373;fill:none;stroke:#37574d;stroke-width:6.38199997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3840-8)" />
<path
inkscape:connector-curvature="0"
id="path3800-7"
d="m 8.5224219,-31.309913 -38.1711689,38.464589 0,0"
style="opacity:0.57692309;fill:none;stroke:#0539b2;stroke-width:5.9735837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
transform="matrix(0,2.9379,-2.1996,0,42.91351,2.60607)"
id="g35-5">
<rect
height="16"
width="16"
y="0"
x="0"
id="rect37-5"
style="fill-opacity:0" />
</g>
<path
style="opacity:0.26068373;fill:none;stroke:#37574d;stroke-width:6.38199997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3840-8)"
d="m 7.8690809,3.4934004 41.1855461,40.6965116 0,0"
id="path3800-8-1"
inkscape:connector-curvature="0"
transform="matrix(0,0.91790986,-0.91920821,0,46.263348,0.732956)" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient5359);fill-rule:evenodd"
id="path5239"
d="m 33.53467,10.33595 11.330688,0.476184 0.669278,2.389995 -3.8141,0.479704 c 9.277651,8.056611 5.785458,17.035015 0.276844,22.356277 l -3.757555,-2.906799 c 4.080201,-4.366342 7.546153,-8.910415 -0.636423,-16.015901 l -0.835036,4.213112 -2.792572,-0.726699 z" />
<path
style="opacity:0.52083333;fill:#000000;fill-opacity:1;stroke:#991d1d;stroke-width:5.9735837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 42.327937,3.728631 4.156768,42.19322 l 0,0"
id="path3800-7"
inkscape:connector-curvature="0" />
<g
id="g3844">
<g
id="g35"
transform="matrix(2.9379,0,0,2.1996,2.1067,3.2221)">
<rect
id="rect37"
x="0"
y="0"
width="16"
height="16"
fill-opacity="0" />
</g>
<path
transform="matrix(0.91790986,0,0,0.91920821,0.23358571,-0.12773803)"
inkscape:connector-curvature="0"
id="path3800-8"
d="m 7.8690809,3.4934004 41.1855461,40.6965116 0,0"
style="opacity:0.26068373;fill:none;stroke:#37574d;stroke-width:6.38199997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3840)" />
<path
inkscape:connector-curvature="0"
id="path3800"
d="m 2.9210036,3.1911591 38.4645894,38.1711689 0,0"
style="fill:none;stroke:#73ce06;stroke-width:5.9735837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
transform="matrix(2.9379,0,0,2.1996,2.8259663,3.3248523)"
id="g35">
<rect
style="fill-opacity:0"
height="16"
width="16"
y="0"
x="0"
id="rect37" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient5356);fill-rule:evenodd"
id="path5249"
d="M 10.463058,39.219997 0.00384922,35.037945 0.24246703,32.574716 3.9974341,33.382448 C -1.7869153,22.76477 4.7456186,15.491215 11.84369,12.31378 l 2.471883,3.966358 C 8.9037643,19.032155 4.0038279,22.153579 9.1051871,31.51816 l 2.3112269,-3.677845 2.35687,1.602486 z" />
<path
style="opacity:0.26068373;fill:none;stroke:#37574d;stroke-width:6.38199997;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3840)"
d="m 7.8690809,3.4934004 41.1855461,40.6965116 0,0"
id="path3800-8"
inkscape:connector-curvature="0"
transform="matrix(0.91790986,0,0,0.91920821,0.952852,-0.0249857)" />
<path
style="fill:none;stroke:#01a706;stroke-width:5.9735837;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 3.6402699,3.2939114 42.104859,41.46508 l 0,0"
id="path3800"
inkscape:connector-curvature="0" />
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="contrast_mode.svg">
<metadata
id="metadata40">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="744"
id="namedview38"
showgrid="true"
inkscape:snap-to-guides="false"
inkscape:snap-grids="true"
inkscape:zoom="22.961538"
inkscape:cx="20.424858"
inkscape:cy="13.471585"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
showguides="true"
inkscape:guide-bbox="true">
<inkscape:grid
type="xygrid"
id="grid3017"
empspacing="2"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
spacingx="0.5px"
spacingy="0.5px" />
</sodipodi:namedview>
<defs
id="defs4">
<filter
id="c"
height="1.3651"
width="1.2097"
color-interpolation-filters="sRGB"
y="-0.18257"
x="-0.10484">
<feGaussianBlur
stdDeviation="1.5978799"
id="feGaussianBlur7" />
</filter>
<filter
id="d"
height="1.4696"
width="1.4809999"
color-interpolation-filters="sRGB"
y="-0.23481999"
x="-0.24049">
<feGaussianBlur
stdDeviation="1.5978799"
id="feGaussianBlur10" />
</filter>
</defs>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3960"
style="fill:none;stroke:#808080;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 17.5,8.5 6.5,0" />
<path
style="fill:#d40000;fill-opacity:1;stroke:none"
d="m 11,10 5.5,0 3,-3 -8.5,0 z"
id="path3958"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
d="M 11,8.5 9,3.5"
style="fill:none;stroke:#d40000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3006"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
id="path2990"
style="fill:none;stroke:#008000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="M 13.5,13.5 7,13.5 2.5,3.5 m 11,10 5.5,0 4.5,10"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
<path
d="M 8.5,18.5 2,18.5"
style="fill:none;stroke:#d40000;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3962"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path3964"
d="m 15,17 -5.5,0 -3,3 8.5,0 z"
style="fill:#808080;fill-opacity:1;stroke:none" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path3966"
style="fill:none;stroke:#808080;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 15,18.5 2,5" />
<path
style="fill:none;stroke:#999999;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 1.5,24.5 23,-23"
id="path4065"
inkscape:connector-curvature="0" />
</svg>
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
viewBox="0 0 26 26"
id="svg2"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="gerber_open_dcode_file.svg">
<metadata
id="metadata41">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1600"
inkscape:window-height="849"
id="namedview39"
showgrid="true"
inkscape:snap-grids="false"
inkscape:snap-to-guides="false"
inkscape:zoom="23.730769"
inkscape:cx="11.025982"
inkscape:cy="9.6288493"
inkscape:window-x="0"
inkscape:window-y="29"
inkscape:window-maximized="1"
inkscape:current-layer="svg2">
<inkscape:grid
type="xygrid"
id="grid2998"
empspacing="1"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<defs
id="defs4">
<radialGradient
id="a"
gradientUnits="userSpaceOnUse"
cy="9.3410997"
cx="38.659"
r="8.3416996">
<stop
stop-color="#fff"
offset="0"
id="stop7" />
<stop
stop-color="#fefede"
stop-opacity=".91837"
offset=".25"
id="stop9" />
<stop
stop-color="#f5f328"
offset=".5"
id="stop11" />
<stop
stop-color="#f5f32d"
stop-opacity=".12234"
offset="1"
id="stop13" />
</radialGradient>
</defs>
<g
transform="matrix(0.5260448,0,0,0.50312091,-0.15999664,-0.35963976)"
id="g15"
style="stroke:#000000;stroke-width:0.75">
<polygon
points="49.423,27.934 25.213,42.458 1.018,26.902 25.224,12.379 "
id="polygon17"
style="fill:#bcbec0" />
<polygon
points="49.241,24.649 25.036,39.169 0.837,23.615 25.042,9.094 "
id="polygon19"
style="fill:#808284" />
<polygon
points="49.423,20.714 25.213,35.238 1.018,19.684 25.224,5.16 "
id="polygon21"
style="fill:#0071bc" />
<polygon
points="25.217,30.787 1.018,15.232 25.224,0.711 49.423,16.266 "
id="polygon23"
style="fill:#008fd4"
transform="matrix(1.0001441,0,0,0.98075002,-0.00363311,0.59636678)" />
</g>
<g
transform="matrix(0.52181772,0,0,0.61984761,3.0209882,-16.160143)"
id="g31">
<rect
height="15.76275"
width="44.454456"
y="52.359386"
x="-5.4629998"
id="rect33"
style="fill:#ffffff;fill-rule:evenodd" />
<g
transform="scale(0.87703798,1.1402015)"
style="font-size:61.8630867px;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#4d4d4d;font-family:Sans"
id="text35">
<path
d="m 5.9902763,58.527214 c -0.8031356,0.390408 -1.6369333,0.683213 -2.5013955,0.878417 -0.8644828,0.195203 -1.7568416,0.292805 -2.67707886,0.292805 -2.08031894,0 -3.72839394,-0.580033 -4.94423004,-1.740101 -1.2158414,-1.165642 -1.8237608,-2.744002 -1.8237599,-4.735083 -9e-7,-2.013379 0.619073,-3.597315 1.8572234,-4.751815 1.2381451,-1.154478 2.9336266,-1.731723 5.08644984,-1.731736 0.83100126,1.3e-5 1.62575826,0.07809 2.38427336,0.234245 0.764072,0.156175 1.4835362,0.387631 2.1583948,0.694367 l 0,2.585054 C 4.8329858,49.857392 4.1386192,49.561798 3.4470514,49.366585 2.7610404,49.171392 2.072251,49.07379 1.3806812,49.073779 c -1.28277386,1.1e-5 -2.27273432,0.359743 -2.9698843,1.079198 -0.6915833,0.713896 -1.0373723,1.73732 -1.0373681,3.070275 -4.2e-6,1.321812 0.3346303,2.342448 1.0039046,3.061909 0.66926382,0.719467 1.62018358,1.079199 2.8527621,1.079197 0.3346265,2e-6 0.6441634,-0.01952 0.9286117,-0.05856 0.2900076,-0.04462 0.5493494,-0.111543 0.7780261,-0.200781 l 0,-2.426103 -1.96597981,0 0,-2.158395 5.01952281,0 0,6.006696"
style="font-size:17.1333046px;font-weight:bold;letter-spacing:0.05271786px;fill:#4d4d4d"
id="path3001"
inkscape:connector-curvature="0" />
<path
d="m 8.8706587,46.96558 8.6921403,0 0,2.434468 -5.47128,0 0,2.325713 5.145011,0 0,2.434468 -5.145011,0 0,2.861128 5.655329,0 0,2.434469 -8.8761893,0 0,-12.490246"
style="font-size:17.1333046px;font-weight:bold;letter-spacing:0.05271786px;fill:#4d4d4d"
id="path3003"
inkscape:connector-curvature="0" />
<path
d="m 25.211729,52.503787 c 0.67484,7e-6 1.157271,-0.125481 1.447295,-0.376465 0.295587,-0.250968 0.443384,-0.663684 0.443392,-1.238148 -8e-6,-0.568871 -0.147805,-0.976009 -0.443392,-1.221418 C 26.369,49.422367 25.886569,49.299668 25.211729,49.299658 l -1.355271,0 0,3.204129 1.355271,0 m -1.355271,2.225321 0,4.726718 -3.220861,0 0,-12.490246 4.919132,0 c 1.64528,1.2e-5 2.849965,0.276086 3.614057,0.828221 0.769649,0.552159 1.154479,1.424997 1.15449,2.618518 -1.1e-5,0.825441 -0.200792,1.503076 -0.602343,2.032907 -0.395994,0.529845 -0.995548,0.920252 -1.798662,1.171222 0.440593,0.100396 0.833789,0.329063 1.179588,0.686001 0.351356,0.351371 0.705511,0.886787 1.062466,1.606247 l 1.748467,3.54713 -3.430008,0 -1.522588,-3.103738 C 26.65344,55.72744 26.341114,55.300781 26.023218,55.072109 25.710886,54.843447 25.292593,54.729113 24.768338,54.729108 l -0.91188,0"
style="font-size:17.1333046px;font-weight:bold;letter-spacing:0.05271786px;fill:#4d4d4d"
id="path3005"
inkscape:connector-curvature="0" />
<path
d="m 38.875718,51.801053 c 0.507522,8e-6 0.892352,-0.111537 1.15449,-0.334634 0.262123,-0.223082 0.393188,-0.552139 0.393196,-0.987173 -8e-6,-0.429439 -0.131073,-0.755708 -0.393196,-0.978807 -0.262138,-0.228657 -0.646968,-0.342991 -1.15449,-0.343001 l -1.781931,0 0,2.643615 1.781931,0 m 0.108756,5.462915 c 0.646953,2e-6 1.132173,-0.136641 1.455662,-0.409928 0.329049,-0.273282 0.493577,-0.685998 0.493586,-1.238149 -9e-6,-0.540989 -0.161749,-0.945339 -0.485221,-1.213052 -0.323488,-0.273279 -0.811496,-0.409922 -1.464027,-0.409927 l -1.890687,0 0,3.271056 1.890687,0 m 2.994982,-4.492473 c 0.691568,0.200787 1.226984,0.571674 1.606247,1.11266 0.379241,0.540999 0.568868,1.20469 0.56888,1.991078 -1.2e-5,1.204688 -0.407151,2.102624 -1.221418,2.69381 -0.814288,0.591189 -2.052435,0.886783 -3.714447,0.886783 l -5.345791,0 0,-12.490246 4.835473,0 c 1.734516,1.2e-5 2.989396,0.262143 3.764642,0.786392 0.780804,0.524272 1.171211,1.363647 1.171222,2.518127 -1.1e-5,0.607929 -0.142231,1.126612 -0.426659,1.556052 -0.28445,0.423878 -0.697166,0.738992 -1.238149,0.945344"
style="font-size:17.1333046px;font-weight:bold;letter-spacing:0.05271786px;fill:#4d4d4d"
id="path3007"
inkscape:connector-curvature="0" />
<path
d="m 47.152087,56.218234 3.011714,0 0,3.237592 -3.011714,0 0,-3.237592"
style="font-size:17.1333046px;font-weight:bold;letter-spacing:0.05271786px;fill:#4d4d4d"
id="path3009"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>
This diff is collapsed.
This diff is collapsed.
<svg xmlns="http://www.w3.org/2000/svg" height="48" width="48" version="1.1" viewBox="0 0 48 48">
<defs>
<filter id="a" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="0.56527242"/>
</filter>
</defs>
<path opacity=".45703" d="m12.092 7.6156-4.45 12.346h3.3375l1.1125-4.1154h4.45l1.1125 4.1154h3.3375l-4.45-12.346h-4.45zm2.225 2.0577 1.1125 4.1154h-2.225l1.112-4.1157z" fill-rule="evenodd" transform="matrix(1.3239,0,0,1.285,3.8128,-4.5683)" filter="url(#a)"/>
<path opacity=".45703" d="m19.879 28.193 0.08706-5.9593 8.8129 9.0458-8.9 9.2597v-6.1731c-7.7875 0-12.15-4.1154-12.15-12.346h6.5879c0 4.1154 2.225 6.1731 5.5625 6.1731z" fill-rule="evenodd" transform="matrix(1.0832,0,0,1.0385,9.1922,3.3883)" filter="url(#a)"/>
<path opacity=".45703" d="m20.992 29.222v-3.0866l5.5625 5.1443-5.5625 6.1731v-4.1154c-4.45 0-11.125-1.0289-11.125-9.2597h3.3375c0 4.1154 4.45 5.1443 7.7875 5.1443z" fill-rule="evenodd" transform="matrix(1.0832,0,0,1.0385,9.1922,3.3883)" filter="url(#a)"/>
<path fill-rule="evenodd" fill="#695f00" d="m16.191 2.502-5.891 15.865h4.4186l1.4729-5.2885h5.8915l1.4729 5.2885h4.4186l-5.896-15.862h-5.892zm2.9457 2.6442 1.4729 5.2885h-2.9457l1.4729-5.2885z"/>
<path fill-rule="evenodd" d="m27.756 30.471 0.09431-6.1885 9.5463 9.3938-9.6406 9.6159v-6.4106c-8.4355 0-13.162-4.2737-13.162-12.821h7.1362c0 4.2737 2.4102 6.4106 6.0254 6.4106z"/>
<path fill-rule="evenodd" fill="#00bd00" d="m28.961 31.539v-3.2053l6.0254 5.3422-6.0254 6.4106v-4.2737c-4.8203 0-12.051-1.0684-12.051-9.6159h3.6152c0 4.2737 4.8203 5.3422 8.4355 5.3422z"/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="48"
width="48"
version="1.1"
viewBox="0 0 48 48"
id="svg2"
inkscape:version="0.48.4 r9939"
sodipodi:docname="gl_change.svg">
<metadata
id="metadata23">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="762"
inkscape:window-height="621"
id="namedview21"
showgrid="false"
inkscape:zoom="9.116047"
inkscape:cx="27.806067"
inkscape:cy="11.725721"
inkscape:window-x="243"
inkscape:window-y="42"
inkscape:window-maximized="0"
inkscape:current-layer="svg2" />
<defs
id="defs4">
<filter
id="a"
color-interpolation-filters="sRGB">
<feGaussianBlur
stdDeviation="0.56527242"
id="feGaussianBlur7" />
</filter>
<filter
inkscape:collect="always"
id="filter3774"
x="-0.070598749"
width="1.1411975"
y="-0.36210326"
height="1.7242065">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="0.73080736"
id="feGaussianBlur3776" />
</filter>
</defs>
<g
id="g3005"
transform="translate(-5.112097,-0.13937584)">
<path
id="path9"
transform="matrix(1.3239,0,0,1.285,3.8128,-4.5683)"
d="m 12.092,7.6156 -4.45,12.346 h 3.3375 l 1.1125,-4.1154 h 4.45 l 1.1125,4.1154 h 3.3375 l -4.45,-12.346 h -4.45 z m 2.225,2.0577 1.1125,4.1154 h -2.225 l 1.112,-4.1157 z"
inkscape:connector-curvature="0"
style="opacity:0.45702999;fill-rule:evenodd;filter:url(#a)" />
<path
id="path15"
d="M 16.191,2.502 10.3,18.367 h 4.4186 l 1.4729,-5.2885 h 5.8915 l 1.4729,5.2885 h 4.4186 L 22.0785,2.505 h -5.892 z m 2.9457,2.6442 1.4729,5.2885 h -2.9457 l 1.4729,-5.2885 z"
inkscape:connector-curvature="0"
style="fill:#695f00;fill-rule:evenodd" />
</g>
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#555555;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS;filter:url(#filter3774)"
x="20.436575"
y="44.546696"
id="text3038-1"
sodipodi:linespacing="125%"
transform="matrix(1,0,0,0.98603477,-0.54848331,-0.53478697)"
inkscape:transform-center-x="6.0333168"
inkscape:transform-center-y="6.3624068"><tspan
sodipodi:role="line"
id="tspan3040-7"
x="20.436575"
y="44.546696"
style="font-size:40px;fill:#555555;fill-opacity:1">...</tspan></text>
<text
xml:space="preserve"
style="font-size:39.71971512px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Comic Sans MS;-inkscape-font-specification:Comic Sans MS"
x="18.517761"
y="42.993546"
id="text3038"
sodipodi:linespacing="125%"
transform="scale(1.0070566,0.99299284)"><tspan
sodipodi:role="line"
id="tspan3040"
x="18.517761"
y="42.993546"
style="font-size:39.71971512px">...</tspan></text>
<g
id="g3009"
transform="translate(-13.222666,-3.8370555)">
<path
id="path11"
transform="matrix(1.0832,0,0,1.0385,9.1922,3.3883)"
d="m 19.879,28.193 0.08706,-5.9593 8.8129,9.0458 -8.9,9.2597 v -6.1731 c -7.7875,0 -12.15,-4.1154 -12.15,-12.346 h 6.5879 c 0,4.1154 2.225,6.1731 5.5625,6.1731 z"
inkscape:connector-curvature="0"
style="opacity:0.45702999;fill-rule:evenodd;filter:url(#a)" />
<g
id="g3000">
<path
d="m 20.992,29.222 v -3.0866 l 5.5625,5.1443 -5.5625,6.1731 v -4.1154 c -4.45,0 -11.125,-1.0289 -11.125,-9.2597 h 3.3375 c 0,4.1154 4.45,5.1443 7.7875,5.1443 z"
transform="matrix(1.0832,0,0,1.0385,9.1922,3.3883)"
id="path13"
inkscape:connector-curvature="0"
style="opacity:0.45702999;fill-rule:evenodd;filter:url(#a)" />
<path
d="m 27.756,30.471 0.09431,-6.1885 9.5463,9.3938 -9.6406,9.6159 v -6.4106 c -8.4355,0 -13.162,-4.2737 -13.162,-12.821 h 7.1362 c 0,4.2737 2.4102,6.4106 6.0254,6.4106 z"
id="path17"
inkscape:connector-curvature="0"
style="fill-rule:evenodd" />
<path
d="m 28.961,31.539 v -3.2053 l 6.0254,5.3422 -6.0254,6.4106 v -4.2737 c -4.8203,0 -12.051,-1.0684 -12.051,-9.6159 h 3.6152 c 0,4.2737 4.8203,5.3422 8.4355,5.3422 z"
id="path19"
inkscape:connector-curvature="0"
style="fill:#00bd00;fill-rule:evenodd" />
</g>
</g>
</svg>
......@@ -14,7 +14,7 @@
width="26"
height="26"
id="svg2"
inkscape:version="0.48.3.1 r9886"
inkscape:version="0.48.4 r9939"
sodipodi:docname="library_table.svg">
<metadata
id="metadata166">
......@@ -37,15 +37,15 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1600"
inkscape:window-height="849"
inkscape:window-width="1920"
inkscape:window-height="1033"
id="namedview164"
showgrid="true"
inkscape:zoom="13.906433"
inkscape:cx="-4.4802673"
inkscape:cy="18.405854"
inkscape:window-x="0"
inkscape:window-y="29"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:snap-to-guides="false"
......@@ -554,16 +554,9 @@
id="path95"
inkscape:connector-curvature="0" />
</g>
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none"
id="rect3143"
width="16.179562"
height="13.087469"
x="9.8515558"
y="8.6698914" />
<g
id="g4431"
transform="matrix(0.4598514,0,0,0.4598514,-17.774359,-2.6879261)">
transform="matrix(0.55787064,0,0,0.54301839,-27.23632,-8.0655491)">
<path
inkscape:connector-curvature="0"
style="color:#000000;fill:url(#linearGradient4444);stroke:#676b6a;stroke-width:0.8774851;stroke-opacity:1"
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
......@@ -7,103 +9,112 @@
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="26"
width="26"
version="1.1"
height="26"
id="svg2"
inkscape:version="0.48.1 "
sodipodi:docname="3d_use_copper_thickness.svg">
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="Новый документ 1">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="15.365974"
inkscape:cx="7.7906124"
inkscape:cy="9.6975944"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
inkscape:showpageshadow="false"
inkscape:window-width="1366"
inkscape:window-height="744"
inkscape:window-x="0"
inkscape:window-y="24"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid2985"
empspacing="2"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata26">
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="968"
id="namedview24"
showgrid="false"
inkscape:zoom="32.120513"
inkscape:cx="12.060967"
inkscape:cy="11.98812"
inkscape:window-x="-4"
inkscape:window-y="-4"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
showguides="true"
inkscape:guide-bbox="true"
showborder="true">
<sodipodi:guide
orientation="0,1"
position="45.626168,30.620228"
id="guide3799" />
</sodipodi:namedview>
<defs
id="defs4">
<filter
id="c"
height="1.212"
width="1.059"
color-interpolation-filters="sRGB"
y="-0.10598"
x="-0.029501">
<feGaussianBlur
stdDeviation="0.52522041"
id="feGaussianBlur7" />
</filter>
<filter
id="d"
height="1.212"
width="1.059"
color-interpolation-filters="sRGB"
y="-0.10598"
x="-0.029501">
<feGaussianBlur
stdDeviation="0.52522041"
id="feGaussianBlur10" />
</filter>
</defs>
<g
id="g3879"
transform="matrix(1.079734,0,0,0.8805836,0.04176086,4.8713303)">
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-1026.3622)">
<path
style="fill:#1c4d00;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path22-1-0"
d="M 0.00743077,13.573317 H 18.058057 l 6.017018,10.471372 H 6.0244485 L 0.00816177,13.573317 z" />
style="fill:#49a749;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M 0 0 L 0 26 L 26 26 L 26 0 L 0 0 z M 12.5 14 C 16.642136 14 20 15.790861 20 18 C 20 20.209139 16.642136 22 12.5 22 C 8.3578644 22 5 20.209139 5 18 C 5 15.790861 8.3578644 14 12.5 14 z "
transform="translate(0,1026.3622)"
id="path3777" />
<path
style="fill:#72ff06;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
id="path22-9"
d="M -0.01750581,11.199955 H 18.033121 l 6.017018,10.471372 H 5.999512 L -0.01677418,11.199955 z" />
</g>
<g
id="g3873"
transform="matrix(1.0749484,0,0,0.90644265,-0.0011,1.998042)">
sodipodi:type="arc"
style="fill:none;stroke:#004e00;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path3815"
sodipodi:cx="9"
sodipodi:cy="10"
sodipodi:rx="7.5"
sodipodi:ry="5"
d="m 16.5,10 a 7.5,5 0 1 1 -15,0 7.5,5 0 1 1 15,0 z"
transform="translate(3.5,1034.3622)" />
<rect
style="fill:#004e00;fill-opacity:1;stroke:none"
id="rect3764"
width="2.0000002"
height="2.9994934"
x="3"
y="1041.3622"
rx="0"
ry="0" />
<rect
ry="0"
rx="0"
y="1041.3622"
x="20"
height="2.9992831"
width="2.0000036"
id="rect3766"
style="fill:#004e00;fill-opacity:1;stroke:none" />
<path
style="fill:#740000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
style="fill:none;stroke:#004e00;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 15.5,1040.3622 6,-6.5 4.5,0"
id="path3775"
inkscape:connector-curvature="0"
id="path22-1"
d="M 0.03961332,2.3524334 H 18.09024 L 24.107258,12.823805 H 6.056631 L 0.04034432,2.3524334 z" />
sodipodi:nodetypes="ccc" />
<path
transform="translate(3.5,1031.3622)"
d="m 16.5,10 a 7.5,5 0 1 1 -15,0 7.5,5 0 1 1 15,0 z"
sodipodi:ry="5"
sodipodi:rx="7.5"
sodipodi:cy="10"
sodipodi:cx="9"
id="path3762"
style="fill:none;stroke:#008000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
sodipodi:type="arc" />
<path
style="fill:#ff0606;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path22"
d="M 0.01467674,-0.02092885 H 18.065304 L 24.082322,10.450443 H 6.0316946 L 0.01540837,-0.02092885 z" />
id="path3002"
d="m 15,1037.3622 6,-6.5 5,0"
style="fill:none;stroke:#008000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
</g>
</svg>
This diff is collapsed.
This diff is collapsed.
......@@ -200,6 +200,7 @@ set( COMMON_SRCS
systemdirsappend.cpp
trigo.cpp
utf8.cpp
validators.cpp
wildcards_and_files_ext.cpp
worksheet.cpp
wxwineda.cpp
......
This diff is collapsed.
......@@ -83,7 +83,7 @@ std::string Double2Str( double aValue )
len = sprintf( buf, "%.16g", aValue );
}
return std::string( buf, len );;
return std::string( buf, len );
}
......
This diff is collapsed.
This diff is collapsed.
......@@ -197,7 +197,7 @@ bool BITMAP_BASE::LoadData( LINE_READER& aLine, wxString& aErrorMsg )
}
EDA_RECT BITMAP_BASE::GetBoundingBox() const
const EDA_RECT BITMAP_BASE::GetBoundingBox() const
{
EDA_RECT rect;
......
......@@ -24,6 +24,7 @@
#include <common.h>
#include <class_page_info.h>
#include <macros.h>
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment