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

  #ifndef __PANEL_HPP__
  #define __PANEL_HPP__<P>

  //////////////////////////////////////////////////////////////////////////////
  // INCLUDES
  #include &lt;string.h&gt;
  #include &quot;aframe:include/gadget.hpp&quot;<P>

  //////////////////////////////////////////////////////////////////////////////
  // Definitions
  #define PANEL_BEVELDOWN   0
  #define PANEL_BEVELUP     1
  #define PANEL_NOBORDER    2<P>

  //////////////////////////////////////////////////////////////////////////////
  // Panel Class<P>

  class AFPanel : public AFGadget
  {
  public:
    AFPanel();
    ~AFPanel();<P>

    virtual void DestroyObject();
    virtual char *ObjectType() { return &quot;Panel&quot;; };<P>

    virtual void Create(char *text, AFWindow* pwindow, AFRect *rect, ULONG id,
                        int bevel);<P>

    struct IntuiText m_IntuiText;
    struct Border m_gborder,m_gborder2;
    char *m_text;
    WORD m_xyshine[6];
    WORD m_xyshadow[6];
  };<P>

  //////////////////////////////////////////////////////////////////////////////
  #endif // __PANEL_HPP__
<HR>
