#ifndef WIDGETFORM_H #define WIDGETFORM_H #include #include "widget.h" //! A Form class. class CForm: public CWidget { public: /*! Constructor */ CForm(); /*! Create Form \param parent HANDLE of the parent window on which to draw \param name Name of the Form \param x Top left x coordinate \param y Top left y coordinate \param w Form width \param h Form height \param style Style flags \param flags \return Success: S_OK\n Failure: E_HANDLE \see GetParent() */ HRESULT Create(HANDLE parent, char * name, int x, int y, int w, int h, int style, unsigned int flags); /*! Sets if the Form will use its parent's background \param use Use Parent Background */ HRESULT UseParentBackground(bool use); }; #endif