home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sd386v50.zip / sd386src.zip / POPUPS.H < prev    next >
Text File  |  1995-10-06  |  2KB  |  40 lines

  1. /*****************************************************************************/
  2. /* File:                                             IBM INTERNAL USE ONLY   */
  3. /*   popups.h                                                                */
  4. /*                                                                           */
  5. /* Description:                                                              */
  6. /*                                                                           */
  7. /*   Definitions for popups.                                                 */
  8. /*                                                                           */
  9. /*****************************************************************************/
  10.  
  11. #define  MAXPROMPTSTRING           81
  12.  
  13. #define  POP_START_ROW             8
  14. #define  POP_START_COL            16
  15. #define  POP_LEN                   9
  16. #define  POP_WIDTH                46
  17. #define  POP_BUTTONS               3
  18. #define  POP_BUTTON_ROWS           1
  19.  
  20. #define  POP_PROMPT_START_ROW     POP_START_ROW + 5
  21. #define  POP_PROMPT_START_COL     POP_START_COL + 2
  22. #define  POP_PROMPT_LENGTH        POP_WIDTH     - 4
  23.  
  24. #define  POP_BTN_ROW              POP_START_ROW +7
  25.  
  26. #define  POP_BTN_ENTER_COL        POP_START_COL + 11
  27. #define  POP_BTN_ENTER_TEXT       "Enter"
  28. #define  POP_BTN_ENTER_WIDTH       5
  29. #define  POP_BTN_ENTER_KEY        ENTER
  30.  
  31. #define  POP_BTN_CANCEL_COL       POP_START_COL + 21
  32. #define  POP_BTN_CANCEL_TEXT      "Cancel"
  33. #define  POP_BTN_CANCEL_WIDTH      6
  34. #define  POP_BTN_CANCEL_KEY       ESC
  35.  
  36. #define  POP_BTN_HELP_COL         POP_START_COL + 31
  37. #define  POP_BTN_HELP_TEXT        "Help"
  38. #define  POP_BTN_HELP_WIDTH        4
  39. #define  POP_BTN_HELP_KEY         F1
  40.