<HTML>
<HEAD>
<TITLE>Source</TITLE></HEAD><BODY><H6><A href=main.html>Contents page</A></H6><P>
<H6><A href=Main.html>Index</A></H6><P>
<H1>Source</H1>
<HR>
  //////////////////////////////////////////////////////////////////////////////<PRE>
  // 3dstatus.cpp
  //
  // Jeffry A Worth
  // November 10, 1995
  //////////////////////////////////////////////////////////////////////////////<P>

  //////////////////////////////////////////////////////////////////////////////
  // INCLUDES
  #include &quot;aframe:include/3dstatus.hpp&quot;<P>

  //////////////////////////////////////////////////////////////////////////////
  //<P>

  AF3DStatus::~AF3DStatus()
  {
    DestroyObject();
  }<P>

  void AF3DStatus::Create(AFWindow* pwindow, AFRect *rect, ULONG id, UBYTE penDone, UBYTE penToGo)
  {
    AFRect srect;<P>

    m_panel.Create(NULL,pwindow,rect,id,PANEL_BEVELDOWN);
    srect.SetRect(rect-&gt;TopLeft()-&gt;m_x+1,rect-&gt;TopLeft()-&gt;m_y+1,rect-&gt;BottomRight()-&gt;m_x-1,rect-&gt;BottomRight()-&gt;m_y-</PRE>
1);<PRE>
    AFStatus::Create(pwindow,&amp;srect,id,penDone,penToGo);
  }
<HR>
