my @ascii = 
	(
 	'PNP' => <<'EOA',
 | /
 |V
-|\
 | \

EOA

	'NPN' => <<'EOA',
 | /
 |/
-|\
 | V

EOA

	'pMOS' => <<'EOA',
      |
   |--|
-| |->+
   |--
      |
EOA

	'nMOS' => <<'EOA',
      |
   |--
-| |-<+
   |--|
      |
EOA

	'R' => <<'EOA',
     _|_
     | |
     | |
     |_|
      |
EOA

	'C' => <<'EOA',
     _|_
     ___
      |
EOA

	'L' => <<'EOA',
     |
     C
     C
     C
     C
     |
EOA
	) ;
	
my @boxes ;

use App::Asciio::stripes::editable_box2 ;

for(my $ascii_index = 0 ; $ascii_index < $#ascii ; $ascii_index+= 2)
	{
	my $box = new App::Asciio::stripes::editable_box2
				({
				TEXT_ONLY => $ascii[$ascii_index + 1],
				EDITABLE => 1,
				RESIZABLE => 1,
				}) ;

	$box->set_box_type([map{$_->[0] = 0; $_} @{$box->get_box_type()}]) ;
	$box->shrink() ;
	$box->{'NAME'} = $ascii[$ascii_index] ;
	push @boxes, $box ;
	}
	
[@boxes] ;
