#ifndef IUPCONTROLDIALOG_H #define IUPCONTROLDIALOG_H /* ** --------------------------------------------------------------- ** Includes: */ #include "iup.h" #include "iupcontrols.h" #include "IupColorCalibrationDlg.h" #include "IupCameraSetupDlg.h" /* ** --------------------------------------------------------------- ** Class definition: */ class IupControlDlg { public: IupControlDlg(); ~IupControlDlg(); void show(); protected: IupColorCalibrationDlg* colorCalibrationDlg; IupCameraSetupDlg* cameraSetupDlg; private: Ihandle* dlg; static int _calibrateColorsCB(Ihandle* self); static int _cameraSetupCB(Ihandle* self); static int _generateImageCB(Ihandle* self); static int _generateVideoCB(Ihandle* self); static int _exitCB(Ihandle* self); }; #endif