Main Page   Class Hierarchy   Compound List   File List   Header Files   Sources   Compound Members   File Members  

DIBVIEW.H

This is the verbatim text of the DIBVIEW.H include file.
//------------------------------------------------------------------------------
//      DIBVIEW.H header file
//------------------------------------------------------------------------------
#ifndef DIBVIEW_H
#define DIBVIEW_H

class DIB;

#define DIB_ACTUAL      20
#define DIB_STRETCH     21
#define DIB_TILE                22

class _export DIBVIEW : public DIB
{
        WORD            wDisplay;
        int                             cxDib, cyDib;

public:
        DIBVIEW();
        ~DIBVIEW() {}

        BOOL LoadDIB(LPCSTR szDib);

        void PaintDIB(HWND hwnd, HDC hdc);

        int GetDisplayType() { return wDisplay; }
        void SetDisplayType(int type) { wDisplay = type; }
};

#endif


Generated at Mon Apr 3 00:47:15 2000 for DibDll by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999