home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tk42r2s.zip / tk4.2 / os2 / rc / cursors.h < prev    next >
C/C++ Source or Header  |  1998-01-31  |  2KB  |  90 lines

  1. #include "TkResIDs.h"
  2.  
  3. typedef struct {
  4.   char* name;
  5.   int   id;
  6. } myCursor;
  7.  
  8. static myCursor cursors[] = {
  9.   {"X_cursor", X_cursor},
  10.   {"arrow", arrow},
  11.   {"based_arrow_down", based_arrow_down},
  12.   {"based_arrow_up", based_arrow_up},
  13.   {"boat", boat},
  14.   {"bogosity", bogosity},
  15.   {"bottom_left_corner", bottom_left_corner},
  16.   {"bottom_right_corner", bottom_right_corner},
  17.   {"bottom_side", bottom_side},
  18.   {"bottom_tee", bottom_tee},
  19.   {"box_spiral", box_spiral},
  20.   {"center_ptr", center_ptr},
  21.   {"circle", circle},
  22.   {"clock", clock},
  23.   {"coffee_mug", coffee_mug},
  24.   {"cross", cross},
  25.   {"cross_reverse", cross_reverse},
  26.   {"crosshair", crosshair},
  27.   {"diamond_cross", diamond_cross},
  28.   {"dot", dot},
  29.   {"dotbox", dotbox},
  30.   {"double_arrow", double_arrow},
  31.   {"draft_large", draft_large},
  32.   {"draft_small", draft_small},
  33.   {"draped_box", draped_box},
  34.   {"exchange", exchange},
  35.   {"fleur", fleur},
  36.   {"gobbler", gobbler},
  37.   {"gumby", gumby},
  38.   {"hand1", hand1},
  39.   {"hand2", hand2},
  40.   {"heart", heart},
  41.   {"icon", xicon},
  42.   {"iron_cross", iron_cross},
  43.   {"left_ptr", left_ptr},
  44.   {"left_side", left_side},
  45.   {"left_tee", left_tee},
  46.   {"leftbutton", leftbutton},
  47.   {"ll_angle", ll_angle},
  48.   {"lr_angle", lr_angle},
  49.   {"man", man},
  50.   {"middlebutton", middlebutton},
  51.   {"mouse", mouse},
  52.   {"pencil", pencil},
  53.   {"pirate", pirate},
  54.   {"plus", plus},
  55.   {"question_arrow", question_arrow},
  56.   {"right_ptr", right_ptr},
  57.   {"right_side", right_side},
  58.   {"right_tee", right_tee},
  59.   {"rightbutton", rightbutton},
  60.   {"rtl_logo", rtl_logo},
  61.   {"sailboat", sailboat},
  62.   {"sb_down_arrow", sb_down_arrow},
  63.   {"sb_h_double_arrow", sb_h_double_arrow},
  64.   {"sb_left_arrow", sb_left_arrow},
  65.   {"sb_right_arrow", sb_right_arrow},
  66.   {"sb_up_arrow", sb_up_arrow},
  67.   {"sb_v_double_arrow", sb_v_double_arrow},
  68.   {"shuttle", shuttle},
  69.   {"sizing", sizing},
  70.   {"spider", spider},
  71.   {"spraycan", spraycan},
  72.   {"star", star},
  73.   {"target", target},
  74.   {"tcross", tcross},
  75.   {"tk", tk},
  76.   {"top_left_arrow", top_left_arrow},
  77.   {"top_left_corner", top_left_corner},
  78.   {"top_right_corner", top_right_corner},
  79.   {"top_side", top_side},
  80.   {"top_tee", top_tee},
  81.   {"trek", trek},
  82.   {"ul_angle", ul_angle},
  83.   {"umbrella", umbrella},
  84.   {"ur_angle", ur_angle},
  85.   {"watch", watch},
  86.   {"xterm", xterm},
  87.   {NULL, 0}
  88. };
  89.  
  90.