#if !defined RQTOOLTIP_H
#define RQTOOLTIP_H
#include <windows.h>
#include "rqfont.h"
#include "rqcontrol.h"
#include "rqdefs.h"
class RQToolTip: public RQControl
{
protected:
HWND handle;
HWND getHandle() { return handle; }
public:
RQToolTip();
~RQToolTip();
void setParent(RQControl&, HINSTANCE);
RQFont font;
};
#endif
|