home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / canvas / lunchdlg / lunchdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  1.2 KB  |  44 lines

  1. /**********************************************************
  2. / Lunch dialog - Sample Dialog Template
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc.
  6. / All Rights Reserved.
  7. **********************************************************/
  8. #include <icconst.h>
  9.  
  10. #ifdef IC_PM
  11.   // Define special window identifiers not originally
  12.   // included in VisualAge for C++ V3.0.
  13.   #ifndef IC_ID_OK
  14.     #define IC_ID_OK     1
  15.   #endif
  16.   #ifndef IC_ID_CLOSE
  17.     #define IC_ID_CLOSE  0x8004
  18.   #endif
  19.   #ifndef IC_ID_HELP
  20.     #define IC_ID_HELP   0x7008
  21.   #endif
  22. #endif
  23.  
  24. #define ID_LUNCH_DIALOG   100
  25. #define ID_LUNCH_TEXT     101
  26. #define ID_FOOD           102
  27. #define ID_HAMBURGER      103
  28. #define ID_CHEESEBURGER   104
  29. #define ID_HOTDOG         105
  30. #define ID_PIZZA          106
  31. #define ID_BEVERAGE       107
  32. #define ID_MILK           108
  33. #define ID_SOFTDRINK      109
  34. #define ID_JUICE          110
  35. #define ID_WATER          111
  36. #define ID_SIDEORDERS     112
  37. #define ID_SALAD          113
  38. #define ID_FRIES          114
  39. #define ID_REQUESTPROMPT  115
  40. #define ID_REQUEST        116
  41. #define ID_OK             IC_ID_OK
  42. #define ID_CANCEL         IC_ID_CLOSE
  43. #define ID_HELP           IC_ID_HELP
  44.