Commit ddedd1ff authored by Fabio Varesano's avatar Fabio Varesano Committed by Wayne Stambaugh
Browse files

Commit Fabrizio's PNG image improvement patch with minor fixes.

* Added checks for Inkscape and pngcrush when MAINTAIN_PNG mode is enabled.
* Rebuild PNGs with transparent background.
parent 1d696bf6
Loading
Loading
Loading
Loading
+61 −10
Original line number Original line Diff line number Diff line
@@ -49,8 +49,9 @@
# lower case is used for local variables, uppercase for global variables
# lower case is used for local variables, uppercase for global variables




#if( 0 )
# If this file is used as part of the Kicad build, disable the stand alone build mode.
if( 1 )
if( NOT DEFINED CMAKE_PROJECT_NAME )

    # stand alone debugging
    # stand alone debugging
    project( kicad_for_bitmaps )
    project( kicad_for_bitmaps )


@@ -59,9 +60,10 @@ if( 1 )
    include_directories( /svn/kicad/work/include )
    include_directories( /svn/kicad/work/include )


    set( CMAKE_MODULE_PATH /svn/kicad/work/CMakeModules )
    set( CMAKE_MODULE_PATH /svn/kicad/work/CMakeModules )

    add_definitions( -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread )
    add_definitions( -I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread )


endif()
endif( NOT DEFINED CMAKE_PROJECT_NAME )


