import java.applet.*;
import java.awt.*;

public class PaulyQ extends Applet
{

	public PaulyQ()
	{
	}

	public String getAppletInfo()
	{
		return "Name: PaulyQ\r\n" +
		       "Author: Brian Jahns\r\n" +
		       "Created with Microsoft Visual J++ Version 1.1";
	}


	public void init()
	{
		setBackground(Color.white);
    	resize(320, 240);

	}

	public void destroy()
	{
	}

	public void paint(Graphics g)
	{
	Font f=new Font("TimesRoman", Font.PLAIN, 20);
	g.setFont(f);

	//draw quote box
	g.drawRoundRect(75, 20, 150, 75, 20, 20);

	//draw quote text
	g.drawString("Don't Quote Me!", 85, 60);

	//draw line to connect head to quote box
	g.drawLine(120, 150, 175, 95);

	//draw head
	g.drawOval(70, 115, 45, 45);

	//draw two eyes
	g.fillRoundRect(80, 125, 8, 15, 7, 10);
	g.fillRoundRect(95, 123, 8, 15, 7, 10);

	//draw mouth
	g.drawArc(80, 140, 22, 13, -370, 235);
	}

	public void start()
	{
	}
	
	public void stop()
	{
	}



}
