78 lines
3.7 KiB
C
78 lines
3.7 KiB
C
/* File: icon.c
|
|
*
|
|
* This file is part of XSCHEM,
|
|
* a schematic capture and Spice/Vhdl/Verilog netlisting tool for circuit
|
|
* simulation.
|
|
* Copyright (C) 1998-2020 Stefan Frederik Schippers
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
/* XPM */
|
|
char *cad_icon[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"60 41 6 1",
|
|
" c black",
|
|
". c #78787C7C7878",
|
|
"X c #0000A8A8E8E8",
|
|
"o c #B0B000000000",
|
|
"O c #8888DCDC0000",
|
|
"+ c None",
|
|
/* pixels */
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"+++++++.+++++++++++.+++++++++++.+++++++++++.+++++++++++.++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"+++++++++++++++++++OOOO+++++++++++++++++++++OOOO++++++++++++",
|
|
"++++++++++++++++++++O+++++++++++++++++++++++++O+++++++++++++",
|
|
"++++++++++++++++++++o++++++++++++++++++++++++oO+++++++++++++",
|
|
"++++++++++++++++++O+O++++++++++++++++++++++O++O+++++++++++++",
|
|
"++++++++++++++++++OOO++++++++++++++++++++++OOOO+++++++++++++",
|
|
"+++++++++++++++++OO+++++++++++++++++++++++OO++++++++++++++++",
|
|
"++++++++++++++++OOO++++++++++++++++++++++OOO++++++++++++++++",
|
|
"++++++++++++++oOOOO++++++++++++++++++++oOOOO++++++++++++++++",
|
|
"+++++++++++++++XOOO+++++++++++++++++++++XOOO++++++++++++++++",
|
|
"+++++++++++++++X+OO+++++++++++++++++++++X+OO++++++++++++++++",
|
|
"+++++++.+++++++X++OOO++++++++++.++++++++X++OOOO++++++++.++++",
|
|
"+++++++++++++++X++O+o+++++++++++++++++++X++O+oO+++++++++++++",
|
|
"+++++++++++++++X++++X+++++++++++++++++++X+++++X+++++++++++++",
|
|
"+++++++++++++++X++++X+++++++++++++++++++X+++++X+++++++++++++",
|
|
"++++++ooooXXXXXX++++XXXXXXXXXXXXXXXXXXXXX+++++XXXXXXXXXXXXXX",
|
|
"++++++ooo++++++X++++X+++++++++++++++++++X+++++X+++++++++++++",
|
|
"+++++++++++++++X++++X+++++++++++++++++++X+++++X+++++++++++++",
|
|
"+++++++++++++++X++++o+++++++++++++++++++X++++oO+++++++++++++",
|
|
"+++++++++++++++X++O+O+++++++++++++++++++X++O++O+++++++++++++",
|
|
"+++++++++++++++X++OOO+++++++++++++++++++X++OOOO+++++++++++++",
|
|
"+++++++++++++++X+OO+++++++++++++++++++++X+OO++++++++++++++++",
|
|
"+++++++++++++++X+OO+++++++++++++++++++++X+OO++++++++++++++++",
|
|
"+++++++.++++++oOOOO.+++++++++++.+++++++oOOOO+++++++++++.++++",
|
|
"+++++++++++++++++OO+++++++++++++++++++++++OO++++++++++++++++",
|
|
"+++++++++++++++++OO+++++++++++++++++++++++OO++++++++++++++++",
|
|
"++++++++++++++++++OOO++++++++++++++++++++++OOOO+++++++++++++",
|
|
"++++++++++++++++++O+o++++++++++++++++++++++O+oO+++++++++++++",
|
|
"++++++++++++++++++++O+++++++++++++++++++++++++O+++++++++++++",
|
|
"++++++++++++++++++++O+++++++++++++++++++++++++O+++++++++++++",
|
|
"++++++++++++++++++++OO+++++++++++++++++++++++OO+++++++++++++",
|
|
"++++++++++++++++++++O+++++++++++++++++++++++++O+++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
|
"+++++++.+++++++++++.+++++++++++.+++++++++++.+++++++++++.++++"
|
|
};
|
|
|