efpopup.h 626 B

123456789101112131415161718192021222324252627
  1. #ifndef _efpopup_H_
  2. #define _efpopup_H_
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // Message Box
  6. //
  7. /////////////////////////////////////////////////////////////////////////////
  8. class IMessageBox : public IPopup
  9. {
  10. public:
  11. virtual IntegerEventSourceImpl* GetEventSource() = 0;
  12. };
  13. TRef<IMessageBox> CreateMessageBox(
  14. ITimerEventSource* ptimerEventSource,
  15. Modeler* pmodeler,
  16. const ZString& str,
  17. ButtonPane* pbuttonIn,
  18. bool fAddDefaultButton,
  19. ButtonPane* pbuttonCancel,
  20. float paintDelay
  21. );
  22. #endif