home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / edispm11.zip / EDisPM / SRC / Client / EDDLG.HPP < prev    next >
Text File  |  1996-05-11  |  1KB  |  34 lines

  1. /* EDDlg.hpp: EDUserNameDlg:    EDisPM.EXE V 1.1 */
  2. /* Editorclient - Allgemeine Dialogfenster       */
  3. /*                                               */
  4. /* (C) 1995 M.Schwarz, FoPra TU-Muenchen SS1995  */
  5. /* (C) 1996 M.Schwarz, SOMObjects-Programmierung */
  6. /*                     OS/2 Inside 7/96          */
  7. /*                                               */
  8. /* latest changes: 11.5.1996                     */
  9. /*-----------------------------------------------*/
  10.  
  11. #ifndef EDDLG_HPP
  12. #define EDDLG_HPP
  13.  
  14. /* IUICL Headers */
  15. #include <iframe.hpp>
  16. #include <icmdhdr.hpp>
  17. #include <iframhdr.hpp>
  18. #include <istring.hpp>
  19. #include <ientryfd.hpp>
  20.  
  21.  
  22. class UserNameDlg : public IFrameWindow, public ICommandHandler, public IFrameHandler {
  23.    private:
  24.       IString* uName;
  25.    protected:
  26.       Boolean command (ICommandEvent&);
  27.    public:
  28.       UserNameDlg(IFrameWindow*, IString*);
  29.       IEntryField entryName;
  30. };
  31.  
  32. MRESULT EXPENTRY AboutBoxDlgProc(HWND, ULONG, MPARAM, MPARAM);
  33. #endif
  34.