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

  1. /*****************************************************************************/
  2. /* File:                                             IBM INTERNAL USE ONLY   */
  3. /*   cuadata.h                                                               */
  4. /*                                                                           */
  5. /* Description:                                                              */
  6. /*                                                                           */
  7. /*  Static structures for all pulldowns,popups and actionbar.                */
  8. /*                                                                           */
  9. /*...Release 1.01 (04/03/92)                                                 */
  10. /*...                                                                        */
  11. /*... 05/08/92  701   Srinivas  Cua Interface.                               */
  12. /*****************************************************************************/
  13.  
  14. /*****************************************************************************/
  15. /* Data for getfunc popup.                                                   */
  16. /*****************************************************************************/
  17. static uchar  Popt_GetFunc[]  = " Search For Function ";
  18. static uchar  Popp_GetFunc[]  = "Enter the Function name:";
  19. static BUTTON Popbt_GetFunc[] = { {15,27,5,"Enter",ENTER},
  20.                                   {15,37,6,"Cancel",ESC},
  21.                                   {15,48,4,"Help",F1} };
  22. POPUPSHELL Pop_GetFunc = { 8,16,9,46,3,1,Popt_GetFunc,Popp_GetFunc,
  23.                            &Popbt_GetFunc[0]};
  24.  
  25. /*****************************************************************************/
  26. /* Data for browse popup.                                                    */
  27. /*****************************************************************************/
  28. static uchar  Popt_Browse[]  = " Browse a File ";
  29. static uchar  Popp_Browse[]  = "Enter the File name:";
  30. static BUTTON Popbt_Browse[] = { {15,27,5,"Enter",ENTER},
  31.                                  {15,37,6,"Cancel",ESC},
  32.                                  {15,48,4,"Help",F1} };
  33. POPUPSHELL Pop_Browse = { 8,16,9,46,3,1,Popt_Browse,Popp_Browse,
  34.                            &Popbt_Browse[0]};
  35.  
  36. /*****************************************************************************/
  37. /* Data for getfile popup.                                                   */
  38. /*****************************************************************************/
  39. static uchar  Popt_GetFile[]  = " Search For a File ";
  40. static uchar  Popp_GetFile[]  = "Enter the File name:";
  41. static BUTTON Popbt_GetFile[] = { {15,27,5,"Enter",ENTER},
  42.                                   {15,37,6,"Cancel",ESC},
  43.                                   {15,48,4,"Help",F1} };
  44. POPUPSHELL Pop_GetFile = { 8,16,9,46,3,1,Popt_GetFile,Popp_GetFile,
  45.                            &Popbt_GetFile[0]};
  46.  
  47. /*****************************************************************************/
  48. /* Data for find string popup.                                               */
  49. /*****************************************************************************/
  50. static uchar  Popt_FindStr[]  = " Search For a String ";
  51. static uchar  Popp_FindStr[]  = "Enter the String:";
  52. static BUTTON Popbt_FindStr[] = { {15,27,5,"Enter",ENTER},
  53.                                   {15,37,6,"Cancel",ESC},
  54.                                   {15,48,4,"Help",F1} };
  55. POPUPSHELL Pop_FindStr = { 8,16,9,46,3,1,Popt_FindStr,Popp_FindStr,
  56.                            &Popbt_FindStr[0]};
  57.  
  58. /*****************************************************************************/
  59. /* Data for conditional break points popup.                                  */
  60. /*****************************************************************************/
  61. static uchar  Popt_CondBkp[]  = " Conditional Breakpoints ";
  62. static uchar  Popp_CondBkp[]  = "Enter the Break Condition:";
  63. static BUTTON Popbt_CondBkp[] = { {15,27,5,"Enter",ENTER},
  64.                                   {15,37,6,"Cancel",ESC},
  65.                                   {15,48,4,"Help",F1} };
  66. POPUPSHELL Pop_CondBkp = { 8,16,9,46,3,1,Popt_CondBkp,Popp_CondBkp,
  67.                            &Popbt_CondBkp[0]};
  68.  
  69. /*****************************************************************************/
  70. /* Data for name or address break points popup.                              */
  71. /*****************************************************************************/
  72. static uchar  Popt_Bkpt[]  = " Breakpoints ";
  73. static uchar  Popp_Bkpt[]  = "Enter the Name Or Address:";
  74. static BUTTON Popbt_Bkpt[] = { {15,27,5,"Enter",ENTER},
  75.                                {15,37,6,"Cancel",ESC},
  76.                                {15,48,4,"Help",F1} };
  77. POPUPSHELL Pop_Bkpt = { 8,16,9,46,3,1,Popt_Bkpt,Popp_Bkpt,
  78.                            &Popbt_Bkpt[0]};
  79.  
  80. uchar ScrollShade1[] =  {SHADEDARK,0};
  81. uchar ScrollShade2[] =  {Attrib(vaMenuCsr),' ',0};
  82. uchar hilite[]       =  {RepCnt(1),Attrib(vaMenuCsr),0};
  83. uchar hiatt[]        =  {RepCnt(1),Attrib(vaMenuSel),0};
  84. uchar badhilite[]    =  {RepCnt(1),Attrib(vaBadSel),0};
  85. uchar normal[]       =  {RepCnt(1),Attrib(vaMenuBar),0};
  86. uchar badnormal[]    =  {RepCnt(1),Attrib(vaBadAct),0};
  87. uchar Shadow[]       =  {RepCnt(1),Attrib(vaShadow),0};
  88. uchar ClearField[]   =  {RepCnt(1),' ',0};
  89. uchar InScrollMode   =  FALSE;
  90.