home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / advframe / tstdlg / dlghndlr.cpp < prev    next >
C/C++ Source or Header  |  1996-10-29  |  917b  |  42 lines

  1. //************************************************************
  2. // Advanced Frame - Dialog Window Example
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8.  
  9. #include "dlghndlr.hpp"
  10.  
  11. DialogInitEvent::DialogInitEvent ( const IEvent& event )
  12.   : IEvent( event )
  13.   {
  14.   }
  15.  
  16. IWindowHandle DialogInitEvent::defaultFocusWindow ( ) const
  17.   {
  18.   return IWindowHandle( parameter1() );
  19.   }
  20.  
  21. void *DialogInitEvent::createParameters ( ) const
  22.   {
  23.   return parameter2();
  24.   }
  25.  
  26. DialogInitEvent& DialogInitEvent :: setFocusChanged( )
  27.   {
  28.   setResult( true );
  29.   return *this;
  30.   }
  31.  
  32. Boolean DialogHandler::initialize( DialogInitEvent& initEvent )
  33.   {
  34.   return false;
  35.   }
  36.  
  37. Boolean DialogHandler::dispatchHandlerEvent( IEvent& event )
  38.   {
  39.   return false;
  40.   }
  41.  
  42.