Gray.h
gehe zur Dokumentation dieser Datei
00001 #ifndef GRAY_H
00002 #define GRAY_H
00003 
00004 #include <owl/pch.h>
00005 
00006 
00007 // TGrayDialog ------------------------------------------------------
00008 // auf dem Bildschirm zentrierter Dialog mit grauem Hintergrund
00009 
00010 class TGrayDialog : public TDialog
00011 {
00012   public:
00013     TGrayDialog(TWindow* parent, TResId resId, int helpNr, int x = -1, int y = -1, TModule* module = 0);
00014     void SetupWindow();
00015   protected:
00016     int HelpNr, X, Y;
00017     TPoint Point;
00018     void CmHelpCommon();
00019     void CmErase();
00020 //    HBRUSH EvCtlColor(HDC, HWND hWndChild, UINT ctlType);
00021     virtual bool DialogFunction(UINT uMsg, WPARAM wParam,  LPARAM lParam);
00022           DECLARE_RESPONSE_TABLE(TGrayDialog);
00023 };
00024 
00025 // TGraySetupDialog -----------------------------------------------------
00026 
00027 class TGraySetupDialog : public TGrayDialog
00028 {
00029   public:
00030     TGraySetupDialog(TWindow* parent, TResId resId, void *buf, int helpNr, int x = -1, int y = -1)
00031     : TGrayDialog(parent, resId, helpNr, x, y)
00032         {
00033       SetTransferBuffer(buf);
00034       TransferData(tdSetData);
00035     };
00036         void CmOk()
00037           {
00038                 TransferData(tdGetData);
00039             TDialog::CmOk();
00040         }
00041 };
00042 
00043 #endif

Erzeugt am Sun Aug 21 2011 10:51:52 für Mutabor von doxygen 1.7.4