home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / bsscdemo / treedem3 / treedem3.rc < prev    next >
Encoding:
Text File  |  1993-05-28  |  1.8 KB  |  67 lines

  1. #include <windows.h>
  2. #include "treedem3.h"
  3.  
  4. #include "treedb.dat"
  5. #include "listdb.dat"
  6.  
  7. IDR_CLOSED_FOLDER BITMAP "closefld.bmp"
  8. IDR_OPEN_FOLDER   BITMAP "openfld.bmp"
  9. IDR_SHEET         BITMAP "sheet.bmp"
  10. IDR_API           BITMAP "api.bmp"
  11. IDR_ARG           BITMAP "arg.bmp"
  12. IDR_TXT           BITMAP "txt.bmp"
  13. IDR_RET           BITMAP "ret.bmp"
  14. IDR_DSC           BITMAP "dsc.bmp"
  15. IDR_COM           BITMAP "com.bmp"
  16.  
  17. IDR_TREEDEMO_ICON ICON   "treedem3.ico"
  18.  
  19. InitialMenu MENU
  20. {
  21.    POPUP "&File"
  22.    {
  23.       MENUITEM "New &Tree",              IDM_NEW_TREECTRL
  24.       MENUITEM "New &List",              IDM_NEW_LISTCTRL
  25.       MENUITEM SEPARATOR
  26.       MENUITEM "E&xit",                  IDM_EXIT
  27.    }
  28. }
  29.  
  30. TreeCtrlMenu MENU
  31. {
  32.    POPUP "&File"
  33.    {
  34.       MENUITEM "New &Tree",              IDM_NEW_TREECTRL
  35.       MENUITEM "New &List",              IDM_NEW_LISTCTRL
  36.       MENUITEM "&Close",                 IDM_CLOSE
  37.       MENUITEM SEPARATOR
  38.       MENUITEM "E&xit",                  IDM_EXIT
  39.    }
  40.    POPUP "&Window"
  41.    {
  42.       MENUITEM "&Cascade",               IDM_CASCADE
  43.       MENUITEM "&Tile",                  IDM_TILE
  44.       MENUITEM "Arrange &Icons",         IDM_ARRANGE
  45.       MENUITEM "Close &All",             IDM_CLOSEALL
  46.    }
  47. }
  48.  
  49. ListCtrlMenu MENU
  50. {
  51.    POPUP "&File"
  52.    {
  53.       MENUITEM "New &Tree",              IDM_NEW_TREECTRL
  54.       MENUITEM "New &List",              IDM_NEW_LISTCTRL
  55.       MENUITEM "&Close",                 IDM_CLOSE
  56.       MENUITEM SEPARATOR
  57.       MENUITEM "E&xit",                  IDM_EXIT
  58.    }
  59.    POPUP "&Window"
  60.    {
  61.       MENUITEM "&Cascade",               IDM_CASCADE
  62.       MENUITEM "&Tile",                  IDM_TILE
  63.       MENUITEM "Arrange &Icons",         IDM_ARRANGE
  64.       MENUITEM "Close &All",             IDM_CLOSEALL
  65.    }
  66. }
  67.