option( MAINTAIN_PNGS
option( MAINTAIN_PNGS
        "Set to true if you are a PNG maintainer and have the required tools given in the bitmaps_png/CMakeLists.txt file (default OFF)."
        "Set to true if you are a PNG maintainer and have the required tools given in the bitmaps_png/CMakeLists.txt file (default OFF)."
@@ -299,7 +301,7 @@ set( BMAPS_MID
    module_filtered_list
    module_filtered_list
    module_full_list
    module_full_list
    module_options
    module_options
#    module_ratsnest
    module_ratsnest
    module
    module
    morgan1
    morgan1
    morgan2
    morgan2
@@ -508,6 +510,8 @@ set( BMAPS_BIG
    icon_kicad
    icon_kicad
    icon_modedit
    icon_modedit
    icon_pcbnew
    icon_pcbnew
    icon_bitmap2component
    icon_pcbcalculator
    libedit_icon
    libedit_icon
    viewlibs_icon
    viewlibs_icon
    )
    )
@@ -526,7 +530,7 @@ function( svg2png inputFile outFile pngWidth pngHeight )


    add_custom_command(
    add_custom_command(
        OUTPUT ${outFile}
        OUTPUT ${outFile}
        COMMAND inkscape -f ${inputFile} -e ${outFile} -w ${pngWidth} -h ${pngHeight} > ${TMP_DIR}/${bmn}.inkscape.log
        COMMAND ${Inkscape_EXECUTABLE} -f ${inputFile} -e ${outFile} -w ${pngWidth} -h ${pngHeight} > ${TMP_DIR}/${bmn}.inkscape.log
        DEPENDS ${inputFile}
        DEPENDS ${inputFile}
        COMMENT "Creating ${pngHeight} pixel tall ${outFile}"
        COMMENT "Creating ${pngHeight} pixel tall ${outFile}"
        )
        )
@@ -543,10 +547,13 @@ function( png2png inputFile bkgndFile outFile )
        OUTPUT  ${outFile}
        OUTPUT  ${outFile}


        # blend in the unified background into the png before converting to cpp.
        # blend in the unified background into the png before converting to cpp.
        COMMAND composite -compose Over ${inputFile} ${bkgndFile} -alpha set ${TMP_DIR}/scratch.png
#        COMMAND ${COMPOSITE_PROG} -compose Over ${inputFile} ${bkgndFile} -alpha set ${TMP_DIR}/scratch.png


        # remove any extraneous tEXt records
        # remove any extraneous tEXt records
        COMMAND pngcrush -rem alla ${TMP_DIR}/scratch.png ${outFile} > ${TMP_DIR}/${bmn}.pngcrush.log
#        COMMAND ${pngcrush_EXECUTABLE} -rem alla ${TMP_DIR}/scratch.png ${outFile} > ${TMP_DIR}/${bmn}.pngcrush.log

        # pngcrush all icons without background.
        COMMAND pngcrush -rem alla ${inputFile} ${outFile} > ${TMP_DIR}/${bmn}.pngcrush.log


        DEPENDS ${inputFile} ${bkgndFile}
        DEPENDS ${inputFile} ${bkgndFile}


@@ -608,6 +615,50 @@ endfunction()


if( MAINTAIN_PNGS )
if( MAINTAIN_PNGS )


    # Inkscape is required to convert SVG files to PNG files.
    set( Inkscape_FOUND FALSE )

    if( NOT Inkscape_FOUND )
        find_program( Inkscape_EXECUTABLE inkscape
                      PATHS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Inkscape;InstallDir]"
                      DOC "Inkscape vector drawing program." )

        if( NOT Inkscape_EXECUTABLE )
            message( FATAL_ERROR "Could not find the Inkscape vector drawing program." )
        else( NOT Inkscape_EXECUTABLE )
            set( Inkscape_FOUND TRUE )
            set( Inkscape_EXECUTABLE ${Inkscape_EXECUTABLE}
                 CACHE FILEPATH "Path and file name of the Inkscape program." )
            message( STATUS "The Inkscape vector drawing program found." )
        endif( NOT Inkscape_EXECUTABLE )
    endif( NOT Inkscape_FOUND )

    # pngcrush is required to reduce the size of the converted PNG files.
    set( pngcrush_FOUND FALSE )

    if( NOT pngcrush_FOUND )
        find_program( pngcrush_EXECUTABLE pngcrush DOC "The PNG size reduction program." )

        if( NOT pngcrush_EXECUTABLE )
            message( FATAL_ERROR "Could not find the pngcrush PNG size reduction program." )
        else( NOT pngcrush_EXECUTABLE )
            set( pngcrush_FOUND TRUE )
            set( pngcrush_EXECUTABLE ${pngcrush_EXECUTABLE}
                 CACHE FILEPATH "Path and file name of the pngcrush program." )
            message( STATUS "The pngcrush PNG size reduction program found." )
        endif( NOT pngcrush_EXECUTABLE )
    endif( NOT pngcrush_FOUND )

    # composite is required to convert a basic PNG to one with a composited background
    # image behind it
#    find_program( COMPOSITE_PROG composite DOC "The image compositing program." )

#    if( NOT COMPOSITE_PROG )
#        message( FATAL_ERROR "Could not find the ImagMagik composite program." )
#    else( NOT COMPOSITE_PROG )
#        message( STATUS "The ImageMagick composite program found." )
#    endif( NOT COMPOSITE_PROG )

    # these 2 cmake commands for each desired bitmap size set, repeat as needed:
    # these 2 cmake commands for each desired bitmap size set, repeat as needed:
    bitmap_dir( 26 26 "${BMAPS_MID}" )
    bitmap_dir( 26 26 "${BMAPS_MID}" )


+64 −100
Original line number Original line Diff line number Diff line
@@ -8,91 +8,55 @@
static const char png[] = {
static const char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
 0xce, 0x00, 0x00, 0x02, 0xf5, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0xd6, 0x5f, 0x48, 0xdd,
 0x1a, 0x00, 0x07, 0xb2, 0x66, 0x2f, 0x00, 0x00, 0x05, 0x14, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7,
 0x75, 0x18, 0xc7, 0xf1, 0x97, 0xc7, 0x33, 0xe7, 0xbf, 0xa6, 0x62, 0xce, 0x70, 0x56, 0xec, 0xa2,
 0xa5, 0x96, 0x7d, 0x4c, 0x95, 0x55, 0x1c, 0xc7, 0x8f, 0x43, 0x59, 0x03, 0x13, 0xe3, 0x35, 0x33,
 0x45, 0x8c, 0x24, 0xc6, 0x72, 0xa9, 0x37, 0x06, 0x42, 0xc6, 0xa8, 0xd1, 0xb2, 0xb1, 0xe1, 0xaa,
 0x2d, 0xdb, 0xfc, 0xcb, 0x65, 0xda, 0x1a, 0x4e, 0xa6, 0xe6, 0xa6, 0xa0, 0x16, 0x33, 0x5d, 0xc2,
 0x11, 0x92, 0x64, 0x60, 0xc3, 0xad, 0x68, 0xb5, 0xca, 0xa2, 0x45, 0x36, 0x33, 0xb7, 0xd4, 0x8e,
 0x6c, 0x18, 0xa6, 0x94, 0x57, 0xae, 0xbc, 0x34, 0x30, 0x27, 0x8d, 0x12, 0x48, 0x5b, 0x88, 0x6d,
 0x5a, 0x50, 0x23, 0x06, 0x0d, 0x2a, 0xb0, 0xc6, 0xa2, 0x46, 0x17, 0x41, 0x45, 0x44, 0x5d, 0x77,
 0x3a, 0x85, 0xf1, 0x62, 0x0d, 0x19, 0xf2, 0xe2, 0x14, 0x1b, 0x09, 0x01, 0x92, 0x3a, 0x0b, 0x34,
 0x11, 0x04, 0x11, 0x41, 0x45, 0x10, 0xe4, 0xa2, 0x6d, 0xe2, 0xd3, 0x85, 0x3f, 0x39, 0x47, 0x73,
 0x60, 0x80, 0x4e, 0x60, 0xba, 0x54, 0xb8, 0xef, 0xbc, 0xdc, 0x7b, 0x41, 0xde, 0x0e, 0xe0, 0xf6,
 0xc7, 0x8d, 0x64, 0x57, 0x5d, 0x7c, 0xe1, 0xc7, 0x8f, 0xe7, 0xfb, 0x7b, 0xff, 0x9e, 0xe7, 0xf3,
 0xed, 0x77, 0x8e, 0xf7, 0xb9, 0x3c, 0xa0, 0x98, 0x4c, 0xb6, 0xcf, 0x9e, 0xfb, 0x3c, 0xe7, 0x70,
 0x7c, 0xbe, 0xcf, 0x57, 0x44, 0xb8, 0x1c, 0xcb, 0xff, 0xa0, 0xff, 0x0c, 0x42, 0x35, 0x7a, 0x71,
 0x3e, 0xe7, 0xf7, 0x72, 0x9e, 0x7b, 0x19, 0xa3, 0x3f, 0xce, 0xf9, 0x66, 0xa2, 0x7e, 0x84, 0xf3,
 0x8a, 0xd2, 0xc7, 0x39, 0xd0, 0xc5, 0xe4, 0x04, 0x13, 0x6f, 0x32, 0x9e, 0x21, 0x33, 0xc4, 0xf8,
 0xd1, 0x91, 0x91, 0x11, 0xa8, 0x19, 0x15, 0x8c, 0x8e, 0x4e, 0x60, 0x6c, 0x6c, 0xec, 0x45, 0x78,
 0x21, 0x32, 0x07, 0x18, 0x69, 0x40, 0xea, 0x92, 0x41, 0x48, 0x93, 0xfa, 0xa1, 0xfb, 0xbe, 0x1d,
 0x4c, 0xdc, 0x22, 0xc2, 0x85, 0x83, 0x0d, 0x0f, 0x0f, 0x07, 0x13, 0xe0, 0x0a, 0x9c, 0x4f, 0x60,
 0x71, 0x6a, 0xa2, 0x3f, 0xba, 0xb7, 0x35, 0x07, 0x35, 0xc1, 0x78, 0x30, 0x79, 0x81, 0x35, 0xf6,
 0x44, 0xf0, 0xf2, 0x72, 0x0d, 0x1b, 0x1a, 0x1a, 0xaa, 0x21, 0x30, 0xac, 0x86, 0x84, 0x53, 0xc9,
 0x0d, 0xc3, 0x3d, 0x3c, 0x5c, 0x85, 0x82, 0x8b, 0x05, 0x75, 0x36, 0x6d, 0xda, 0x18, 0xf1, 0xf5,
 0x47, 0xa6, 0x92, 0x4f, 0x12, 0x4f, 0x92, 0xeb, 0xd9, 0xe0, 0xc0, 0x40, 0xff, 0xe0, 0xe0, 0x20,
 0x1b, 0x11, 0x1f, 0x3d, 0x11, 0x71, 0x7c, 0x47, 0x34, 0xad, 0x2f, 0x0b, 0xba, 0x66, 0xc9, 0x9c,
 0x86, 0xd4, 0x90, 0xec, 0x65, 0xe5, 0x93, 0xa3, 0x66, 0x03, 0xfd, 0xfd, 0x7c, 0x60, 0x60, 0x00,
 0x63, 0x22, 0x0f, 0x30, 0x33, 0xcd, 0x91, 0x51, 0x6e, 0xad, 0xcc, 0x97, 0xe5, 0x3c, 0xa8, 0xa1,
 0x7a, 0x9d, 0x0e, 0x69, 0x69, 0x69, 0x08, 0x0c, 0x0c, 0x44, 0x4a, 0xf2, 0x8f, 0x48, 0x4f, 0xff,
 0xb6, 0xaa, 0x7c, 0xf6, 0xcc, 0xf1, 0x3d, 0x11, 0x13, 0xad, 0x71, 0xe6, 0xb9, 0xfa, 0xa8, 0x2d,
 0x1b, 0xbb, 0x76, 0x5d, 0xc5, 0x8e, 0xb0, 0x6a, 0x44, 0x44, 0x5c, 0x41, 0x74, 0xf4, 0x75, 0x1c,
 0x13, 0x54, 0xbd, 0x8f, 0xa3, 0x78, 0x89, 0x92, 0x41, 0xaa, 0x87, 0x69, 0x3d, 0xc1, 0x81, 0xef,
 0x38, 0x50, 0x43, 0x63, 0xff, 0xa0, 0xae, 0xce, 0x00, 0xda, 0xe0, 0xb4, 0xe4, 0xac, 0xff, 0xd1,
 0x18, 0x9f, 0x59, 0x08, 0x1c, 0xfe, 0x9e, 0xed, 0x2d, 0x28, 0x5a, 0x2a, 0xc3, 0x5c, 0x8d, 0x86,
 0x23, 0x6e, 0xb7, 0xdb, 0xf1, 0xd6, 0xc2, 0xb7, 0xa1, 0x09, 0x0f, 0xc5, 0x1f, 0xd9, 0x49, 0xd0,
 0xeb, 0xd6, 0xa4, 0xcf, 0xdf, 0xdf, 0x50, 0x18, 0x75, 0xe5, 0x66, 0xf0, 0x6d, 0x02, 0x39, 0x88,
 0x7c, 0x12, 0x00, 0xc6, 0x7c, 0x88, 0x2c, 0x22, 0xe7, 0x99, 0x2c, 0x5b, 0x56, 0x8c, 0xe3, 0xc7,
 0x26, 0x34, 0x60, 0x13, 0xb6, 0xa0, 0x95, 0xfa, 0x5e, 0x1e, 0x38, 0xbd, 0x10, 0xf8, 0xea, 0x1f,
 0x1b, 0x60, 0x32, 0x59, 0x65, 0x16, 0xfe, 0x2f, 0x72, 0xf6, 0xa8, 0xaf, 0x8f, 0x9f, 0xce, 0xc9,
 0xdc, 0x72, 0x3b, 0x4a, 0x17, 0xc3, 0x72, 0x41, 0xab, 0xd0, 0x86, 0x13, 0x18, 0xc5, 0x20, 0x9e,
 0xc1, 0xca, 0xf7, 0x97, 0x00, 0xf5, 0xbf, 0x00, 0x15, 0xdf, 0x02, 0x05, 0xa1, 0x58, 0xb9, 0xc8,
 0x41, 0x73, 0xb2, 0x31, 0x9d, 0xc4, 0xac, 0x4a, 0xfe, 0xfa, 0x0a, 0x5c, 0xcb, 0xae, 0x27, 0xc9,
 0x1d, 0x33, 0x66, 0x7c, 0x85, 0x59, 0xb3, 0xb2, 0x69, 0xe1, 0xec, 0x29, 0x85, 0xee, 0xee, 0xa7,
 0x9c, 0xcd, 0xc2, 0x06, 0x7f, 0xa1, 0xbe, 0x7d, 0x31, 0x2c, 0x17, 0x54, 0x80, 0x62, 0x5c, 0x87,
 0xb1, 0x67, 0xcf, 0x65, 0x98, 0x4d, 0x5d, 0xa0, 0xec, 0x3c, 0x9d, 0x76, 0x87, 0x98, 0xf5, 0xf5,
 0xad, 0xb8, 0x03, 0x1b, 0x92, 0x77, 0x4b, 0x8a, 0x8d, 0x14, 0x4a, 0xe8, 0xd9, 0xce, 0xd8, 0x74,
 0xf6, 0xf2, 0xda, 0x9a, 0x1a, 0xbc, 0xee, 0xf9, 0x2a, 0x06, 0x0b, 0xbe, 0x00, 0xb2, 0xd7, 0x62,
 0x16, 0xd6, 0xf3, 0x19, 0x6e, 0x46, 0xd1, 0x92, 0x3e, 0x4a, 0x60, 0x85, 0xc9, 0xc7, 0x8b, 0x93,
 0x30, 0xe5, 0x4d, 0xf8, 0xb9, 0x33, 0x04, 0x07, 0x6f, 0xc7, 0x5e, 0x8d, 0x06, 0xb1, 0xb1, 0xb1,
 0xe7, 0xe5, 0x3b, 0x8a, 0x42, 0x1e, 0xbd, 0x27, 0xa7, 0x41, 0xce, 0x73, 0xf5, 0x0b, 0xa8, 0x9f,
 0x88, 0x89, 0x8e, 0x83, 0x56, 0xfb, 0x0d, 0xb6, 0x6e, 0x4d, 0xc4, 0xe2, 0xc5, 0xc7, 0xe0, 0xe2,
 0x6f, 0x90, 0x95, 0x33, 0x24, 0x29, 0x46, 0x3f, 0xcd, 0xc2, 0xba, 0xbe, 0xc0, 0x5d, 0x28, 0x5d,
 0x32, 0x51, 0xfe, 0xce, 0xa2, 0x5f, 0x51, 0x5d, 0xdd, 0x04, 0x91, 0x1d, 0x51, 0x8a, 0xc9, 0x35,
 0x16, 0x84, 0x2b, 0xb1, 0x17, 0x4f, 0xcd, 0xe9, 0x91, 0x3f, 0x3b, 0x46, 0x3a, 0xb2, 0xa0, 0xfe,
 0x67, 0xbd, 0x76, 0x3b, 0xef, 0xa3, 0xc1, 0xc8, 0xbd, 0x7b, 0xb1, 0xc0, 0xf3, 0x15, 0xec, 0x5c,
 0x1f, 0xf1, 0x34, 0xd6, 0x21, 0x95, 0x0f, 0xd2, 0x52, 0x59, 0x59, 0x71, 0xae, 0xaf, 0xfb, 0xde,
 0xea, 0x82, 0x05, 0x1e, 0x2e, 0x78, 0x6f, 0xe9, 0x52, 0x68, 0x48, 0x92, 0x98, 0x98, 0x88, 0xea,
 0x38, 0xd8, 0xdd, 0x11, 0xb5, 0x55, 0xe5, 0x33, 0xd8, 0x33, 0xa7, 0xc9, 0x85, 0x34, 0x1b, 0xa9,
 0xcb, 0x97, 0x51, 0x5b, 0x5b, 0x8b, 0xbf, 0xae, 0x5f, 0xc7, 0xd5, 0x2b, 0x57, 0x50, 0x5e, 0x56,
 0xcb, 0x31, 0xf4, 0x59, 0x52, 0x03, 0x68, 0xc4, 0xaa, 0x7c, 0xa0, 0x4f, 0x26, 0x0f, 0xed, 0x8d,
 0x86, 0xa3, 0x47, 0x33, 0xb0, 0x76, 0xed, 0x4f, 0x13, 0x84, 0x73, 0xe6, 0x64, 0xa1, 0xe4, 0xc2,
 0xf8, 0x72, 0x2c, 0xe2, 0x64, 0x5f, 0x7c, 0xd0, 0xb7, 0x25, 0xf0, 0x6b, 0xd2, 0x28, 0xa5, 0x4b,
 0x9f, 0xe8, 0xea, 0x7a, 0x12, 0x9d, 0xa8, 0xa3, 0x84, 0x64, 0xcc, 0x6e, 0xb3, 0xf1, 0x5e, 0x9b,
 0x7a, 0xc5, 0xb1, 0x32, 0x26, 0x67, 0xb3, 0xb0, 0xd4, 0x10, 0xee, 0x44, 0x49, 0x3e, 0xd0, 0xc9,
 0x0d, 0xdd, 0x9d, 0x9d, 0xf8, 0xed, 0xe2, 0x45, 0x6c, 0xd9, 0xb2, 0x05, 0x5f, 0x46, 0x44, 0x20,
 0xd1, 0xde, 0xad, 0x11, 0xef, 0xec, 0x8e, 0x18, 0x6b, 0x8a, 0x77, 0x77, 0x55, 0x04, 0x7e, 0xc3,
 0x3a, 0x2a, 0x0a, 0x09, 0x07, 0x0f, 0xa2, 0xaa, 0xb2, 0x12, 0x16, 0xb3, 0x19, 0xd6, 0x9e, 0x1e,
 0xb3, 0xb8, 0x1e, 0x85, 0xff, 0xde, 0xf3, 0x7a, 0x63, 0x16, 0x32, 0x3e, 0x83, 0x57, 0xd0, 0x89,
 0x58, 0xbb, 0xbb, 0xe5, 0xb5, 0x87, 0xae, 0x26, 0xa3, 0x11, 0x2d, 0x77, 0xee, 0xe0, 0xfb, 0xef,
 0xd2, 0x7c, 0xa0, 0xc6, 0x35, 0xc5, 0xe9, 0xbf, 0x7a, 0x9a, 0x2b, 0x62, 0xff, 0x16, 0x51, 0x5d,
 0x8a, 0xe0, 0xea, 0x3a, 0x2e, 0xf3, 0xf1, 0x49, 0x47, 0x49, 0x49, 0x39, 0xba, 0x68, 0x3d, 0xaa,
 0x62, 0x06, 0x53, 0x18, 0x40, 0x4b, 0x6e, 0xeb, 0x26, 0xf1, 0x1b, 0xb8, 0xe1, 0x43, 0x6e, 0x0b,
 0xbf, 0x14, 0x8a, 0x08, 0x99, 0xcd, 0x6a, 0xe5, 0x76, 0xab, 0x15, 0x36, 0x5a, 0x40, 0x2c, 0xd8,
 0xfa, 0x83, 0xa3, 0x7f, 0x62, 0x08, 0x3b, 0x97, 0x03, 0x15, 0x24, 0x42, 0xbe, 0x85, 0xd3, 0x78,
 0x50, 0x5f, 0x8f, 0xe2, 0xa2, 0x22, 0x14, 0x15, 0x14, 0xc8, 0xcf, 0x16, 0x8b, 0x05, 0xb4, 0x19,
 0x0d, 0x87, 0xb1, 0x0f, 0xb5, 0x0b, 0xcc, 0x48, 0xfb, 0xda, 0x9a, 0x9a, 0x78, 0xfe, 0xb1, 0x87,
 0x50, 0xe4, 0x10, 0x91, 0x53, 0xaa, 0x9d, 0x88, 0xe7, 0x9d, 0x34, 0x9e, 0x9f, 0x5f, 0x0b, 0x37,
 0xe2, 0x70, 0x5f, 0x67, 0x5c, 0xb3, 0xb6, 0x32, 0x68, 0xfb, 0x09, 0x2f, 0x63, 0x5b, 0xde, 0xd2,
 0xb7, 0x71, 0x59, 0x40, 0x40, 0x1a, 0xae, 0x5d, 0xbb, 0x26, 0x37, 0x25, 0x64, 0x02, 0x46, 0x37,
 0x65, 0xfd, 0xa1, 0x1e, 0xed, 0xe8, 0x4e, 0x4c, 0xbc, 0x1e, 0xe9, 0x45, 0x71, 0x5f, 0x1d, 0x1b,
 0x5c, 0x48, 0x6c, 0x8e, 0x1d, 0x77, 0x53, 0xd8, 0x66, 0x93, 0x09, 0x16, 0xa2, 0x87, 0x3e, 0xd3,
 0xd8, 0x17, 0xf1, 0xf9, 0x91, 0x88, 0xa9, 0xde, 0xf8, 0x78, 0x7f, 0x63, 0xb0, 0x7a, 0x7a, 0xee,
 0x46, 0xe4, 0x82, 0x52, 0xa6, 0x40, 0x42, 0x05, 0x21, 0x17, 0x73, 0xce, 0xe4, 0xde, 0x70, 0x8a,
 0x8c, 0xd4, 0x84, 0xa2, 0x8b, 0xf4, 0x87, 0x62, 0x94, 0xcf, 0x9b, 0x78, 0x89, 0x98, 0xa9, 0xc1,
 0x66, 0xce, 0xcc, 0x42, 0x7c, 0x5c, 0x0a, 0xda, 0xda, 0xda, 0xe4, 0x1c, 0x6a, 0x38, 0x30, 0x4a,
 0x07, 0xdb, 0x22, 0x8e, 0xef, 0x8c, 0x18, 0xd9, 0x1c, 0x6f, 0xdf, 0x5d, 0x16, 0xf8, 0x39, 0x29,
 0x03, 0x97, 0x29, 0x51, 0x10, 0x42, 0x87, 0xd8, 0x89, 0x88, 0x58, 0x08, 0x15, 0x1c, 0x62, 0xb5,
 0xf3, 0xe6, 0xbc, 0x5d, 0x77, 0x89, 0x66, 0xbd, 0xa9, 0x28, 0x9d, 0xfa, 0xbd, 0xe3, 0xc6, 0xd2,
 0x5c, 0x8c, 0xaf, 0x5e, 0x7d, 0xde, 0x29, 0xf3, 0xf7, 0xff, 0x81, 0x22, 0xcd, 0x97, 0x59, 0x12,
 0xe8, 0xdc, 0x28, 0x4a, 0xd2, 0xfe, 0xc6, 0x7b, 0x78, 0x31, 0x39, 0x2b, 0x8b, 0x56, 0x0a, 0x54,
 0xd1, 0x33, 0xda, 0x35, 0x17, 0x3b, 0x77, 0xa2, 0x92, 0xde, 0xbb, 0x7b, 0x17, 0x47, 0x0e, 0x1f,
 0x90, 0x98, 0x7b, 0x0c, 0x39, 0xa3, 0xc5, 0x23, 0xa8, 0x41, 0xc1, 0x0a, 0x1f, 0x41, 0xae, 0x9a,
 0x96, 0xb5, 0x6a, 0x6e, 0x6a, 0x92, 0xcf, 0xd4, 0xe2, 0xc9, 0xf2, 0xdc, 0xdc, 0x66, 0xa7, 0x68,
 0x1b, 0x21, 0x76, 0x27, 0x93, 0x60, 0xdd, 0x7c, 0xa9, 0x57, 0xf6, 0x02, 0x32, 0x07, 0x2b, 0x4a,
 0xfe, 0xfc, 0x9f, 0x91, 0x90, 0x90, 0x80, 0xb6, 0xd6, 0x56, 0x39, 0x8f, 0x51, 0x13, 0x70, 0xd1,
 0x0c, 0xbd, 0x3a, 0x77, 0xe2, 0x5e, 0xb6, 0x5b, 0xd0, 0x3f, 0x02, 0x52, 0x57, 0xf7, 0x64, 0x07,
 0x08, 0x6a, 0x84, 0xb0, 0xec, 0xd2, 0x25, 0x78, 0x7b, 0x7b, 0x21, 0x4e, 0xf3, 0x39, 0x12, 0x35,
 0x03, 0x56, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
 0xdb, 0xf0, 0x86, 0xb7, 0x07, 0x4e, 0x9d, 0x3c, 0x09, 0xa3, 0x5e, 0x2f, 0xc7, 0x9f, 0x15, 0x75,
 0x6b, 0x8b, 0xc1, 0x29, 0x72, 0x75, 0xcd, 0x44, 0x6c, 0x4c, 0x2c, 0xb5, 0x7c, 0xb5, 0x6c, 0x0c,
 0xd6, 0x65, 0x36, 0xf3, 0x2e, 0x2a, 0xa8, 0x1a, 0x21, 0xfb, 0x70, 0xcd, 0x1a, 0xe4, 0x1c, 0xf9,
 0x1a, 0xb8, 0x91, 0x01, 0x94, 0xc5, 0xe1, 0xf7, 0xb8, 0x15, 0xf0, 0xf2, 0xf2, 0x42, 0xe1, 0xd9,
 0xb3, 0xd0, 0x77, 0x74, 0xc8, 0x5a, 0x4e, 0x48, 0x39, 0xa1, 0xd7, 0x75, 0xd2, 0x21, 0x1f, 0x3f,
 0x5b, 0x91, 0x91, 0x5a, 0x9c, 0xa5, 0xf9, 0xa2, 0x43, 0x59, 0xa7, 0xc9, 0xc4, 0x3b, 0x29, 0x8f,
 0x6a, 0x84, 0x6c, 0xfd, 0xba, 0x75, 0x48, 0x8f, 0xf9, 0x18, 0x28, 0xde, 0x01, 0x64, 0xac, 0xc4,
 0x85, 0xcf, 0x3c, 0xe0, 0xe9, 0xe9, 0x89, 0xfd, 0xf1, 0xf1, 0xb8, 0x41, 0x07, 0x5c, 0x69, 0x16,
 0x35, 0x55, 0x95, 0xf7, 0x9c, 0x12, 0x71, 0xbe, 0xc4, 0x61, 0xcf, 0xcc, 0xcc, 0x94, 0x59, 0x60,
 0x16, 0xa3, 0x91, 0x5b, 0x1c, 0x5d, 0xa6, 0x40, 0x72, 0x54, 0x94, 0x97, 0xc3, 0x77, 0xee, 0x6c,
 0x68, 0x03, 0x3c, 0xb0, 0x7f, 0x05, 0x83, 0xef, 0x6c, 0x17, 0x6c, 0x08, 0x0a, 0x42, 0xd4, 0xbe,
 0x7d, 0xb8, 0x54, 0x5a, 0x0a, 0x03, 0xfd, 0xb3, 0x3a, 0xdd, 0x37, 0xe9, 0x40, 0x07, 0x06, 0xee,
 0x26, 0xc9, 0x06, 0x22, 0x89, 0x5e, 0x4d, 0x19, 0xf2, 0x25, 0x90, 0x93, 0x9d, 0x0d, 0x03, 0xbd,
 0xb0, 0x99, 0xd9, 0x60, 0xe0, 0x04, 0xcc, 0x14, 0x9e, 0x82, 0xc5, 0x71, 0x6d, 0x6a, 0x6c, 0x44,
 0x68, 0x48, 0x08, 0x56, 0xaf, 0x5a, 0x85, 0x9d, 0xe1, 0xe1, 0xd0, 0x46, 0x46, 0x22, 0xe9, 0xd0,
 0x21, 0xdc, 0xb9, 0x7d, 0x5b, 0x6e, 0x48, 0x49, 0xb5, 0x38, 0x73, 0xbe, 0x3e, 0x3e, 0x38, 0x7c,
 0x20, 0x12, 0x69, 0x71, 0x61, 0x58, 0xe8, 0x3b, 0x17, 0xf3, 0xe6, 0x85, 0x48, 0x51, 0x5e, 0x5e,
 0xde, 0x13, 0x91, 0x49, 0xaf, 0xe7, 0x04, 0x4c, 0x24, 0x53, 0x30, 0x3b, 0x10, 0x13, 0x1a, 0x1b,
 0x1a, 0x50, 0x40, 0x6d, 0x7a, 0x34, 0x35, 0x15, 0x79, 0x67, 0xce, 0xa0, 0xee, 0xe6, 0x4d, 0xf9,
 0x5c, 0x89, 0x5c, 0xa4, 0x7a, 0xf9, 0xf2, 0xe5, 0xc8, 0x4b, 0x8d, 0x07, 0x6a, 0x4e, 0x00, 0xa5,
 0x31, 0xa8, 0xda, 0xef, 0x4f, 0x07, 0xf8, 0x35, 0xec, 0xd3, 0x6a, 0x51, 0x4e, 0x4d, 0x65, 0xa4,
 0xb5, 0x98, 0x51, 0xa7, 0xe3, 0x84, 0xcc, 0xa3, 0xc0, 0xa4, 0xc6, 0x21, 0x6b, 0xbf, 0x7f, 0x1f,
 0xff, 0x52, 0xab, 0xb7, 0x3f, 0x78, 0x20, 0xef, 0xd5, 0x91, 0x0b, 0x61, 0x10, 0x7d, 0x87, 0x1d,
 0xdb, 0xb3, 0x9e, 0xde, 0xfa, 0xdb, 0x81, 0x53, 0x1f, 0x20, 0xff, 0x53, 0x77, 0xf8, 0xf9, 0xf9,
 0xc9, 0x34, 0x57, 0x56, 0x54, 0x3c, 0xa9, 0x91, 0xa1, 0xa3, 0x83, 0x13, 0x90, 0x08, 0xa1, 0x9a,
 0x29, 0xe4, 0xea, 0xa8, 0x85, 0xb0, 0xba, 0xaa, 0x0a, 0xbe, 0xde, 0x9e, 0xd8, 0xf6, 0xae, 0x1b,
 0xc2, 0x96, 0x30, 0x78, 0xb8, 0xb9, 0xe2, 0xa3, 0x4d, 0x9b, 0xc6, 0xeb, 0x49, 0x6b, 0x33, 0x7d,
 0x7b, 0x7b, 0x3f, 0x01, 0x89, 0x22, 0x54, 0xf3, 0x02, 0x72, 0x71, 0x2f, 0xea, 0x26, 0xea, 0xb8,
 0x71, 0xe3, 0x46, 0x44, 0xec, 0xde, 0x2d, 0xeb, 0x99, 0x92, 0x9c, 0x8c, 0x16, 0x7a, 0x2e, 0x36,
 0xc4, 0x74, 0x0f, 0x1f, 0xd6, 0x10, 0x50, 0x70, 0x4a, 0xa7, 0x29, 0x17, 0xf3, 0x9a, 0xa9, 0x79,
 0xce, 0x9f, 0x3b, 0x87, 0x93, 0x27, 0x4e, 0xa0, 0xb8, 0xb0, 0x50, 0xd6, 0x57, 0xcc, 0x27, 0x91,
 0x5e, 0x88, 0x82, 0xd5, 0xa2, 0xa7, 0x98, 0x2c, 0x7e, 0x8e, 0x5c, 0x8c, 0x29, 0xf5, 0x7c, 0x48,
 0x57, 0x31, 0xcf, 0x11, 0xb5, 0x46, 0xfe, 0xb6, 0xa3, 0x05, 0x37, 0x13, 0xf5, 0xc4, 0xe8, 0x73,
 0xa5, 0xd3, 0x91, 0xeb, 0x74, 0x8f, 0x89, 0x5b, 0x14, 0xb1, 0xfc, 0x01, 0xf9, 0x1f, 0xb3, 0xc2,
 0x81, 0xc6, 0x0a, 0x94, 0xcc, 0x13, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42,
 0x60, 0x82,
};
};


