home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / fsrc1241.zip / toolbarconfig.h < prev    next >
Text File  |  1995-10-14  |  873b  |  37 lines

  1. /* TOOLBARCONFIG.H */
  2.  
  3.  
  4. /* Konfigurierte Toolbar */
  5.  
  6. typedef struct
  7. {
  8.    ULONG ulButtonID;
  9.    ULONG ulFlags;
  10. } BUTTONCONFIG, *PBUTTONCONFIG;
  11.  
  12. typedef struct
  13. {
  14.    USHORT        cb;
  15.    BOOL          bDirty;
  16.    ULONG         ulNumButtons;
  17.    PBUTTONCONFIG pButtons;
  18.    WINPOS        SelectPos;
  19.    LONG          lLeftFore;
  20.    LONG          lRightFore;
  21.    LONG          lLeftBack;
  22.    LONG          lRightBack;
  23.    char          pchLeftFont[FACESIZE+5];
  24.    char          pchRightFont[FACESIZE+5];
  25. } TOOLBARCONFIG, *PTOOLBARCONFIG;
  26.  
  27.  
  28. /* Funktionen */
  29.  
  30. MRESULT EXPENTRY ToolbarConfigProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
  31. void LoadDefaultToolbar(PTOOLBARCONFIG pConfig);
  32. void RefreshToolbar(HWND hwndToolbar, PTOOLBARCONFIG pConfig, BOOL bSmallIcons);
  33. ULONG QueryBitmap(ULONG ulButtonID, BOOL bSmall);
  34.  
  35.  
  36. /* End of TOOLBARCONFIG.H */
  37.