home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / exedt040.zip / src / settings.h < prev    next >
C/C++ Source or Header  |  1997-05-04  |  539b  |  44 lines

  1. #define N_Pages 2
  2.  
  3.  
  4. typedef
  5. struct _TSet2
  6. {
  7.  ULONG SVs_Back,SVs_Text,Sel_Back,Sel_Text;
  8.  FATTRS Font;
  9. } TSet2;
  10.  
  11. typedef
  12. struct _TSet1
  13. {
  14.  BOOL SCb_Wrap;
  15.  BOOL SCb_ReadOnly;
  16.  ULONG  SSb_Tabs;
  17. } TSet1;
  18.  
  19. typedef
  20. struct _TSettings
  21. {
  22.  TSet2 Set2;
  23.  TSet1 Set1;
  24. } TSettings;
  25.  
  26. typedef
  27. struct _TNBPage
  28. {
  29.  HWND hwndDlg;
  30.  PSZ Status;
  31.  PSZ Tab;
  32. } TNBPage;
  33. typedef TNBPage *PNBPage;
  34.  
  35. typedef
  36. struct _TSettingsNB
  37. {
  38.  USHORT usSzStruct;
  39.  HWND hwndNB;
  40.  PNBPage Pages[N_Pages];
  41.  TSettings Settings;
  42. } TSettingsNB;
  43.  
  44.