Changeset 2


Ignore:
Timestamp:
Oct 26, 2012, 12:07:29 AM (12 years ago)
Author:
Andy Willis
Message:

2.61

Location:
trunk
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/common.c

    r1 r2  
    163163{ MENUITEM mi={0},mi1={0};
    164164  POINTL ptl;
    165   SHORT sItemId,sItemNum,sLastId,k;
     165  SHORT sItemId,sItemNum,sLastId;
    166166  UCHAR ucBuf[64];
    167167  HWND hwndSubmenu;
     
    171171    sItemId = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu,MM_ITEMIDFROMPOSITION,
    172172                                      MPFROMSHORT(sItemNum-1),0));
    173     sItemNum = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu,MM_DELETEITEM,
     173    sItemNum = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu,
     174                                       sItemId==CMD_XCENTERSUBMENU?MM_REMOVEITEM:MM_DELETEITEM,
    174175                                       MPFROM2SHORT(sItemId,FALSE),0));
    175176  }
     
    249250    WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi), MPFROMP(ucBuf));
    250251  }
     252#else
     253  WinSetPresParam(plswData->pWidget->hwndContextMenu,PP_FONTNAMESIZE,7,"8.Helv");
     254
     255  if (bTaskBar && iMenuAtItem >= 0) {
     256  // now set the old context menu as submenu;
     257    WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi1), MPFROMP(ucBuf));
     258
     259    mi.afAttribute = mi.hItem = 0;
     260    mi.afStyle = MIS_TEXT | MIS_SUBMENU;
     261    mi.id = CMD_XCENTERSUBMENU;
     262    mi.hwndSubMenu = plswData->pWidget->hwndContextMenu;
     263    WinLoadString(plswData->hab,plswData->hmodRes,STRID_XCENTERSUBMENU,sizeof(ucBuf),ucBuf);
     264    sItemId = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi),MPFROMP(ucBuf)));
     265  }
    251266#endif
    252267
     268  WinQueryPointerPos(HWND_DESKTOP,&ptl);
    253269#ifdef XWORKPLACE
    254 // now copy the old context menu as submenu;
    255 // this code adapted from XCenter winlist widget
    256   if (bTaskBar) {
    257     if (iMenuAtItem >= 0) {
    258       WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi1), MPFROMP(ucBuf));
    259 
    260       hwndSubmenu = WinCreateMenu(plswData->hwndMenu, NULL);
    261 
    262 //      WinSetWindowUShort(hwndSubmenu,QWS_ID,CMD_XCENTERSUBMENU);
    263 
    264       mi.afAttribute = mi.hItem = 0;
    265       mi.afStyle = MIS_TEXT | MIS_SUBMENU;
    266       mi.id = CMD_XCENTERSUBMENU;
    267       mi.hwndSubMenu = hwndSubmenu;
    268 
    269       WinLoadString(plswData->hab,plswData->hmodRes,STRID_XCENTERSUBMENU,sizeof(ucBuf),ucBuf);
    270 
    271       sItemId = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi),MPFROMP(ucBuf)));
    272     } else
    273       sItemId = 0;
    274 
    275     if (sItemId != MIT_MEMERROR && sItemId != MIT_ERROR) {
    276       sItemNum = SHORT1FROMMR(WinSendMsg(plswData->pWidget->hwndContextMenu,
    277                                          MM_QUERYITEMCOUNT, 0, 0));
    278 
    279       // loop through all entries in the original menu
    280       for (k = 0; k < sItemNum; k++) {
    281         sItemId = SHORT1FROMMR(WinSendMsg(plswData->pWidget->hwndContextMenu,
    282                                MM_ITEMIDFROMPOSITION, MPFROMSHORT(k), 0));
    283       // get this menu item into mi buffer
    284         WinSendMsg(plswData->pWidget->hwndContextMenu, MM_QUERYITEM,
    285                    MPFROM2SHORT(sItemId, FALSE), MPFROMP(&mi));
    286         if (mi.id==ID_CRMI_PROPERTIES) mi.id = CMD_SHOWSETTINGS;
    287       // query text of this menu entry into our buffer
    288         WinSendMsg(plswData->pWidget->hwndContextMenu, MM_QUERYITEMTEXT,
    289                    MPFROM2SHORT(sItemId, sizeof(ucBuf)-1), MPFROMP(ucBuf));
    290       // add this entry to our new menu
    291         mi.iPosition = MIT_END;
    292         WinSendMsg(iMenuAtItem < 0 ? plswData->hwndMenu : hwndSubmenu,
    293                    MM_INSERTITEM, MPFROMP(&mi), MPFROMP(ucBuf));
    294       }
    295     }
    296   }
     270  WinPopupMenu(HWND_DESKTOP, bTaskBar?plswData->hwndTaskBarClient:plswData->hwndPopClient,
     271               (iMenuAtItem<0&&bTaskBar)?plswData->pWidget->hwndContextMenu:plswData->hwndMenu,
     272               ptl.x, ptl.y,0, PU_HCONSTRAIN | PU_VCONSTRAIN | PU_MOUSEBUTTON1 | PU_MOUSEBUTTON2 | PU_KEYBOARD);
     273#else
     274  WinPopupMenu(HWND_DESKTOP, bTaskBar?plswData->hwndTaskBarClient:plswData->hwndPopClient,plswData->hwndMenu,
     275               ptl.x, ptl.y,0, PU_HCONSTRAIN | PU_VCONSTRAIN | PU_MOUSEBUTTON1 | PU_MOUSEBUTTON2 | PU_KEYBOARD);
    297276#endif
    298 
    299   WinQueryPointerPos(HWND_DESKTOP,&ptl);
    300   WinPopupMenu(HWND_DESKTOP, bTaskBar?plswData->hwndTaskBarClient:plswData->hwndPopClient, plswData->hwndMenu, ptl.x, ptl.y,
    301                0, PU_HCONSTRAIN | PU_VCONSTRAIN | PU_MOUSEBUTTON1 | PU_MOUSEBUTTON2 | PU_KEYBOARD);
    302277}
    303278
  • TabularUnified trunk/h/lswitch.h

    r1 r2  
    3939  #define WIDGETMODNAME "LSWIDGET.DLL"
    4040
    41 //to be used during the popup window initialization and by the hook functions
    42 extern PXCENTERWIDGET pWidget;
    4341//the widget DLL module handle
    4442extern HMODULE hmodWidgetDll;
     
    4745#define VERSIONMAJOR 2
    4846#define VERSIONMINOR 60
    49 #define REVISION 8
     47#define REVISION 9
    5048
    5149#define LASTINIVERMAJOROK 2
    5250#define LASTINIVERMINOROK 60
    5351#define LASTINIREVISIONOK 8
     52
     53#define LASTHOOKVERMAJOROK 2
     54#define LASTHOOKVERMINOROK 60
     55#define LASTHOOKREVISIONOK 9
    5456
    5557typedef APIENTRY RESVERPROC(UCHAR *NameString,USHORT usLen);
     
    359361LONG EXPENTRY lswHookInit(LSWDATA *plswData);
    360362VOID EXPENTRY lswHookTerm(LSWDATA *plswData);
    361 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData);
    362 VOID SwitcherTerm(LSWDATA *plswData);
     363ULONG EXPENTRY lswHookGetVersion(void);
     364LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData, USHORT usFunc);
     365VOID SwitcherTerm(LSWDATA *plswData,USHORT usFunc);
    363366VOID APIENTRY lswExitProc(VOID);
    364367
  • TabularUnified trunk/hook/lswhook.c

    r1 r2  
    316316}
    317317
    318 
     318ULONG EXPENTRY lswHookGetVersion(void)
     319{
     320  return MAKEULONG(MAKEUSHORT(VERSIONMAJOR,VERSIONMINOR),MAKEUSHORT(REVISION,0));
     321}
    319322
  • TabularUnified trunk/lswitch.c

    r1 r2  
    810810
    811811  case WM_CREATE: {
    812 #ifndef XWORKPLACE
    813812    DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE);
    814 #else
    815     plswData=pWidget->pUser;
    816 #endif
    817813
    818814    WinStartTimer(plswData->hab, hwnd, 0, BUBBLETIMERINTERVAL);
     
    841837#ifndef XWORKPLACE
    842838    WinSetWindowPtr(hwnd, 0, plswData);
     839#else
     840    WinSetWindowPtr(hwnd, 0, plswData->pWidget);
     841#endif
    843842    DosFreeMem(plswData);
    844 #else
    845     WinSetWindowPtr(hwnd, 0, pWidget);
    846 #endif
     843
    847844  }
    848845  case WM_SYSVALUECHANGED:
     
    10371034
    10381035
    1039 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData)
    1040 { ULONG flFrameFlags;
     1036LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData, USHORT usFunc)
     1037{ ULONG flFrameFlags,ulHookVer;
    10411038  LONG rc,rc1 = 0;
    10421039  LSWDATA *plswData;
    1043   UCHAR ucFName[CCHMAXPATH];
     1040  UCHAR ucFName[CCHMAXPATH], ucResLang,ucFound=0,ucLangStr[32];
    10441041  SWCNTRL swctl;
    10451042
    1046 
    1047   DosSetPriority(PRTYS_THREAD,PRTYC_TIMECRITICAL,+31,0);
    1048 
    1049   if ((rc = DosAllocSharedMem((VOID*)&plswData,SHAREMEM_NAME,sizeof(LSWDATA),PAG_COMMIT | PAG_READ | PAG_WRITE))!=0) {
     1043// usFunc is 0 for app initialization, 1 and for widget phases 1 and 2 initialization
     1044  if (usFunc != 1)
     1045    DosSetPriority(PRTYS_THREAD,PRTYC_TIMECRITICAL,+31,0);
     1046
     1047  if (usFunc !=2) {
     1048//need to loop so that search handle is closed
     1049    while (FindResDll(ucFName, sizeof(ucFName), &ucResLang, ucLangStr, sizeof(ucLangStr)))
     1050      if (ucResLang!=0) ucFound=1;
     1051    if (!ucFound) {
     1052      strncpy(ucErrMsg,"Could not find resource DLL or resource DLL invalid",usMsgLen);
     1053      return 1;
     1054    }
     1055
     1056    ulHookVer = lswHookGetVersion();
     1057    if (LOUCHAR(LOUSHORT(ulHookVer)) < LASTHOOKVERMAJOROK ||
     1058                HIUCHAR(LOUSHORT(ulHookVer)) < LASTHOOKVERMINOROK ||
     1059                LOUCHAR(HIUSHORT(ulHookVer)) < LASTHOOKREVISIONOK) {
     1060      strncpy(ucErrMsg,"Wrong hook DLL version",usMsgLen);
     1061      return 1;
     1062    }
     1063
     1064    if (!WinRegisterClass(hab,LSWPOPUPCLASS,PopupWndProc,CS_SAVEBITS|CS_SYNCPAINT,sizeof(PLSWDATA))) {
     1065      strncpy(ucErrMsg,"WinRegisterClass(lswPopupClass)",usMsgLen);
     1066      return WinGetLastError(hab);
     1067    }
     1068
     1069    if ((rc = DosAllocSharedMem((VOID*)&plswData,SHAREMEM_NAME,sizeof(LSWDATA),PAG_COMMIT | PAG_READ | PAG_WRITE))!=0) {
     1070      strncpy(ucErrMsg,"DosAllocSharedMem",usMsgLen);
     1071      return rc;
     1072    }
     1073    memset(plswData,0,sizeof(LSWDATA));
     1074    *ppData = (PVOID)plswData;
     1075
    10501076#ifdef XWORKPLACE
    1051     *ppData = NULL;
     1077    plswData->bWidget = TRUE;
    10521078#endif
    1053     strncpy(ucErrMsg,"DosAllocSharedMem",usMsgLen);
    1054     return rc;
    1055   }
    1056 
    1057   memset(plswData,0,sizeof(LSWDATA));
    1058 
    1059 #ifdef XWORKPLACE
    1060   plswData->bWidget = TRUE;
    1061 //  plswData->hmodRes = hmodWidgetDll;
    1062   pWidget = (PXCENTERWIDGET)(*ppData);
    1063   pWidget->pUser = plswData;
     1079
     1080    plswData->hab = hab;
     1081    plswData->hmq = hmq;
     1082
     1083    GetIniFileName(ucFName,sizeof(ucFName));
     1084    if (LoadSettings(hab,ucFName,&plswData->Settings)!=0) rc1=LSWERRCANTLOADSETTINGS;
     1085    if (rc1==0 && !CheckSettings(&plswData->Settings)) rc1=LSWERROLDSETTINGS;
     1086
     1087    if (rc1 < 0) InitSettings(&plswData->Settings);
     1088  }
     1089
     1090  if (usFunc != 1) {
     1091    if (usFunc==2)
     1092      plswData=(PLSWDATA)(*ppData);
     1093
     1094    if ((plswData->hmodRes=LoadResource(plswData->Settings.ucLanguage, plswData, TRUE))==0) {
     1095      strncpy(ucErrMsg,"Could not load resources ",usMsgLen);
     1096      return 1;
     1097    }
     1098
     1099    if ((rc = DosCreateEventSem(SEMRUNNINGNAME,&plswData->hevRunning,0,0)) ||
     1100        (rc = DosCreateEventSem(SEMCTRLTABNAME,&plswData->hevCtrlTab,0,plswData->Settings.bUseCtrl))) {
     1101      strncpy(ucErrMsg,"DosCreateEventSem",usMsgLen);
     1102      return rc;
     1103    }
     1104
     1105    flFrameFlags = FCF_DLGBORDER;
     1106#ifndef XWORKPLACE
     1107    flFrameFlags |= FCF_TASKLIST | FCF_ICON;
    10641108#endif
    1065 
    1066   *ppData = (PVOID)plswData;
    1067 
    1068   plswData->hab = hab;
    1069   plswData->hmq = hmq;
    1070 
    1071   GetIniFileName(ucFName,sizeof(ucFName));
    1072   if (LoadSettings(hab,ucFName,&plswData->Settings)!=0) rc1=LSWERRCANTLOADSETTINGS;
    1073   if (rc1==0 && !CheckSettings(&plswData->Settings)) rc1=LSWERROLDSETTINGS;
    1074 
    1075   if (rc1 < 0) InitSettings(&plswData->Settings);
    1076 
    1077   if ((plswData->hmodRes=LoadResource(plswData->Settings.ucLanguage, plswData, TRUE))==0) {
    1078     strncpy(ucErrMsg,"Could not find resource DLL or resource DLL invalid",usMsgLen);
    1079     return 1;
    1080   }
    1081 
    1082   if ((rc = DosCreateEventSem(SEMRUNNINGNAME,&plswData->hevRunning,0,0)) ||
    1083       (rc = DosCreateEventSem(SEMCTRLTABNAME,&plswData->hevCtrlTab,0,plswData->Settings.bUseCtrl))) {
    1084     strncpy(ucErrMsg,"DosCreateEventSem",usMsgLen);
    1085     return rc;
    1086   }
    1087 
    1088   if (!WinRegisterClass(hab,LSWPOPUPCLASS,PopupWndProc,CS_SAVEBITS|CS_SYNCPAINT,sizeof(PLSWDATA))) {
    1089     strncpy(ucErrMsg,"WinRegisterClass(lswPopupClass)",usMsgLen);
    1090     return WinGetLastError(hab);
    1091   }
    1092 
    1093   flFrameFlags = FCF_DLGBORDER;
    1094 #ifndef XWORKPLACE
    1095   flFrameFlags |= FCF_TASKLIST | FCF_ICON;
    1096 #endif
    1097   plswData->hwndPopup = WinCreateStdWindow(HWND_DESKTOP,0,&flFrameFlags,
     1109    plswData->hwndPopup = WinCreateStdWindow(HWND_DESKTOP,0,&flFrameFlags,
    10981110                          LSWPOPUPCLASS,"",
    10991111                          0,0,ID_POPUPWIN,&plswData->hwndPopClient);
    11001112
    1101   if (plswData->hwndPopup==NULLHANDLE) {
    1102     strncpy(ucErrMsg,"WinCreateStdWin(lswPopupWin)",usMsgLen);
    1103     return WinGetLastError(hab);
    1104   }
    1105 
    1106   WinSetWindowPos(plswData->hwndPopup,HWND_BOTTOM, POPUPWINHIDEPOSX, POPUPWINHIDEPOSY,
    1107                   0, 0, SWP_MOVE | SWP_SIZE | SWP_SHOW | SWP_DEACTIVATE | SWP_ZORDER);
    1108 
    1109   WinSetWindowPtr(plswData->hwndPopup, 0, (VOID *)WinSubclassWindow(plswData->hwndPopup, FrameWndProc));
    1110 
    1111   if ((plswData->itidFSDispat = _beginthread(FSMonDispat,NULL,0x4000,plswData))<0) {
    1112     strncpy(ucErrMsg,"_beginthread",usMsgLen);
    1113     return plswData->itidFSDispat;
    1114   }
    1115 
    1116   if ((rc = lswHookInit(plswData)) < 0) {
    1117     strncpy(ucErrMsg,"lswHookInit",usMsgLen);
    1118     return (-rc);
    1119   } else if (LOUCHAR(LOUSHORT(rc)) < LASTINIVERMAJOROK ||
    1120              HIUCHAR(LOUSHORT(rc)) < LASTINIVERMINOROK ||
    1121              LOUCHAR(HIUSHORT(rc)) < LASTINIREVISIONOK) {
    1122     strncpy(ucErrMsg,"Wrong hook DLL version",usMsgLen);
    1123     return 1;
    1124   }
     1113    if (plswData->hwndPopup==NULLHANDLE) {
     1114      strncpy(ucErrMsg,"WinCreateStdWin(lswPopupWin)",usMsgLen);
     1115      return WinGetLastError(hab);
     1116    }
     1117
     1118    WinSetWindowPos(plswData->hwndPopup,HWND_BOTTOM, POPUPWINHIDEPOSX, POPUPWINHIDEPOSY,
     1119                    0, 0, SWP_MOVE | SWP_SIZE | SWP_SHOW | SWP_DEACTIVATE | SWP_ZORDER);
     1120
     1121    WinSetWindowPtr(plswData->hwndPopup, 0, (VOID *)WinSubclassWindow(plswData->hwndPopup, FrameWndProc));
     1122
     1123    if ((plswData->itidFSDispat = _beginthread(FSMonDispat,NULL,0x4000,plswData))<0) {
     1124      strncpy(ucErrMsg,"_beginthread",usMsgLen);
     1125      return plswData->itidFSDispat;
     1126    }
     1127
     1128    if ((rc = lswHookInit(plswData)) < 0) {
     1129      strncpy(ucErrMsg,"lswHookInit",usMsgLen);
     1130      return (-rc);
     1131    }
    11251132
    11261133#ifndef XWORKPLACE
    1127   plswData->hswitch = WinQuerySwitchHandle(plswData->hwndPopup, 0);
    1128   WinQuerySwitchEntry(plswData->hswitch, &swctl);
    1129   swctl.uchVisibility = plswData->Settings.bShowInWinList ? SWL_VISIBLE : SWL_INVISIBLE;
    1130   WinChangeSwitchEntry(plswData->hswitch, &swctl);
    1131 
    1132   if (plswData->Settings.bTaskBarOn)
    1133     if ((rc = InitTaskBar(plswData,ucErrMsg,usMsgLen)) != 0)
     1134    plswData->hswitch = WinQuerySwitchHandle(plswData->hwndPopup, 0);
     1135    WinQuerySwitchEntry(plswData->hswitch, &swctl);
     1136    swctl.uchVisibility = plswData->Settings.bShowInWinList ? SWL_VISIBLE : SWL_INVISIBLE;
     1137    WinChangeSwitchEntry(plswData->hswitch, &swctl);
     1138
     1139    if (plswData->Settings.bTaskBarOn)
     1140      if ((rc = InitTaskBar(plswData,ucErrMsg,usMsgLen)) != 0)
     1141        return rc;
     1142
     1143    if ((rc = DosExitList(EXLST_ADD, (PFNEXITLIST)lswExitProc)) !=0 ) {
     1144      strncpy(ucErrMsg,"DosExitList",usMsgLen);
    11341145      return rc;
    1135 
    1136   if ((rc = DosExitList(EXLST_ADD, (PFNEXITLIST)lswExitProc)) !=0 ) {
    1137     strncpy(ucErrMsg,"DosExitList",usMsgLen);
    1138     return rc;
    1139   }
     1146    }
    11401147#else
    1141   if (pWidget->pGlobals!=NULL) plswData->hswitch = WinQuerySwitchHandle(pWidget->pGlobals->hwndFrame, 0);
     1148    if (plswData->pWidget->pGlobals!=NULL) plswData->hswitch = WinQuerySwitchHandle(plswData->pWidget->pGlobals->hwndFrame, 0);
    11421149#endif
     1150  }
    11431151
    11441152  return rc1;
     
    11461154
    11471155
    1148 VOID SwitcherTerm(LSWDATA *plswData)
     1156VOID SwitcherTerm(LSWDATA *plswData,USHORT usFunc)
    11491157{
    1150 
    1151   lswHookTerm(plswData);
    1152 
    1153   DosPostEventSem(plswData->hevRunning);
    1154 
    1155   DosSleep(500);
     1158// usFunc is 0 for app termination, 1 and for widget phases 1 and 2 termination
     1159
     1160  if (usFunc!=2) {
     1161    lswHookTerm(plswData);
     1162
     1163    DosPostEventSem(plswData->hevRunning);
     1164    DosSleep(500);
    11561165
    11571166#ifndef XWORKPLACE
    1158   DoneTaskBar(plswData);
     1167    DoneTaskBar(plswData);
    11591168#endif
    11601169
    1161   DosCloseEventSem(plswData->hevShift);
    1162   DosCloseEventSem(plswData->hevPopup);
    1163   DosCloseEventSem(plswData->hevRunning);
    1164   DosCloseEventSem(plswData->hevCtrlTab);
    1165 
    1166   WinDestroyWindow(plswData->hwndPopup);
    1167   if (plswData->bSettingsDlgOn) WinDestroyWindow(plswData->hwndParamDlg);
    1168 
    1169   DosFreeModule(plswData->hmodRes);
     1170    DosCloseEventSem(plswData->hevShift);
     1171    DosCloseEventSem(plswData->hevPopup);
     1172    DosCloseEventSem(plswData->hevRunning);
     1173    DosCloseEventSem(plswData->hevCtrlTab);
     1174
     1175    WinDestroyWindow(plswData->hwndPopup);
     1176    if (plswData->bSettingsDlgOn) WinDestroyWindow(plswData->hwndParamDlg);
     1177
     1178    DosFreeModule(plswData->hmodRes);
     1179  }
    11701180
    11711181#ifndef XWORKPLACE
     
    11731183  WinTerminate(plswData->hab);
    11741184#endif
    1175   DosFreeMem(plswData);
     1185
     1186  if (usFunc!=1)
     1187    DosFreeMem(plswData);
    11761188}
    11771189
     
    11821194  DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE);
    11831195
    1184   if (plswData!=NULL) SwitcherTerm(plswData);
     1196  if (plswData!=NULL) SwitcherTerm(plswData,0);
    11851197
    11861198  DosExitList(EXLST_EXIT, (PFNEXITLIST)lswExitProc);
  • TabularUnified trunk/lswmain.c

    r1 r2  
    6363  }
    6464
    65   lErrCode=SwitcherInit(hab, hmq, ucMsg, sizeof(ucMsg), (PPVOID)(&plswData));
     65  lErrCode=SwitcherInit(hab, hmq, ucMsg, sizeof(ucMsg), (PPVOID)(&plswData),0);
    6666  if (lErrCode > 0) {
    6767    WinLoadString(hab,plswData->hmodRes,MSG_ERROR,sizeof(ucErrStr),ucErrStr);
  • TabularUnified trunk/taskbar.c

    r1 r2  
    549549
    550550  case WM_CREATE: {
    551 #ifndef XWORKPLACE
     551#ifdef XWORKPLACE
     552    VOID *pData;
     553    PXCENTERWIDGET pWidget;
     554    LONG lrc;
     555#endif
    552556    DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE);
    553557    if (plswData==NULL) {
     
    556560    }
    557561    WinSetWindowPtr(hwnd, 0, plswData);
    558     DosFreeMem(plswData);
    559 #else
    560     VOID *pData;
    561     PXCENTERWIDGET pWidget;
    562     LONG lrc;
    563 
     562#ifdef XWORKPLACE
    564563    pWidget = (PXCENTERWIDGET)mp1;
    565564    if (pWidget==NULL || pWidget->pfnwpDefWidgetProc==NULL) {
     
    568567    }
    569568
    570     pData = (PVOID)pWidget;
    571     lrc = SwitcherInit(WinQueryAnchorBlock(hwnd), 0, NULL, 0, &pData);
     569    pWidget->pUser=plswData;
     570    plswData->pWidget = pWidget; plswData->hwndTaskBarClient = hwnd;
     571
     572    pData = (PVOID)plswData;
     573    lrc = SwitcherInit(plswData->hab, 0, NULL, 0, &pData, 2);
    572574    if (lrc > 0) {
    573       if (pData != NULL) SwitcherTerm((PLSWDATA)pData);
     575      if (pData != NULL) SwitcherTerm(plswData,1);
    574576      mrc = (MRESULT)TRUE;
    575577      break;
     
    577579    }
    578580
    579     plswData = (PLSWDATA)pData; pWidget->pUser=plswData;
    580     plswData->pWidget = pWidget; plswData->hwndTaskBarClient = hwnd;
    581 
    582581    WinSetWindowPtr(hwnd, 0, pWidget);
    583582#endif
    584583
    585     WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, 0, BUBBLETIMERINTERVAL);
     584    DosFreeMem(plswData);
     585    WinStartTimer(plswData->hab, hwnd, 0, BUBBLETIMERINTERVAL);
    586586    WinPostMsg(hwnd,LSWM_INITBUTTONS,0,0);
    587587  }
     
    618618#ifdef XWORKPLACE
    619619    DefWgtWndProc=plswData->pWidget->pfnwpDefWidgetProc;
    620     SwitcherTerm(plswData);
     620    SwitcherTerm(plswData,1);
    621621    return DefWgtWndProc(hwnd, msg, mp1, mp2);
    622622#endif
     
    814814      WinPostMsg(plswData->hwndPopClient,msg,mp1,mp2);
    815815#ifdef XWORKPLACE
    816     else
     816    else 
    817817      mrc=plswData->pWidget->pfnwpDefWidgetProc(hwnd, msg, mp1, mp2);
    818818#endif
  • TabularUnified trunk/widget/lswidget.c

    r1 r2  
    5858  "lSwitcher",                // widget class name displayed to user
    5959  WGTF_UNIQUEPERXCENTER,      // widget class flags
    60   NULL//lswShowSettings          // no settings dialog
     60  lswShowSettings          // no settings dialog
    6161};
    6262
    6363
    6464//global variable used by lSwitcher code
    65 //to be used during the popup window initialization
    66 PXCENTERWIDGET pWidget;
    6765//the widget DLL module handle
    6866HMODULE hmodWidgetDll;
     
    9290
    9391VOID EXPENTRY lswShowSettings(PWIDGETSETTINGSDLGDATA pData)
    94 {
     92{ LSWDATA *plswData;
     93
     94  DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE);
    9595/*    HWND hwnd = WinLoadDlg(HWND_DESKTOP,         // parent
    9696                           pData->hwndOwner,
     
    105105        WinDestroyWindow(hwnd);
    106106    }*/
    107   WinDlgBox(HWND_DESKTOP, HWND_DESKTOP, ParmDlgProc,
    108             hmodWidgetDll, DLG_PARAMS, (PLSWDATA)pWidget->pUser);
     107  if (plswData!=NULL)
     108    WinDlgBox(HWND_DESKTOP, HWND_DESKTOP, ParmDlgProc,
     109              plswData->hmodRes, DLG_PARAMS, plswData);
     110  DosFreeMem(plswData);
    109111}
    110112
     
    168170                             PSZ pszErrorMsg)  // if 0 is returned, 500 bytes of error msg
    169171{ PVOID pData;
    170   PXCENTERWIDGET pWidget;
    171172  LONG lrc;
    172173
     
    177178
    178179  hmodWidgetDll = hmodPlugin;
    179 
    180   pWidget = malloc(sizeof(XCENTERWIDGET));
    181   if (pWidget == NULL) {
    182     strcpy(pszErrorMsg,"Memory allocation error");
    183     return 0;
    184   }
    185 
    186   pWidget->pGlobals = NULL;
    187 
    188   pData = (PXCENTERWIDGET)pWidget;
    189   lrc = SwitcherInit(hab, 0, pszErrorMsg, 500, &pData);
    190   if (pData != NULL) SwitcherTerm((PLSWDATA)pData);
    191   free(pWidget);
     180  lrc = SwitcherInit(hab, 0, pszErrorMsg, 500, &pData, 1);
    192181
    193182  if (lrc > 0) return 0;
     
    217206
    218207VOID EXPENTRY WgtUnInitModule(VOID)
    219 {
     208{ LSWDATA *plswData;
     209
     210  DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE);
     211
     212  if (plswData!=NULL) SwitcherTerm(plswData,2);
     213
     214  DosFreeMem(plswData);
    220215}
    221216
  • TabularUnified trunk/widget/xwph/center.h

    r1 r2  
    22/*
    33 *@@sourcefile center.h:
    4  *      public header file for the XCenter.
     4 *      public header file for the XCenter and plugins.
     5 *
    56 *      This contains all declarations which are needed by
    67 *      all parts of the XCenter and to implement widget
     
    89 *
    910 *      WARNING: The XCenter is still work in progress. The
    10  *      definitions in this file are still subject to change.
     11 *      definitions in this file are still subject to change,
     12 *      even though I try to maintain backwards compatibility.
    1113 *
    1214 *      If you are looking at this file from the "toolkit\shared"
     
    1921
    2022/*
    21  *      Copyright (C) 2000-2001 Ulrich M”ller.
     23 *      Copyright (C) 2000-2002 Ulrich M”ller.
    2224 *      This file is part of the XWorkplace source package.
    2325 *      XWorkplace is free software; you can redistribute it and/or modify
     
    4143
    4244    // PM window class name for XCenter client (needed by XWPDaemon)
    43     #define WC_XCENTER_CLIENT     "XWPCenterClient"
     45    // #define WC_XCENTER_CLIENT     "XWPCenterClient"
     46        // moved this to kernel.h because xwpdaemn.c includes this too
     47        // and we don't want the stupid daemon to be recompiled every
     48        // time this header changes
     49        // V0.9.13 (2001-06-19) [umoeller]
    4450
    4551    // button types (src\xcenter\w_objbutton.c)
     
    4753    #define BTF_XBUTTON         2
    4854
    49     // position flags (XCENTERGLOBALS.ulPosition)
    50     #define XCENTER_BOTTOM          0
    51     #define XCENTER_TOP             1
    52 
    53     // display style (XCENTERGLOBALS.flDisplayStyle)
    54     #define XCS_FLATBUTTONS         0x0001
    55     #define XCS_SUNKBORDERS         0x0002
    56     #define XCS_SIZINGBARS          0x0004
    57     #define XCS_ALL3DBORDERS        0x0008
    58 
    5955    /*
    6056     *@@ XCENTERGLOBALS:
    6157     *      global data for a running XCenter instance.
    62      *      A pointer to this structure exists in each
     58     *      This is created once per open XCenter.
     59     *
     60     *      A pointer to this one structure exists in each
    6361     *      XCENTERWIDGET instance so that the widgets
    64      *      can access some of the global data.
     62     *      can access some of the data of the XCenter
     63     *      they belong to.
    6564     *
    6665     *      In this structure, an XCenter instance
     
    7069     *      is fully initialized at the time the widgets
    7170     *      are created, but values may change while the
    72      *      XCenter is open.
     71     *      XCenter is open (e.g. if the user changes
     72     *      view settings in the XCenter settings notebook).
    7373     *
    7474     *      "Globals" isn't really a good name since
     
    8282    {
    8383        HAB                 hab;
    84                     // anchor block of frame and client (constant)
     84                    // anchor block of the XCenter thread and thus
     85                    // all XCenter windows (including widgets)
    8586        HWND                hwndFrame,
    86                     // XCenter frame window (constant)
     87                    // be XCenter frame window (constant)
    8788                            hwndClient;
    88                     // client (child of XCenter frame) (constant)
     89                    // XCenter client (child of XCenter frame) (constant)
    8990
    9091        PVOID               pCountrySettings;
    91                     // country settings; this points to a COUNTRYSETTINGS
    92                     // structure (prfh.h) (constant)
     92                    // country settings; this really points to a
     93                    // COUNTRYSETTINGS structure (include\helpers\prfh.h)
     94                    // and might be useful if you want to use settings
     95                    // from the "Country" object (constant)
    9396
    9497        ULONG               cyInnerClient;
     
    97100                    // resized the XCenter, but it will always be >= cyWidgetMax.
    98101                    // The "inner client" plus the 3D border width plus the
    99                     // border spacing make up the full height of the client.
     102                    // border spacing make up the full height of the XCenter.
    100103
    101104                    // This can change while the XCenter is open.
     
    121124                    // Can be changed by the user while the XCenter is open.
    122125                    // These flags can be any combination of the following:
     126
     127                    #define XCS_FLATBUTTONS         0x0001
    123128                    // -- XCS_FLATBUTTONS: paint buttons flat. If not set,
    124129                    //      paint them raised.
     130
     131                    #define XCS_SUNKBORDERS         0x0002
    125132                    // -- XCS_SUNKBORDERS: paint static controls (e.g. CPU meter)
    126133                    //      with a "sunk" 3D frame. If not set, do not.
     134
     135                    #define XCS_SIZINGBARS          0x0004
    127136                    // -- XCS_SIZINGBARS: XCenter should automatically paint
    128137                    //      sizing bars for sizeable widgets.
     138
     139                    #define XCS_ALL3DBORDERS        0x0008
    129140                    // -- XCS_ALL3DBORDERS: XCenter should draw all four 3D
    130141                    //      borders around itself. If not set, it will only
    131142                    //      draw one border (the one towards the screen).
    132143
     144                    #define XCS_SPACINGLINES        0x0010      // added V0.9.13 (2001-06-19) [umoeller]
     145                    // -- XCS_SPACINGLINES: XCenter should draw small 3D lines
     146                    //      between the widgets too (V0.9.13 (2001-06-19) [umoeller]).
     147
     148                    #define XCS_NOHATCHINUSE        0x0020      // added V0.9.16 (2001-10-24) [umoeller]
     149                    // -- XCS_NOHATCHINUSE: XCenter should not add hatching to
     150                    //      object widgets which represent open objects
     151                    //      (V0.9.16 (2001-10-24) [umoeller])
     152
    133153        ULONG               ulPosition;
    134154                    // XCenter position on screen, if a widget cares...
    135                     // Can be changed by the user while the XCenter is open.
     155                    // can be changed by the user while the XCenter is open.
    136156                    // This is _one_ of the following:
    137                     // -- XCENTER_BOTTOM
    138                     // -- XCENTER_TOP
     157                    #define XCENTER_BOTTOM          0
     158                    #define XCENTER_TOP             1
    139159                    // Left and right are not yet supported.
    140160
    141161        ULONG               ul3DBorderWidth;
    142                     // 3D border width; can change
     162                    // 3D border width; can be changed by user at any time
    143163        ULONG               ulBorderSpacing;
    144                     // border spacing (added to 3D border width); can change
    145         ULONG               ulSpacing;
    146                     // spacing between widgets; can change
     164                    // border spacing (added to 3D border width);
     165                    // can be changed by user at any time
     166        ULONG               ulWidgetSpacing;
     167                    // spacing between widgets; can be changed by user at any time;
     168                    // if flDisplayStyle also has XCS_SPACINGLINES set,
     169                    // an extra 2 pixels will be added internally to this
     170                    // value
    147171
    148172        /*
     
    169193                    // height of tallest widget == minimum height of client
    170194                    // V0.9.9 (2001-03-09) [umoeller]
    171                     // This may change while the XCenter is open.
     195                    // This may change while the XCenter is open if
     196                    // widgets are added or removed.
     197
     198        LONG                lcolClientBackground;
     199                    // background color of the XCenter client area,
     200                    // in case a widget is interested.
     201                    // V0.9.13 (2001-06-19) [umoeller]
     202
     203        PVOID               pvSomSelf;
     204                    // XCenter's somSelf object pointer. This is a
     205                    // XCenter* pointer really, but has been declared
     206                    // as PVOID so you won't have to include the WPS
     207                    // SOM headers.
     208                    // V0.9.13 (2001-06-19) [umoeller]
     209
     210        HWND                hwndTooltip;
     211                    // XCenter's tooltip control (comctl.c). This is
     212                    // the one tooltip that is created for all widgets.
     213                    // This member has been made public so widgets may
     214                    // choose to work with the tooltip... but do not
     215                    // mess with this unless you know what you're doing,
     216                    // since all widgets share this one tooltip.
     217                    // V0.9.13 (2001-06-21) [umoeller]
    172218
    173219    } XCENTERGLOBALS, *PXCENTERGLOBALS;
     220
     221    typedef const struct _XCENTERGLOBALS *PCXCENTERGLOBALS;
    174222
    175223    // forward declaration
    176224    typedef struct _XCENTERWIDGET *PXCENTERWIDGET;
    177225
    178     BOOL APIENTRY ctrSetSetupString(LHANDLE hSetting, const char *pcszNewSetupString);
    179     typedef BOOL APIENTRY CTRSETSETUPSTRING(LHANDLE hSetting, const char *pcszNewSetupString);
     226    BOOL APIENTRY ctrSetSetupString(LHANDLE hSetting, PCSZ pcszNewSetupString);
     227    typedef BOOL APIENTRY CTRSETSETUPSTRING(LHANDLE hSetting, PCSZ pcszNewSetupString);
    180228    typedef CTRSETSETUPSTRING *PCTRSETSETUPSTRING;
    181229
     
    189237     *      work as follows:
    190238     *
    191      *      1.  You must a function that displays a modal
     239     *      1.  You must write a function that displays a modal
    192240     *          dialog. This function must have the following
    193241     *          prototype:
     
    195243     +              VOID EXPENTRY ShowSettingsDlg(PWIDGETSETTINGSDLGDATA pData)
    196244     *
    197      *      2.  Store that function in the
    198      *          XCENTERWIDGETCLASS.pShowSettingsDlg field for
    199      *          your widget class.
     245     *      2.  In the "init module" export, store that function
     246     *          in the XCENTERWIDGETCLASS.pShowSettingsDlg field
     247     *          for your widget class.
    200248     *
    201249     *          This will enable the "Properties" menu item
     
    238286                    // DO NOT CHANGE
    239287
    240         PXCENTERGLOBALS         pGlobals;
     288        PCXCENTERGLOBALS        pGlobals;
    241289                    // if != NULL, currently open XCenter
    242290                    // for which widget data is being changed.
     
    277325    typedef WGTSHOWSETTINGSDLG *PWGTSHOWSETTINGSDLG;
    278326
    279     // widget class flags
    280     #define WGTF_SIZEABLE               0x0001
    281     #define WGTF_NOUSERCREATE           0x0002
    282     #define WGTF_UNIQUEPERXCENTER       0x0004
    283     #define WGTF_UNIQUEGLOBAL          (0x0008 + 0x0004)
    284     #define WGTF_TOOLTIP                0x0010
    285     #define WGTF_TOOLTIP_AT_MOUSE      (0x0020 + 0x0010)
    286     #define WGTF_TRANSPARENT            0x0040
    287     #define WGTF_CONTAINER              0x0080
    288     #define WGTF_NONFOCUSTRAVERSABLE    0x0100
    289 
    290327    /*
    291328     *@@ XCENTERWIDGETCLASS:
     
    293330     *      used in an XCenter. Such a class can either
    294331     *      be internal or in a widget plugin DLL.
     332     *
     333     *      This structure _must_ have the same layout as
     334     *      PLUGINCLASS.  It can redefine the ulUser* fields
     335     *      to its liking, though.
     336     *
     337     *      The window procedure which implements the widget
     338     *      class must be registered by a plug-in DLL when
     339     *      its INIT callback gets called by the XCenter.
     340     *
     341     *      There are a few rules which must be followed
     342     *      with the window procedures of the widget classes:
     343     *
     344     *      -- At the very least, the widget's window proc must
     345     *         implement WM_CREATE, WM_PAINT, and (if cleanup
     346     *         is necessary) WM_DESTROY. WM_PRESPARAMCHANGED
     347     *         would also be nice to support fonts and colors
     348     *         dropped on the widget.
     349     *
     350     *      -- On WM_CREATE, the widget receives a pointer to
     351     *         its XCENTERWIDGET structure in mp1.
     352     *
     353     *         The first thing the widget _must_ do on WM_CREATE
     354     *         is to store the XCENTERWIDGET pointer (from mp1)
     355     *         in its QWL_USER window word by calling:
     356     *
     357     +              WinSetWindowPtr(hwnd, QWL_USER, mp1);
     358     *
     359     *      -- The XCenter communicates with the widget using
     360     *         WM_CONTROL messages. SHORT1FROMMP(mp1), the
     361     *         source window ID, is always ID_XCENTER_CLIENT.
     362     *         SHORT2FROMMP(mp1), the notification code, can
     363     *         be:
     364     *
     365     *         --  XN_QUERYSIZE: the XCenter wants to know the
     366     *             widget's size.
     367     *
     368     *         --  XN_SETUPCHANGED: widget's setup string has
     369     *             changed.
     370     *
     371     *         --  XN_BEGINANIMATE: the widget is about to be
     372     *             shown/hidden.
     373     *
     374     *         --  XN_ENDANIMATE: the widget is now fully shown/hidden.
     375     *
     376     *         --  XN_HITTEST:  for transparent widgets, the XCenter
     377     *             wants to know if the specified location is covered.
     378     *
     379     *      -- All unprocessed notifications must be routed
     380     *         to ctrDefWidgetProc instead of WinDefWindowProc.
     381     *         Do not swallow unprocessed messages.
     382     *
     383     *      -- You must never use WinSetWindowPos on your widget
     384     *         window yourself because this will solidly confuse
     385     *         the XCenter widget formatting. If you want your
     386     *         widget window to be resized, post XCM_SETWIDGETSIZE
     387     *         to the widget's parent instead, which will resize
     388     *         your widget properly and also reformat the other
     389     *         widgets, if necessary.
     390     *
     391     *      -- All unprocessed messages should be routed
     392     *         to ctrDefWidgetProc instead of WinDefWindowProc.
     393     *
     394     *      -- WM_MENUEND must _always_ be passed on after your
     395     *         own processing (if any) to remove source emphasis
     396     *         for popup menus.
     397     *
     398     *      -- WM_DESTROY must _always_ be passed on after
     399     *         your own cleanup code to avoid memory leaks,
     400     *         because this function performs important cleanup
     401     *         as well.
     402     *
     403     *      -- WM_COMMAND command values above 0x7f00 are reserved.
     404     *         If you extend the context menu given to you in
     405     *         XCENTERWIDGET.hwndContextMenu, you must use
     406     *         menu item IDs < 0x7f00. This has been changed
     407     *         with V0.9.11 (2001-04-25) [umoeller] to avoid
     408     *         conflicts with the WPS menu item IDs, sorry.
     409     *
     410     *      <B>Resource management</B>
     411     *
     412     *      You should always be aware that your widget is a PM
     413     *      window in the WPS process. As a result, all resource
     414     *      leaks that you produce in your widget code will affect
     415     *      the entire WPS, and all crashes will too.
     416     *
     417     *      As a general rule, the XCenter will free all widget
     418     *      resources that it has allocated itself (such as the
     419     *      structures that were created for it). By contrast,
     420     *      if you allocate something yourself, it is your
     421     *      responsibility to free it. This applies especially
     422     *      to XCENTERWIDGET.pUser, which is your general pointer
     423     *      to store widget-specific things.
     424     *
     425     *      Of course the same rules apply to PM resources such
     426     *      as icons, bitmaps, regions, memory PS's etc. You can
     427     *      quickly bring down the WPS if you forget to free those.
     428     *      Same thing if you start additional threads in your
     429     *      widget code.
     430     *
     431     *      This is especially important because widget windows
     432     *      can be created and destroyed without the widgets
     433     *      cooperation. For example, if the widget is in a tray,
     434     *      it will be created and destroyed when the current
     435     *      tray changes. If you leak something in this situation,
     436     *      this can quickly become a major problem.
     437     *
     438     *      I also recommend to use exception handling in your
     439     *      widget code to properly clean up things if something
     440     *      goes wrong. As said in center.c, do not use exit
     441     *      lists because that will cause DLL unloading to fail.
     442     *
     443     *      <B>Tooltip support</B>
     444     *
     445     *      If your widget class has the WGTF_TOOLTIP flag set,
     446     *      it will receive WM_CONTROL with TTN_* notifications
     447     *      and the source window ID set to ID_XCENTER_TOOLTIP.
     448     *      If it responds to TTN_NEEDTEXT, it must fill the
     449     *      TOOLTIPTEXT pointed to by mp2. See include\helpers\comctl.h
     450     *      for details.
     451     *
     452     *      In addition, the widget will also receive the TTN_SHOW
     453     *      and TTN_POP notifications when the tooltip is being
     454     *      shown or hidden above it.
     455     *
     456     *      <B>Trayable widgets</B>
     457     *
     458     *      If your widget is supposed to be trayable (i.e.
     459     *      the WGTF_TRAYABLE flag is set in the XCENTERWIDGETCLASS),
     460     *      it must conform to a few extra rules:
     461     *
     462     *      -- Trayable widgets cannot be sizeable or greedy
     463     *         because the tray widget itself is sizeable.
     464     *
     465     *      -- You must never assume that the parent window of
     466     *         your widget really is the XCenter client. It can
     467     *         also be a tray widget. Always use
     468     *         WinQueryWindow(hwndWidget, QW_PARENT) to find your
     469     *         parent window, which will properly give you either
     470     *         the XCenter client or the tray widget.
     471     *
     472     *      -- If you use XCM_* messages, never post them to the
     473     *         XCenter client window (whose handle is available
     474     *         thru XCENTERGLOBALS). All XCM_* essages are understood
     475     *         by the tray widget also, and if your widget is in a tray,
     476     *         it must post them to the tray instead of the client.
     477     *
     478     *      -- Your widget must be prepared for being created or
     479     *         destroyed at times other than XCenter creation or
     480     *         destruction because the tray widget will do this
     481     *         when the current tray is switched.
    295482     */
    296483
     
    301488                // several widget classes). A plugin DLL is responsible for
    302489                // registering this window class when it's loaded.
     490                // Naturally, this must be unique on the system.
    303491
    304492        ULONG           ulExtra;
     
    309497                // widget classes in the same window proc. You must copy this
    310498                // to your private widget data then.
     499                // For example, MONITORS.DLL uses this to differentiate
     500                // between the various monitor widget classes.
    311501
    312502        const char      *pcszWidgetClass;
    313503                // internal widget class name; this is used to identify
    314                 // the class. This must be unique on the system and should
    315                 // not contain any spaces (e.g.: "MySampleClass").
     504                // the class. This must be unique on the system and must
     505                // not contain special characters like commas, brackets,
     506                // etc. Besides, since this must work with all codepages,
     507                // use only ASCII characters <= 127, and use an English
     508                // name always.
     509                // A valid name would be "MySampleClass".
     510                // This is stored internally in the XCenter data and is
     511                // used whenever the XCenter is opened to create all the
     512                // widgets from the respective widget classes. In other
     513                // words, this is the class identifier and must never
     514                // change between several releases or different NLS versions
     515                // of your plugin DLL, or otherwise widget creation will fail.
     516                // Choose this name carefully.
    316517
    317518        const char      *pcszClassTitle;
    318                 // widget class title (shown to user in "Add widget" popup
    319                 // menu). Example: "Sample widget".
     519                // explanatory widget class title, which is shown to the
     520                // user in the "Add widget" popup menu. Example: "Sample widget".
     521                // This is not used to identify the class internally and may
     522                // change between releases and NLS versions. So you can set
     523                // this to a language-specific string.
     524                // Note: If this has the highest bit set, it is assumed to
     525                // be a string resource ID in the XWorkplace NLS DLL instead
     526                // of a real string:
     527                #define XCENTER_STRING_RESOURCE     0x80000000
     528                            // V0.9.19 (2002-05-07) [umoeller]
    320529
    321530        ULONG           ulClassFlags;
    322531                // WGTF_* flags; any combination of the following:
     532
     533                #define WGTF_SIZEABLE               0x0001
    323534                // -- WGTF_SIZEABLE: widget window can be resized with
    324                 //    the mouse by the user.
     535                //    the mouse by the user. A sizing bar is automatically
     536                //    painted by the XCenter engine then.
     537
     538                #define WGTF_NOUSERCREATE           0x0002
    325539                // -- WGTF_NOUSERCREATE: do not show this class in
    326540                //    the "add widget" menu, and do not allow creating
    327541                //    instances of this in the XCenter settings notebook.
     542                //    This is used for the object button widget, which
     543                //    can only be created through drag'n'drop. This flag
     544                //    isn't terribly useful for plug-in DLLs because
     545                //    without support in the XCenter engine the widget
     546                //    could then not be created at all.
     547
     548                #define WGTF_UNIQUEPERXCENTER       0x0004
    328549                // -- WGTF_UNIQUEPERXCENTER: only one widget of this class
    329550                //    should be created per XCenter.
     551
     552                #define WGTF_UNIQUEGLOBAL          (0x0008 + 0x0004)
    330553                // -- WGTF_UNIQUEGLOBAL: only one widget of this class
    331554                //    should be created in all XCenters on the system.
    332                 //    This includes WGTF_UNIQUEPERXCENTER.
     555                //    This implies WGTF_UNIQUEPERXCENTER.
     556
     557                #define WGTF_TOOLTIP                0x0010
    333558                // -- WGTF_TOOLTIP: if set, the widget has a tooltip
    334559                //    and will receive WM_CONTROL messages with the
    335                 //    TTN_NEEDTEXT notification code (see helpers\comctl.h).
     560                //    TTN_NEEDTEXT, TTN_SHOW, or TTN_POP notification codes
     561                //    (see helpers\comctl.h).
    336562                //    The window ID of the tooltip control is ID_XCENTER_TOOLTIP.
     563                //    See XCENTERWIDGETCLASS for tooltip handling.
     564
     565                #define WGTF_TOOLTIP_AT_MOUSE      (0x0020 + 0x0010)
    337566                // -- WGTF_TOOLTIP_AT_MOUSE: like WGTF_TOOPTIP, but the
    338567                //    tooltip is not centered above the widget, but put
    339568                //    at the mouse position instead.
    340                 //    This includes WGTF_TOOLTIP.
     569                //    This implies WGTF_TOOLTIP.
     570
     571                #define WGTF_TRANSPARENT            0x0040
     572                // -- WGTF_TRANSPARENT: some parts of the widget window
     573                //    are transparent.  The widget will receive WM_CONTROL
     574                //    messages with the XN_HITTEST notification code.
     575                //    If the widget returns FALSE to the notification,
     576                //    the action will be forwarded to its parent (the
     577                //    XCenter client or a tray widget).
     578
     579                #define WGTF_NONFOCUSTRAVERSABLE    0x0100
     580                //    Reserved for future use.
     581
     582                #define WGTF_TRAYABLE               0x0200
     583                // -- WGTF_TRAYABLE: widget is "trayable", that is, it
     584                //    supports being created inside a tray widget.
     585                //    Note: Restrictions apply if you want your widget
     586                //    to be trayable. See above.
     587
     588                #define WGTF_CANTAKECENTERHOTKEY    0x0400
     589                // -- WGTF_CANTAKECENTERHOTKEY: signals that the widget is
     590                //    willing to take action when the XCenter gets
     591                //    resurfaced via its object hotkey.
     592                //    The widget will then receive WM_CONTROL with
     593                //    the XN_CENTERHOTKEYPRESSED code; see remarks for
     594                //    XN_CENTERHOTKEYPRESSED.
     595                //    V0.9.19 (2002-04-17) [umoeller]
     596
     597                #define WGTF_CONFIRMREMOVE          0x0800
     598                // -- WGTF_CONFIRMREMOVE: adds "..." to the "Remove widget"
     599                //    context menu item and confirms removal if the user
     600                //    selects that.
     601                //    V0.9.20 (2002-08-08) [umoeller]
    341602
    342603        PWGTSHOWSETTINGSDLG pShowSettingsDlg;
     
    351612    } XCENTERWIDGETCLASS, *PXCENTERWIDGETCLASS;
    352613
     614    typedef const struct _XCENTERWIDGETCLASS *PCXCENTERWIDGETCLASS;
     615
    353616    /*
    354617     *@@ XCENTERWIDGETSETTING:
     
    357620     *      user has configured for a widget.
    358621     *
     622     *      An array of these is stored in packed form in the
     623     *      XCenter instance data and describes all widgets
     624     *      in the XCenter. Widget classes normally don't need
     625     *      this.
     626     *
    359627     *      An array of these is returned by XCenter::xwpQueryWidgets.
    360628     */
     
    362630    typedef struct _XCENTERWIDGETSETTING
    363631    {
    364         PSZ                 pszWidgetClass;   // widget class name;
     632        PSZ             pszWidgetClass;   // widget class name;
    365633                    // we cannot use the binary PXCENTERWIDGETCLASS pointer
    366634                    // here because these structures are dynamically unloaded...
    367635                    // use ctrpFindClass to find the XCENTERWIDGETCLASS ptr.
    368         PSZ                 pszSetupString;
     636        PSZ             pszSetupString;
    369637                    // widget-class-specific setup string; can be NULL
    370638
     
    384652     *      being a child window of the XCenter client,
    385653     *      which in turn is a child of the XCenter frame.
     654     *      The exception is a widget in a tray, which is
     655     *      a child of a tray widget, which in turn is a
     656     *      child of the XCenter client.
    386657     *
    387658     *      This structure is created once for each widget
     
    393664     *      The widget can allocate another widget-specific
    394665     *      buffer and store its pointer into the pUser
    395      *      field.
     666     *      field. This is strongly recommended because
     667     *      otherwise your widget will have no place to
     668     *      store its instance data.
    396669     *
    397670     *      This structure is automatically freed by the
     
    401674     *      General rule: The widget must clean up what it
    402675     *      allocated itself.
     676     *
     677     *      See XCENTERWIDGETCLASS for rules that a widget
     678     *      window proc must conform to.
    403679     */
    404680
     
    424700                // proc must pass all unprocessed messages (and a
    425701                // few more) to this instead of WinDefWindowProc.
    426                 // See ctrDefWidgetProc for details.
    427 
    428         const XCENTERGLOBALS *pGlobals;
     702                // See XCENTERWIDGETCLASS for details.
     703
     704        PCXCENTERGLOBALS pGlobals;
    429705                // ptr to client/frame window data (do not change)
    430706
    431         PXCENTERWIDGETCLASS pWidgetClass;
     707        PCXCENTERWIDGETCLASS pWidgetClass;
    432708                // widget class this widget was created from;
    433709                // this ptr is only valid during WM_CREATE and
    434710                // always NULL afterwards
    435711
    436         const char  *pcszWidgetClass;
     712        PCSZ        pcszWidgetClass;
    437713                // internal name of the widget's class; this
    438714                // is the same as pWidgetClass->pcszWidgetClass,
     
    442718                // class flags copied from XCENTERWIDGETCLASS.
    443719
    444         const char  *pcszSetupString;
     720        PCSZ        pcszSetupString;
    445721                // class-specific setup string. This field
    446722                // is only valid during WM_CREATE and then holds
     
    449725                // setup string exists. After WM_CREATE, the
    450726                // pointer is set to NULL always.
     727                // The widget should use this string to initialize
     728                // itself. When its instance data changes, it
     729                // should send XCM_SAVESETUP to its parent
     730                // so that the XCenter can record the new setup
     731                // string.
    451732
    452733        /*
     
    470751                // all remaining size on the XCenter bar (by
    471752                // returning -1 for cx with WM_CONTROL and
    472                 //
     753                // XCN_QUERYSIZE), it cannot be sizeable.
    473754
    474755        HWND        hwndContextMenu;
     
    485766                // This is only valid after WM_CREATE.
    486767
    487         const char  *pcszHelpLibrary;
     768        PCSZ        pcszHelpLibrary;
    488769        ULONG       ulHelpPanelID;
    489770                // if these two are specified, the XCenter will
     
    501782                // own data (which you must clean up yourself on
    502783                // WM_DESTROY).
     784
     785        PVOID       pvWidgetSetting;
     786                // private pointer for tray widget. DO NOT USE THIS.
     787                // V0.9.13 (2001-06-21) [umoeller]
     788
    503789    } XCENTERWIDGET;
    504790
     
    509795     ********************************************************************/
    510796
    511     PSZ APIENTRY ctrScanSetupString(const char *pcszSetupString,
    512                                     const char *pcszKeyword);
    513     typedef PSZ APIENTRY CTRSCANSETUPSTRING(const char *pcszSetupString,
    514                                             const char *pcszKeyword);
     797    // All these are specified as both simple prototypes and
     798    // function pointer declarations so that widget classes
     799    // can import these functions from XFLDR.DLL in the init
     800    // export.
     801
     802    PSZ APIENTRY ctrScanSetupString(PCSZ pcszSetupString,
     803                                    PCSZ pcszKeyword);
     804    typedef PSZ APIENTRY CTRSCANSETUPSTRING(PCSZ pcszSetupString,
     805                                            PCSZ pcszKeyword);
    515806    typedef CTRSCANSETUPSTRING *PCTRSCANSETUPSTRING;
    516807
    517     LONG APIENTRY ctrParseColorString(const char *p);
    518     typedef LONG APIENTRY CTRPARSECOLORSTRING(const char *p);
     808    LONG APIENTRY ctrParseColorString(PCSZ p);
     809    typedef LONG APIENTRY CTRPARSECOLORSTRING(PCSZ p);
    519810    typedef CTRPARSECOLORSTRING *PCTRPARSECOLORSTRING;
    520811
     
    525816    // ctrSetSetupString has been defined above
    526817
    527     BOOL APIENTRY ctrDisplayHelp(PXCENTERGLOBALS pGlobals,
    528                         const char *pcszHelpFile,
    529                         ULONG ulHelpPanelID);
    530     typedef BOOL APIENTRY CTRDISPLAYHELP(PXCENTERGLOBALS pGlobals,
    531                         const char *pcszHelpFile,
    532                         ULONG ulHelpPanelID);
     818    BOOL APIENTRY ctrDisplayHelp(PCXCENTERGLOBALS pGlobals,
     819                                 PCSZ pcszHelpFile,
     820                                 ULONG ulHelpPanelID);
     821    typedef BOOL APIENTRY CTRDISPLAYHELP(PCXCENTERGLOBALS pGlobals,
     822                                         PCSZ pcszHelpFile,
     823                                         ULONG ulHelpPanelID);
    533824    typedef CTRDISPLAYHELP *PCTRDISPLAYHELP;
    534825
     
    541832    typedef CTRPAINTSTATICWIDGETBORDER *PCTRPAINTSTATICWIDGETBORDER;
    542833
     834    VOID APIENTRY ctrDrawWidgetEmphasis(PXCENTERWIDGET pWidget, BOOL fRemove);
     835    typedef VOID APIENTRY CTRDRAWWIDGETEMPHASIS(PXCENTERWIDGET pWidget, BOOL fRemove);
     836    typedef CTRDRAWWIDGETEMPHASIS *PCTRDRAWWIDGETEMPHASIS;
     837
     838    VOID APIENTRY ctrPlaceAndPopupMenu(HWND hwndOwner, HWND hwndMenu, BOOL fAbove);
     839    typedef VOID APIENTRY CTRPLACEANDPOPUPMENU(HWND hwndOwner, HWND hwndMenu, BOOL fAbove);
     840    typedef CTRPLACEANDPOPUPMENU *PCTRPLACEANDPOPUPMENU;
     841
    543842    MRESULT EXPENTRY ctrDefWidgetProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    544843                // a pointer to this is in XCENTERWIDGET if the widget
    545844                // is a non-container widget
    546 
    547     MRESULT EXPENTRY ctrDefContainerWidgetProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
    548                 // a pointer to this is in XCENTERWIDGET if the widget
    549                 // is a container widget
     845    typedef MRESULT EXPENTRY CTRDEFWIDGETPROC(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
     846    typedef CTRDEFWIDGETPROC *PCTRDEFWIDGETPROC;
     847
     848    /* ******************************************************************
     849     *
     850     *   Open XCenter views
     851     *
     852     ********************************************************************/
     853
     854    BOOL APIENTRY ctrIsXCenterView(HWND hwndFrame);
     855    typedef BOOL APIENTRY CTRISXCENTERVIEW(HWND hwndFrame);
     856    typedef CTRISXCENTERVIEW *PCTRISXCENTERVIEW;
     857                // this function was added with V0.9.16
    550858
    551859    /* ******************************************************************
     
    658966
    659967    /*
    660      *@@ XN_QUERYSETUP:
     968     * XN_QUERYSETUP:
    661969     *      notification code for WM_CONTROL sent to a widget
    662970     *      when the sender needs to know the widget's setup string.
     
    677985     *      to store the setup string (even if mp2 is NULL).
    678986     *
    679      *@@added V0.9.9 (2001-03-01) [lafaix]
    680      */
    681 
    682     #define XN_QUERYSETUP               4
     987     *added V0.9.9 (2001-03-01) [lafaix]
     988     */
     989
     990    // #define XN_QUERYSETUP               4
    683991
    684992    // flags for XN_BEGINANIMATE and XN_ENDANIMATE
     
    7431051
    7441052    /*
    745      *@@ XN_QUERYWIDGETCOUNT:
     1053     * XN_QUERYWIDGETCOUNT:
    7461054     *      notification code for WM_CONTROL sent from the XCenter
    7471055     *      to a widget when it needs to know how many elements a
     
    7651073     *      for the count.
    7661074     *
    767      *@@added V0.9.9 (2001-02-23) [lafaix]
    768      *@@changed V0.9.9 (2001-03-11) [lafaix]: uses a PULONG to return the count.
    769      */
    770 
    771     #define XN_QUERYWIDGETCOUNT         7
    772 
    773     /*
    774      *@@ XN_QUERYWIDGET:
     1075     *added V0.9.9 (2001-02-23) [lafaix]
     1076     *changed V0.9.9 (2001-03-11) [lafaix]: uses a PULONG to return the count.
     1077     */
     1078
     1079    // #define XN_QUERYWIDGETCOUNT         7
     1080
     1081    /*
     1082     * XN_QUERYWIDGET:
    7751083     *      notification code for WM_CONTROL sent from the XCenter
    7761084     *      to a widget when it needs to know the widget present at
     
    7891097     *      XCENTERWIDGET structure.
    7901098     *
    791      *@@added V0.9.9 (2001-02-23) [lafaix]
    792      */
    793 
    794     #define XN_QUERYWIDGET              8
     1099     *added V0.9.9 (2001-02-23) [lafaix]
     1100     */
     1101
     1102    // #define XN_QUERYWIDGET              8
    7951103
    7961104    // structure needed for XN_INSERTWIDGET
     
    8081116
    8091117    /*
    810      *@@ XN_INSERTWIDGET:
     1118     * XN_INSERTWIDGET:
    8111119     *      notification code for WM_CONTROL sent from the XCenter
    8121120     *      to a widget when it needs to add a widget at a specified
     
    8261134     *      the inserted one.
    8271135     *
    828      *@@added V0.9.9 (2001-02-23) [lafaix]
    829      */
    830 
    831     #define XN_INSERTWIDGET             9
    832 
    833     /*
    834      *@@ XN_DELETEWIDGET:
     1136     *added V0.9.9 (2001-02-23) [lafaix]
     1137     */
     1138
     1139    // #define XN_INSERTWIDGET             9
     1140
     1141    /*
     1142     * XN_DELETEWIDGET:
    8351143     *      notification code for WM_CONTROL sent from the XCenter
    8361144     *      to a widget when it needs to remove a widget at a specified
     
    8471155     *      The widget must return the count of remaining widgets.
    8481156     *
    849      *@@added V0.9.9 (2001-02-23) [lafaix]
    850      */
    851 
    852     #define XN_DELETEWIDGET             10
     1157     *added V0.9.9 (2001-02-23) [lafaix]
     1158     */
     1159
     1160    // #define XN_DELETEWIDGET             10
     1161
     1162    /*
     1163     *@@ XN_HITTEST:
     1164     *      notification code for WM_CONTROL sent from the XCenter
     1165     *      to a widget when it needs to know whether a specific
     1166     *      location is covered by the widget.
     1167     *
     1168     *      Parameters:
     1169     *
     1170     *      -- SHORT1FROMMP(mp1): ID, always ID_XCENTER_CLIENT.
     1171     *
     1172     *      -- SHORT2FROMMP(mp1): notify code (XN_HITTEST).
     1173     *
     1174     *      -- POINTS mp2: the location to test.
     1175     *
     1176     *      The widget must return TRUE if the location is covered, or
     1177     *      FALSE otherwise.
     1178     *
     1179     *@@added V0.9.13 (2001-06-23) [umoeller]
     1180     */
     1181
     1182    #define XN_HITTEST                  11
     1183
     1184    /*
     1185     *@@ XN_DISPLAYSTYLECHANGED:
     1186     *      notification code for WM_CONTROL sent (!)
     1187     *      to all widgets whenever an XCenter display
     1188     *      style changes.
     1189     *
     1190     *      If your widget caches data from XCENTERGLOBALS
     1191     *      locally somewhere, or needs to rearrange its
     1192     *      display based on those settings, you should
     1193     *      intercept this and reformat yourself.
     1194     *
     1195     *      It is not necessary to invalidate your widget
     1196     *      display though since this will be done
     1197     *      automatically by the XCenter when display
     1198     *      styles change. So after this notification,
     1199     *      you can be sure that WM_PAINT will come in
     1200     *      anyway.
     1201     *
     1202     *      Parameters:
     1203     *
     1204     *      -- SHORT1FROMMP(mp1): ID, always ID_XCENTER_CLIENT.
     1205     *
     1206     *      -- SHORT2FROMMP(mp1): notify code (XN_DISPLAYSTYLECHANGED).
     1207     *
     1208     *      -- mp2: unused, always NULL.
     1209     *
     1210     *@@added V0.9.13 (2001-06-21) [umoeller]
     1211     */
     1212
     1213    #define XN_DISPLAYSTYLECHANGED      12
     1214
     1215    /*
     1216     *@@ XN_INUSECHANGED:
     1217     *      notification code for WM_CONTROL posted (!)
     1218     *      to a widget if it has registered itself with
     1219     *      XFldObject::xwpSetWidgetNotify.
     1220     *
     1221     *      This is posted from XFldObject::wpCnrSetEmphasis
     1222     *      when the object's in-use emphasis changes.
     1223     *
     1224     *      Parameters:
     1225     *
     1226     *      -- SHORT1FROMMP(mp1): ID, always ID_XCENTER_CLIENT.
     1227     *
     1228     *      -- SHORT2FROMMP(mp1): notify code (XN_INUSECHANGED).
     1229     *
     1230     *      -- WPObject* mp2: SOM object pointer of object whose
     1231     *                  emphasis changed.
     1232     *
     1233     *@@added V0.9.13 (2001-06-21) [umoeller]
     1234     */
     1235
     1236    #define XN_INUSECHANGED             13
     1237
     1238    /*
     1239     *@@ XN_CENTERHOTKEYPRESSED:
     1240     *      notification code for WM_CONTROL sent (!)
     1241     *      to the first widget that has the WGTF_CANTAKECENTERHOTKEY
     1242     *      class flag when the XCenter hotkey is pressed.
     1243     *
     1244     *      Presently this is only used by the X-button to
     1245     *      open its menu when the XCenter gets activated via
     1246     *      hotkey, but other widget classes could behave
     1247     *      accordingly.
     1248     *
     1249     *      Parameters:
     1250     *
     1251     *      -- SHORT1FROMMP(mp1): ID, always ID_XCENTER_CLIENT.
     1252     *
     1253     *      -- SHORT2FROMMP(mp1): notify code (XN_CENTERHOTKEYPRESSED).
     1254     *
     1255     *      -- mp2: unused, always NULL.
     1256     *
     1257     *@@added V0.9.19 (2002-04-17) [umoeller]
     1258     */
     1259
     1260    #define XN_CENTERHOTKEYPRESSED      14
    8531261
    8541262    /* ******************************************************************
     
    8601268    /*
    8611269     *@@ XCM_SETWIDGETSIZE:
    862      *      this msg can be posted to the client
    863      *      from a widget if it wants to change
     1270     *      this msg can be posted by a widget
     1271     *      to its parent if it wants to change
    8641272     *      its size, e.g. because its display
    8651273     *      has changed and it needs more room.
    8661274     *
     1275     *      The widget's parent will usually be
     1276     *      the XCenter client. However, if you
     1277     *      want your widget to be trayable, you
     1278     *      should never use XCENTERGLOBALS.hwndClient
     1279     *      but use WinQueryWindow(hwndWidget, QW_PARENT)
     1280     *      instead, because if your widget is in
     1281     *      a tray, its parent will be a tray widget,
     1282     *      which understands this message as well.
     1283     *
    8671284     *      Parameters:
    8681285     *
     
    8721289     *         widget wants to have.
    8731290     *
    874      *      Note: _Post_, do not send this message
    875      *      to the client. This causes excessive
    876      *      redraw of possibly all widgets.
     1291     *      Note: _Post_, do not send this message.
     1292     *      This causes excessive redraw of possibly
     1293     *      all widgets and will cause a flurry of
     1294     *      messages being sent back to your widget.
     1295     *
     1296     *      Restrictions: This doesn't work during WM_CREATE
     1297     *      of your widget.
    8771298     */
    8781299
     
    8861307    #define XFMF_SHOWWIDGETS            0x0010
    8871308    #define XFMF_RESURFACE              0x0020
     1309    #define XFMF_FOCUS2FIRSTWIDGET      0x0040
    8881310
    8891311    /*
    8901312     *@@ XCM_REFORMAT:
    891      *      reformats the XCenter and all widgets. This
    892      *      gets posted by ctrDefWidgetProc when a widget
     1313     *      posted by a widget to its parent to reformat
     1314     *      the XCenter (or a tray) and all sibling widgets.
     1315     *      This gets posted by ctrDefWidgetProc when a widget
    8931316     *      gets destroyed, but can be posted by anyone.
    8941317     *
    895      *      Parameters:
    896      *
    897      *      -- HWND mp1: reformat flags. Any combination
     1318     *      The widget's parent will usually be
     1319     *      the XCenter client. However, if you
     1320     *      want your widget to be trayable, you
     1321     *      should never use XCENTERGLOBALS.hwndClient
     1322     *      but use WinQueryWindow(hwndWidget, QW_PARENT)
     1323     *      instead, because if your widget is in
     1324     *      a tray, its parent will be a tray widget,
     1325     *      which understands this message as well.
     1326     *
     1327     *      Parameters:
     1328     *
     1329     *      -- ULONG mp1: reformat flags. Any combination
    8981330     *         of the following:
    8991331     *
     
    9161348     *          --  XFMF_RESURFACE: resurface XCenter to HWND_TOP.
    9171349     *
     1350     *          --  XFMF_FOCUS2FIRSTWIDGET: implies XFMF_RESURFACE,
     1351     *              but will open the X-Button widget's menu, if
     1352     *              appplicable.
     1353     *
    9181354     *          Even if you specify 0, the XCenter will be re-shown
    9191355     *          if it is currently auto-hidden.
     
    9211357     *      -- mp2: reserved, must be 0.
    9221358     *
    923      *      NOTE: This msg must be POSTED, not sent, to the XCenter
    924      *      client. It causes excessive redraw.
     1359     *      Note: _Post_, do not send this message.
     1360     *      This causes excessive redraw of possibly
     1361     *      all widgets and will cause a flurry of
     1362     *      messages being sent back to your widget.
     1363     *
     1364     *      Restrictions: This doesn't work during WM_CREATE
     1365     *      of your widget.
    9251366     */
    9261367
     
    9291370    /*
    9301371     *@@ XCM_SAVESETUP:
    931      *      this msg can be sent (!) to the client
    932      *      by a widget if its settings have been
     1372     *      this msg can be sent (!) by a widget to
     1373     *      its parent if its settings have been
    9331374     *      changed and it wants these settings to
    9341375     *      be saved with the XCenter instance data.
     1376     *
     1377     *      The widget's parent will usually be
     1378     *      the XCenter client. However, if you
     1379     *      want your widget to be trayable, you
     1380     *      should never use XCENTERGLOBALS.hwndClient
     1381     *      but use WinQueryWindow(hwndWidget, QW_PARENT)
     1382     *      instead, because if your widget is in
     1383     *      a tray, its parent will be a tray widget,
     1384     *      which understands this message as well.
    9351385     *
    9361386     *      This is useful when fonts or colors have
     
    9391389     *      therefore won't work).
    9401390     *
     1391     *      Note: Saving widget setup strings in the XCenter
     1392     *      data is a possibly expensive operation. Use
     1393     *      this message economically.
     1394     *
     1395     *      Restrictions: This doesn't work during WM_CREATE
     1396     *      of your widget.
     1397     *
    9411398     *      Parameters:
    9421399     *
     
    9451402     *      -- const char* mp2: zero-terminated setup string.
    9461403     *
     1404     *      Returns: TRUE if the setup string was successfully
     1405     *      saved.
     1406     *
    9471407     *@@added V0.9.7 (2000-12-04) [umoeller]
    9481408     */
     
    9501410    #define XCM_SAVESETUP               (WM_USER + 2)
    9511411
    952     // WM_USER + 3 and WM_USER + 4 are reserved
     1412    // WM_USER + 3 to WM_USER + 10 are reserved
    9531413
    9541414    /* ******************************************************************
     
    9641424    typedef ULONG EXPENTRY FNWGTINITMODULE_OLD(HAB hab,
    9651425                                               HMODULE hmodXFLDR,
    966                                                PXCENTERWIDGETCLASS *ppaClasses,
     1426                                               PCXCENTERWIDGETCLASS *ppaClasses,
    9671427                                               PSZ pszErrorMsg);
    9681428    typedef FNWGTINITMODULE_OLD *PFNWGTINITMODULE_OLD;
     
    9711431                                               HMODULE hmodPlugin,
    9721432                                               HMODULE hmodXFLDR,
    973                                                PXCENTERWIDGETCLASS *ppaClasses,
     1433                                               PCXCENTERWIDGETCLASS *ppaClasses,
    9741434                                               PSZ pszErrorMsg);
    9751435    typedef FNWGTINITMODULE_099 *PFNWGTINITMODULE_099;
Note: See TracChangeset for help on using the changeset viewer.