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

  1. #ifndef _TRACEBOX_H_
  2. #define _TRACEBOX_H_
  3. /************************************************************
  4. / Problem Determination  - Trace Queue Browser
  5. /
  6. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  8. / All Rights Reserved.
  9. ************************************************************/
  10.  
  11. /************************************************************
  12.  Window and menu item IDs
  13. ************************************************************/
  14. #define WND_MAIN       100
  15.  
  16. #define  MI_FILE        2000
  17. #define  MI_EXIT        2001
  18. #define  MI_SELECTED    2010
  19. #define  MI_CUT         2011
  20. #define  MI_COPY        2012
  21. #define  MI_CLEAR       2013
  22. #define  MI_SELECTALL   2014
  23. #define  MI_DESELECTALL 2015
  24. #define  MI_VIEW        2020
  25. #define  MI_INCLUDE     2021
  26. #define  MI_INCLUDEALL  2022
  27. #define  MI_INPUTFILTER 2023
  28. #define  MI_AUTOSCROLL  2024
  29. #define  MI_START       2030
  30. #define  MI_HELP        2040
  31. #define  MI_ABOUT       2041
  32.  
  33. /************************************************************
  34.  String IDs
  35. ************************************************************/
  36. #define  ABOUT_TEXT     2000
  37. #define  START_TEXT     2001
  38. #define  STOP_TEXT      2002
  39.  
  40.  
  41.  
  42. /************************************************************
  43.  Message definitions
  44.  Note: 0x1000 is WM_USER
  45. ************************************************************/
  46.  
  47. #define USER_MESSAGE_START 0x1100
  48. #define ADD_OBJECT         USER_MESSAGE_START
  49. #define START_QUEUE        USER_MESSAGE_START + 1
  50. #define DELETE_ALL         USER_MESSAGE_START + 2
  51. #define USER_MESSAGE_END   USER_MESSAGE_START + 2
  52.  
  53. #endif
  54.