const BITMAP_OPAQUE add_arc_xpm[1] = {{ png, sizeof( png ), "add_arc_xpm" }};
const BITMAP_OPAQUE add_arc_xpm[1] = {{ png, sizeof( png ), "add_arc_xpm" }};
+33 −57
Original line number Original line Diff line number Diff line
@@ -8,48 +8,24 @@
static const char png[] = {
static const char png[] = {
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
 0xce, 0x00, 0x00, 0x00, 0x09, 0x76, 0x70, 0x41, 0x67, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00,
 0xce, 0x00, 0x00, 0x01, 0x00, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xed, 0xd5, 0x3b, 0x4a, 0x03,
 0x1a, 0x00, 0x07, 0xb2, 0x66, 0x2f, 0x00, 0x00, 0x02, 0x70, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7,
 0x51, 0x14, 0x80, 0xe1, 0x2f, 0x23, 0x89, 0x2f, 0x52, 0x4b, 0x0a, 0x15, 0xb4, 0x10, 0x3b, 0x05,
 0xa5, 0x95, 0x4d, 0x6b, 0x13, 0x41, 0x18, 0xc7, 0x7f, 0x33, 0x9d, 0x4d, 0xb2, 0x10, 0xdb, 0x62,
 0x2b, 0xeb, 0x04, 0x7c, 0xa5, 0x50, 0x50, 0x22, 0x01, 0x19, 0xc1, 0xa8, 0xb1, 0xb2, 0xb3, 0x4d,
 0x4b, 0x8a, 0x88, 0x10, 0xf4, 0x28, 0x58, 0xcf, 0x3d, 0x5a, 0x3c, 0x14, 0xa4, 0x87, 0xa2, 0x27,
 0x69, 0xa1, 0x9d, 0xb5, 0x5b, 0xd0, 0xd6, 0x4a, 0x77, 0xe1, 0x16, 0x8c, 0x9b, 0x18, 0x0b, 0x47,
 0xbf, 0x80, 0x4a, 0x3f, 0x81, 0x92, 0x9b, 0xe0, 0xa9, 0x1f, 0x41, 0xa8, 0x7e, 0x85, 0x5e, 0xcd,
 0xa2, 0x88, 0x33, 0x3a, 0x19, 0x02, 0x42, 0x8a, 0xbf, 0x3a, 0xc5, 0xc7, 0xe5, 0xc2, 0x39, 0xa2,
 0xa1, 0x82, 0xed, 0xcd, 0x83, 0xe0, 0x0b, 0xf1, 0x50, 0x2c, 0x4a, 0x0f, 0xa9, 0x97, 0x36, 0x36,
 0x28, 0x32, 0x88, 0x0c, 0xa1, 0xff, 0x03, 0xd1, 0x09, 0x08, 0xc7, 0x92, 0xeb, 0x04, 0x39, 0x40,
 0xbb, 0x49, 0x76, 0x1e, 0x0f, 0x4d, 0xb2, 0x2f, 0xd9, 0x4d, 0x36, 0xe9, 0xdc, 0x66, 0x77, 0xe6,
 0x67, 0x6b, 0xb4, 0xa3, 0xe4, 0x4e, 0x1b, 0x39, 0x40, 0x27, 0x1b, 0xe9, 0x50, 0xab, 0x89, 0x42,
 0xff, 0x36, 0xcf, 0x33, 0xa3, 0x00, 0x3c, 0xcf, 0xdb, 0x04, 0x6a, 0x0a, 0x56, 0x51, 0xca, 0x21,
 0x66, 0x08, 0x01, 0xfb, 0x7b, 0xe9, 0xd0, 0xce, 0x39, 0x46, 0xfb, 0x81, 0x46, 0x58, 0x5d, 0x62,
 0x32, 0x14, 0x80, 0x52, 0xc4, 0xbe, 0x25, 0xe6, 0x19, 0x23, 0x00, 0xbe, 0x02, 0x3b, 0x8e, 0xe3,
 0xfd, 0x8a, 0xda, 0x4d, 0xaf, 0xf0, 0xf9, 0x2b, 0x54, 0xbf, 0xc0, 0x44, 0x9f, 0x90, 0x29, 0x54,
 0xbc, 0x57, 0xed, 0x76, 0xfb, 0x11, 0xb0, 0xa7, 0x42, 0x14, 0x26, 0x12, 0x4d, 0x4f, 0xfe, 0x4c,
 0xb1, 0xdd, 0xab, 0xf1, 0x98, 0x37, 0x14, 0xa0, 0x8c, 0x45, 0x2c, 0xc7, 0xad, 0xd0, 0x7c, 0xc8,
 0x5d, 0x5c, 0x5c, 0x7c, 0x02, 0xd6, 0x54, 0x7c, 0x57, 0x08, 0x98, 0x00, 0xcd, 0x14, 0x94, 0x42,
 0x15, 0xfa, 0x84, 0x15, 0x51, 0x8a, 0x2b, 0x13, 0xde, 0xe7, 0x0e, 0x7d, 0x1b, 0x30, 0x4a, 0x78,
 0x14, 0xf9, 0xf6, 0x5b, 0xfd, 0x6b, 0xb5, 0xce, 0x51, 0xaa, 0x3c, 0x96, 0x68, 0x06, 0xf2, 0xa4,
 0x37, 0x84, 0x86, 0xd0, 0x0f, 0xd0, 0xe1, 0x13, 0xc7, 0xd7, 0xb4, 0x2f, 0x7f, 0x5b, 0x46, 0x28,
 0x6b, 0x23, 0x22, 0xce, 0x88, 0x14, 0x91, 0x11, 0xc5, 0x57, 0x5d, 0x63, 0x44, 0x04, 0x00, 0x6b,
 0x4b, 0xef, 0xbb, 0x71, 0x10, 0xd0, 0x38, 0x82, 0x14, 0xe8, 0xe0, 0x96, 0x56, 0x97, 0xa3, 0xd7,
 0x85, 0x4e, 0xa7, 0x17, 0x73, 0x90, 0x74, 0x54, 0x28, 0x18, 0xe6, 0xb4, 0x9a, 0x89, 0xfc, 0x92,
 0x5e, 0xad, 0xee, 0x1f, 0x7a, 0xc1, 0x0c, 0x8a, 0x29, 0x90, 0x05, 0x6c, 0x61, 0x37, 0x63, 0x9b,
 0x48, 0x84, 0x0f, 0xf5, 0x9f, 0x6c, 0x6d, 0xbd, 0x1d, 0x2b, 0x70, 0x77, 0xf7, 0x29, 0x4f, 0x1e,
 0x98, 0x43, 0x29, 0x09, 0x2a, 0x61, 0x1e, 0x35, 0xd4, 0x33, 0x56, 0xc5, 0x6c, 0xda, 0x8b, 0x3e,
 0xdf, 0x67, 0x96, 0x11, 0x3a, 0x0a, 0x82, 0x89, 0x8b, 0x7b, 0xbd, 0x1e, 0xd6, 0xda, 0xf0, 0x90,
 0x16, 0x6d, 0x05, 0xd3, 0x19, 0xab, 0x60, 0x32, 0xf1, 0x8f, 0x62, 0xac, 0x10, 0x9f, 0x90, 0x7e,
 0xa7, 0x88, 0xcf, 0x88, 0x08, 0x62, 0x2d, 0xad, 0x56, 0x6b, 0x22, 0xd1, 0x69, 0xb3, 0x89, 0xef,
 0x2a, 0x44, 0x51, 0xe4, 0x0d, 0x20, 0x9c, 0x6a, 0xdb, 0x8d, 0xce, 0xbe, 0x08, 0x00, 0x00, 0x00,
 0xfb, 0x14, 0x8b, 0xc5, 0xa9, 0xe3, 0x33, 0x22, 0x82, 0xb5, 0x96, 0x3b, 0xb7, 0x17, 0xd8, 0xde,
 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
 0xbe, 0x8b, 0xef, 0x79, 0xc3, 0x9f, 0xfb, 0x1f, 0x9b, 0x34, 0x1a, 0x67, 0xc3, 0xb9, 0xef, 0xfb,
 0x04, 0x41, 0xc0, 0x20, 0x85, 0x41, 0x75, 0x49, 0xde, 0xe8, 0x44, 0x84, 0xca, 0x4a, 0x99, 0xf5,
 0xf5, 0x9b, 0xb4, 0xce, 0xcf, 0x87, 0x00, 0xdf, 0x7f, 0x9c, 0xd1, 0x68, 0xc4, 0xd5, 0x0e, 0xd6,
 0x8f, 0x73, 0x30, 0x42, 0x2e, 0x12, 0x9e, 0x91, 0x5b, 0x2a, 0x71, 0x63, 0x65, 0x05, 0x6f, 0x71,
 0xb1, 0x5f, 0x85, 0x96, 0x82, 0xf3, 0x2b, 0x9e, 0x0a, 0x20, 0xd6, 0xc6, 0x89, 0x72, 0xc6, 0x67,
 0x44, 0x04, 0xa5, 0x14, 0xae, 0xeb, 0x52, 0xad, 0x56, 0x87, 0x4a, 0xba, 0x9d, 0x0e, 0xa5, 0xd2,
 0xe7, 0xc4, 0xfe, 0x14, 0x47, 0x39, 0x8b, 0xc2, 0x20, 0x82, 0xf4, 0xaf, 0x0b, 0x63, 0xcc, 0xb0,
 0x7f, 0x24, 0x63, 0x73, 0x2a, 0x51, 0x0e, 0x57, 0x26, 0x53, 0x5d, 0xbf, 0xbf, 0x52, 0x1d, 0x59,
 0x1b, 0x0a, 0xca, 0xdd, 0x47, 0xfd, 0x4d, 0x69, 0xca, 0xd3, 0x85, 0x66, 0x38, 0xea, 0x0b, 0xcc,
 0x22, 0x37, 0x63, 0x01, 0x33, 0x48, 0x06, 0xb7, 0x49, 0xde, 0x66, 0x55, 0x99, 0x44, 0x51, 0xb0,
 0x59, 0xcf, 0x28, 0xeb, 0xae, 0x4b, 0xaa, 0x4b, 0x03, 0xab, 0xd7, 0x8f, 0x69, 0x36, 0xf7, 0x71,
 0x1c, 0x93, 0x09, 0x98, 0x7c, 0x97, 0x6a, 0xb5, 0x87, 0x13, 0xa2, 0xb3, 0x76, 0x24, 0xba, 0x83,
 0xc3, 0x13, 0x0e, 0x0e, 0x4f, 0xa6, 0x72, 0xf2, 0xea, 0xe5, 0x03, 0xb4, 0xd6, 0xe8, 0x68, 0xee,
 0x03, 0x77, 0x61, 0x3c, 0xc2, 0x55, 0x87, 0xe7, 0x79, 0x04, 0x41, 0x10, 0x71, 0x94, 0x88, 0x4f,
 0x44, 0x58, 0x98, 0x2f, 0xb1, 0xbc, 0x5c, 0x44, 0xc4, 0x46, 0xa2, 0xd1, 0xb9, 0x49, 0x94, 0x52,
 0xfc, 0x3d, 0x3d, 0xa5, 0x52, 0xa9, 0x60, 0x44, 0xa4, 0x0b, 0x14, 0xd3, 0x0e, 0xfd, 0xc5, 0xf3,
 0x7b, 0x6c, 0x6c, 0xcc, 0xc7, 0x2e, 0xda, 0x0c, 0xc4, 0xd4, 0x27, 0xdd, 0x75, 0x5d, 0xba, 0xdd,
 0x2e, 0xd2, 0xbf, 0xeb, 0xbe, 0x00, 0x6b, 0x69, 0xae, 0xe6, 0xb4, 0xa6, 0xe0, 0x38, 0x97, 0x0d,
 0x9a, 0x00, 0x4e, 0x2b, 0xec, 0x91, 0x17, 0xd9, 0x71, 0xd0, 0x5a, 0x23, 0x22, 0x7f, 0x0c, 0xf0,
 0x06, 0xd8, 0x4b, 0x56, 0x9b, 0xd6, 0x9a, 0xeb, 0x4b, 0x4b, 0x94, 0x5c, 0x97, 0x20, 0xe5, 0x51,
 0x54, 0x29, 0xae, 0x92, 0x44, 0xc6, 0x18, 0xae, 0x95, 0xcb, 0x00, 0xaf, 0x15, 0xc0, 0xf1, 0xd1,
 0xd1, 0x26, 0x50, 0x03, 0x56, 0x01, 0x27, 0x4a, 0x6a, 0x93, 0x6e, 0xb2, 0x1c, 0x8d, 0x12, 0x05,
 0xc0, 0x37, 0xad, 0xd4, 0xce, 0xad, 0x6a, 0xf5, 0xdd, 0x7f, 0xb2, 0x66, 0x78, 0xef, 0x94, 0x05,
 0x4c, 0x54, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
};
};


const BITMAP_OPAQUE add_bus_xpm[1] = {{ png, sizeof( png ), "add_bus_xpm" }};
const BITMAP_OPAQUE add_bus_xpm[1] = {{ png, sizeof( png ), "add_bus_xpm" }};
+62 −87

File changed.

Preview size limit exceeded, changes collapsed.

+72 −110

File changed.

Preview size limit exceeded, changes collapsed.

Loading