home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------
- // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
- // Example paint program dib attribute dialog
- //----------------------------------------------------------------------------
- #ifndef __DIBATTR_H
- #define __DIBATTR_H
-
- #include <owl\dialog.h>
-
- class TDibAttrDialog : public TDialog {
- public:
- TDibAttrDialog(TWindow* parent, int& width, int& height, int& colors,
- TModule* module = 0);
-
- private:
- void SetupWindow();
- BOOL CanClose();
-
- void Bn2Color() {Colors = 2;}
- void Bn16Color() {Colors = 16;}
- void Bn256Color() {Colors = 256;}
-
- int& Width;
- int& Height;
- int& Colors;
-
- DECLARE_RESPONSE_TABLE(TDibAttrDialog);
- };
-
- #endif
-