Changeset 2
- Timestamp:
- Oct 26, 2012, 12:07:29 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/common.c ¶
r1 r2 163 163 { MENUITEM mi={0},mi1={0}; 164 164 POINTL ptl; 165 SHORT sItemId,sItemNum,sLastId ,k;165 SHORT sItemId,sItemNum,sLastId; 166 166 UCHAR ucBuf[64]; 167 167 HWND hwndSubmenu; … … 171 171 sItemId = SHORT1FROMMR(WinSendMsg(plswData->hwndMenu,MM_ITEMIDFROMPOSITION, 172 172 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, 174 175 MPFROM2SHORT(sItemId,FALSE),0)); 175 176 } … … 249 250 WinSendMsg(plswData->hwndMenu, MM_INSERTITEM, MPFROMP(&mi), MPFROMP(ucBuf)); 250 251 } 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 } 251 266 #endif 252 267 268 WinQueryPointerPos(HWND_DESKTOP,&ptl); 253 269 #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); 297 276 #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);302 277 } 303 278 -
TabularUnified trunk/h/lswitch.h ¶
r1 r2 39 39 #define WIDGETMODNAME "LSWIDGET.DLL" 40 40 41 //to be used during the popup window initialization and by the hook functions42 extern PXCENTERWIDGET pWidget;43 41 //the widget DLL module handle 44 42 extern HMODULE hmodWidgetDll; … … 47 45 #define VERSIONMAJOR 2 48 46 #define VERSIONMINOR 60 49 #define REVISION 847 #define REVISION 9 50 48 51 49 #define LASTINIVERMAJOROK 2 52 50 #define LASTINIVERMINOROK 60 53 51 #define LASTINIREVISIONOK 8 52 53 #define LASTHOOKVERMAJOROK 2 54 #define LASTHOOKVERMINOROK 60 55 #define LASTHOOKREVISIONOK 9 54 56 55 57 typedef APIENTRY RESVERPROC(UCHAR *NameString,USHORT usLen); … … 359 361 LONG EXPENTRY lswHookInit(LSWDATA *plswData); 360 362 VOID EXPENTRY lswHookTerm(LSWDATA *plswData); 361 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData); 362 VOID SwitcherTerm(LSWDATA *plswData); 363 ULONG EXPENTRY lswHookGetVersion(void); 364 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData, USHORT usFunc); 365 VOID SwitcherTerm(LSWDATA *plswData,USHORT usFunc); 363 366 VOID APIENTRY lswExitProc(VOID); 364 367 -
TabularUnified trunk/hook/lswhook.c ¶
r1 r2 316 316 } 317 317 318 318 ULONG EXPENTRY lswHookGetVersion(void) 319 { 320 return MAKEULONG(MAKEUSHORT(VERSIONMAJOR,VERSIONMINOR),MAKEUSHORT(REVISION,0)); 321 } 319 322 -
TabularUnified trunk/lswitch.c ¶
r1 r2 810 810 811 811 case WM_CREATE: { 812 #ifndef XWORKPLACE813 812 DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE); 814 #else815 plswData=pWidget->pUser;816 #endif817 813 818 814 WinStartTimer(plswData->hab, hwnd, 0, BUBBLETIMERINTERVAL); … … 841 837 #ifndef XWORKPLACE 842 838 WinSetWindowPtr(hwnd, 0, plswData); 839 #else 840 WinSetWindowPtr(hwnd, 0, plswData->pWidget); 841 #endif 843 842 DosFreeMem(plswData); 844 #else 845 WinSetWindowPtr(hwnd, 0, pWidget); 846 #endif 843 847 844 } 848 845 case WM_SYSVALUECHANGED: … … 1037 1034 1038 1035 1039 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData )1040 { ULONG flFrameFlags ;1036 LONG SwitcherInit(HAB hab, HMQ hmq, UCHAR *ucErrMsg, USHORT usMsgLen, PVOID *ppData, USHORT usFunc) 1037 { ULONG flFrameFlags,ulHookVer; 1041 1038 LONG rc,rc1 = 0; 1042 1039 LSWDATA *plswData; 1043 UCHAR ucFName[CCHMAXPATH] ;1040 UCHAR ucFName[CCHMAXPATH], ucResLang,ucFound=0,ucLangStr[32]; 1044 1041 SWCNTRL swctl; 1045 1042 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 1050 1076 #ifdef XWORKPLACE 1051 *ppData = NULL;1077 plswData->bWidget = TRUE; 1052 1078 #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; 1064 1108 #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, 1098 1110 LSWPOPUPCLASS,"", 1099 1111 0,0,ID_POPUPWIN,&plswData->hwndPopClient); 1100 1112 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 } 1125 1132 1126 1133 #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); 1134 1145 return rc; 1135 1136 if ((rc = DosExitList(EXLST_ADD, (PFNEXITLIST)lswExitProc)) !=0 ) { 1137 strncpy(ucErrMsg,"DosExitList",usMsgLen); 1138 return rc; 1139 } 1146 } 1140 1147 #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); 1142 1149 #endif 1150 } 1143 1151 1144 1152 return rc1; … … 1146 1154 1147 1155 1148 VOID SwitcherTerm(LSWDATA *plswData )1156 VOID SwitcherTerm(LSWDATA *plswData,USHORT usFunc) 1149 1157 { 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); 1156 1165 1157 1166 #ifndef XWORKPLACE 1158 DoneTaskBar(plswData);1167 DoneTaskBar(plswData); 1159 1168 #endif 1160 1169 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 } 1170 1180 1171 1181 #ifndef XWORKPLACE … … 1173 1183 WinTerminate(plswData->hab); 1174 1184 #endif 1175 DosFreeMem(plswData); 1185 1186 if (usFunc!=1) 1187 DosFreeMem(plswData); 1176 1188 } 1177 1189 … … 1182 1194 DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE); 1183 1195 1184 if (plswData!=NULL) SwitcherTerm(plswData );1196 if (plswData!=NULL) SwitcherTerm(plswData,0); 1185 1197 1186 1198 DosExitList(EXLST_EXIT, (PFNEXITLIST)lswExitProc); -
TabularUnified trunk/lswmain.c ¶
r1 r2 63 63 } 64 64 65 lErrCode=SwitcherInit(hab, hmq, ucMsg, sizeof(ucMsg), (PPVOID)(&plswData) );65 lErrCode=SwitcherInit(hab, hmq, ucMsg, sizeof(ucMsg), (PPVOID)(&plswData),0); 66 66 if (lErrCode > 0) { 67 67 WinLoadString(hab,plswData->hmodRes,MSG_ERROR,sizeof(ucErrStr),ucErrStr); -
TabularUnified trunk/taskbar.c ¶
r1 r2 549 549 550 550 case WM_CREATE: { 551 #ifndef XWORKPLACE 551 #ifdef XWORKPLACE 552 VOID *pData; 553 PXCENTERWIDGET pWidget; 554 LONG lrc; 555 #endif 552 556 DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE); 553 557 if (plswData==NULL) { … … 556 560 } 557 561 WinSetWindowPtr(hwnd, 0, plswData); 558 DosFreeMem(plswData); 559 #else 560 VOID *pData; 561 PXCENTERWIDGET pWidget; 562 LONG lrc; 563 562 #ifdef XWORKPLACE 564 563 pWidget = (PXCENTERWIDGET)mp1; 565 564 if (pWidget==NULL || pWidget->pfnwpDefWidgetProc==NULL) { … … 568 567 } 569 568 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); 572 574 if (lrc > 0) { 573 if (pData != NULL) SwitcherTerm( (PLSWDATA)pData);575 if (pData != NULL) SwitcherTerm(plswData,1); 574 576 mrc = (MRESULT)TRUE; 575 577 break; … … 577 579 } 578 580 579 plswData = (PLSWDATA)pData; pWidget->pUser=plswData;580 plswData->pWidget = pWidget; plswData->hwndTaskBarClient = hwnd;581 582 581 WinSetWindowPtr(hwnd, 0, pWidget); 583 582 #endif 584 583 585 WinStartTimer(WinQueryAnchorBlock(hwnd), hwnd, 0, BUBBLETIMERINTERVAL); 584 DosFreeMem(plswData); 585 WinStartTimer(plswData->hab, hwnd, 0, BUBBLETIMERINTERVAL); 586 586 WinPostMsg(hwnd,LSWM_INITBUTTONS,0,0); 587 587 } … … 618 618 #ifdef XWORKPLACE 619 619 DefWgtWndProc=plswData->pWidget->pfnwpDefWidgetProc; 620 SwitcherTerm(plswData );620 SwitcherTerm(plswData,1); 621 621 return DefWgtWndProc(hwnd, msg, mp1, mp2); 622 622 #endif … … 814 814 WinPostMsg(plswData->hwndPopClient,msg,mp1,mp2); 815 815 #ifdef XWORKPLACE 816 else 816 else 817 817 mrc=plswData->pWidget->pfnwpDefWidgetProc(hwnd, msg, mp1, mp2); 818 818 #endif -
TabularUnified trunk/widget/lswidget.c ¶
r1 r2 58 58 "lSwitcher", // widget class name displayed to user 59 59 WGTF_UNIQUEPERXCENTER, // widget class flags 60 NULL//lswShowSettings // no settings dialog60 lswShowSettings // no settings dialog 61 61 }; 62 62 63 63 64 64 //global variable used by lSwitcher code 65 //to be used during the popup window initialization66 PXCENTERWIDGET pWidget;67 65 //the widget DLL module handle 68 66 HMODULE hmodWidgetDll; … … 92 90 93 91 VOID EXPENTRY lswShowSettings(PWIDGETSETTINGSDLGDATA pData) 94 { 92 { LSWDATA *plswData; 93 94 DosGetNamedSharedMem((PVOID*)&plswData,SHAREMEM_NAME,PAG_READ | PAG_WRITE); 95 95 /* HWND hwnd = WinLoadDlg(HWND_DESKTOP, // parent 96 96 pData->hwndOwner, … … 105 105 WinDestroyWindow(hwnd); 106 106 }*/ 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); 109 111 } 110 112 … … 168 170 PSZ pszErrorMsg) // if 0 is returned, 500 bytes of error msg 169 171 { PVOID pData; 170 PXCENTERWIDGET pWidget;171 172 LONG lrc; 172 173 … … 177 178 178 179 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); 192 181 193 182 if (lrc > 0) return 0; … … 217 206 218 207 VOID 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); 220 215 } 221 216 -
TabularUnified trunk/widget/xwph/center.h ¶
r1 r2 2 2 /* 3 3 *@@sourcefile center.h: 4 * public header file for the XCenter. 4 * public header file for the XCenter and plugins. 5 * 5 6 * This contains all declarations which are needed by 6 7 * all parts of the XCenter and to implement widget … … 8 9 * 9 10 * 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. 11 13 * 12 14 * If you are looking at this file from the "toolkit\shared" … … 19 21 20 22 /* 21 * Copyright (C) 2000-200 1Ulrich Mller.23 * Copyright (C) 2000-2002 Ulrich Mller. 22 24 * This file is part of the XWorkplace source package. 23 25 * XWorkplace is free software; you can redistribute it and/or modify … … 41 43 42 44 // 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] 44 50 45 51 // button types (src\xcenter\w_objbutton.c) … … 47 53 #define BTF_XBUTTON 2 48 54 49 // position flags (XCENTERGLOBALS.ulPosition)50 #define XCENTER_BOTTOM 051 #define XCENTER_TOP 152 53 // display style (XCENTERGLOBALS.flDisplayStyle)54 #define XCS_FLATBUTTONS 0x000155 #define XCS_SUNKBORDERS 0x000256 #define XCS_SIZINGBARS 0x000457 #define XCS_ALL3DBORDERS 0x000858 59 55 /* 60 56 *@@ XCENTERGLOBALS: 61 57 * 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 63 61 * 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. 65 64 * 66 65 * In this structure, an XCenter instance … … 70 69 * is fully initialized at the time the widgets 71 70 * 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). 73 73 * 74 74 * "Globals" isn't really a good name since … … 82 82 { 83 83 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) 85 86 HWND hwndFrame, 86 // XCenter frame window (constant)87 // be XCenter frame window (constant) 87 88 hwndClient; 88 // client (child of XCenter frame) (constant)89 // XCenter client (child of XCenter frame) (constant) 89 90 90 91 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) 93 96 94 97 ULONG cyInnerClient; … … 97 100 // resized the XCenter, but it will always be >= cyWidgetMax. 98 101 // 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. 100 103 101 104 // This can change while the XCenter is open. … … 121 124 // Can be changed by the user while the XCenter is open. 122 125 // These flags can be any combination of the following: 126 127 #define XCS_FLATBUTTONS 0x0001 123 128 // -- XCS_FLATBUTTONS: paint buttons flat. If not set, 124 129 // paint them raised. 130 131 #define XCS_SUNKBORDERS 0x0002 125 132 // -- XCS_SUNKBORDERS: paint static controls (e.g. CPU meter) 126 133 // with a "sunk" 3D frame. If not set, do not. 134 135 #define XCS_SIZINGBARS 0x0004 127 136 // -- XCS_SIZINGBARS: XCenter should automatically paint 128 137 // sizing bars for sizeable widgets. 138 139 #define XCS_ALL3DBORDERS 0x0008 129 140 // -- XCS_ALL3DBORDERS: XCenter should draw all four 3D 130 141 // borders around itself. If not set, it will only 131 142 // draw one border (the one towards the screen). 132 143 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 133 153 ULONG ulPosition; 134 154 // 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. 136 156 // This is _one_ of the following: 137 // -- XCENTER_BOTTOM138 // -- XCENTER_TOP157 #define XCENTER_BOTTOM 0 158 #define XCENTER_TOP 1 139 159 // Left and right are not yet supported. 140 160 141 161 ULONG ul3DBorderWidth; 142 // 3D border width; can change162 // 3D border width; can be changed by user at any time 143 163 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 147 171 148 172 /* … … 169 193 // height of tallest widget == minimum height of client 170 194 // 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] 172 218 173 219 } XCENTERGLOBALS, *PXCENTERGLOBALS; 220 221 typedef const struct _XCENTERGLOBALS *PCXCENTERGLOBALS; 174 222 175 223 // forward declaration 176 224 typedef struct _XCENTERWIDGET *PXCENTERWIDGET; 177 225 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); 180 228 typedef CTRSETSETUPSTRING *PCTRSETSETUPSTRING; 181 229 … … 189 237 * work as follows: 190 238 * 191 * 1. You must a function that displays a modal239 * 1. You must write a function that displays a modal 192 240 * dialog. This function must have the following 193 241 * prototype: … … 195 243 + VOID EXPENTRY ShowSettingsDlg(PWIDGETSETTINGSDLGDATA pData) 196 244 * 197 * 2. Store that function in the198 * XCENTERWIDGETCLASS.pShowSettingsDlg field for199 * your widget class.245 * 2. In the "init module" export, store that function 246 * in the XCENTERWIDGETCLASS.pShowSettingsDlg field 247 * for your widget class. 200 248 * 201 249 * This will enable the "Properties" menu item … … 238 286 // DO NOT CHANGE 239 287 240 P XCENTERGLOBALSpGlobals;288 PCXCENTERGLOBALS pGlobals; 241 289 // if != NULL, currently open XCenter 242 290 // for which widget data is being changed. … … 277 325 typedef WGTSHOWSETTINGSDLG *PWGTSHOWSETTINGSDLG; 278 326 279 // widget class flags280 #define WGTF_SIZEABLE 0x0001281 #define WGTF_NOUSERCREATE 0x0002282 #define WGTF_UNIQUEPERXCENTER 0x0004283 #define WGTF_UNIQUEGLOBAL (0x0008 + 0x0004)284 #define WGTF_TOOLTIP 0x0010285 #define WGTF_TOOLTIP_AT_MOUSE (0x0020 + 0x0010)286 #define WGTF_TRANSPARENT 0x0040287 #define WGTF_CONTAINER 0x0080288 #define WGTF_NONFOCUSTRAVERSABLE 0x0100289 290 327 /* 291 328 *@@ XCENTERWIDGETCLASS: … … 293 330 * used in an XCenter. Such a class can either 294 331 * 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. 295 482 */ 296 483 … … 301 488 // several widget classes). A plugin DLL is responsible for 302 489 // registering this window class when it's loaded. 490 // Naturally, this must be unique on the system. 303 491 304 492 ULONG ulExtra; … … 309 497 // widget classes in the same window proc. You must copy this 310 498 // to your private widget data then. 499 // For example, MONITORS.DLL uses this to differentiate 500 // between the various monitor widget classes. 311 501 312 502 const char *pcszWidgetClass; 313 503 // 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. 316 517 317 518 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] 320 529 321 530 ULONG ulClassFlags; 322 531 // WGTF_* flags; any combination of the following: 532 533 #define WGTF_SIZEABLE 0x0001 323 534 // -- 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 325 539 // -- WGTF_NOUSERCREATE: do not show this class in 326 540 // the "add widget" menu, and do not allow creating 327 541 // 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 328 549 // -- WGTF_UNIQUEPERXCENTER: only one widget of this class 329 550 // should be created per XCenter. 551 552 #define WGTF_UNIQUEGLOBAL (0x0008 + 0x0004) 330 553 // -- WGTF_UNIQUEGLOBAL: only one widget of this class 331 554 // 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 333 558 // -- WGTF_TOOLTIP: if set, the widget has a tooltip 334 559 // 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). 336 562 // 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) 337 566 // -- WGTF_TOOLTIP_AT_MOUSE: like WGTF_TOOPTIP, but the 338 567 // tooltip is not centered above the widget, but put 339 568 // 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] 341 602 342 603 PWGTSHOWSETTINGSDLG pShowSettingsDlg; … … 351 612 } XCENTERWIDGETCLASS, *PXCENTERWIDGETCLASS; 352 613 614 typedef const struct _XCENTERWIDGETCLASS *PCXCENTERWIDGETCLASS; 615 353 616 /* 354 617 *@@ XCENTERWIDGETSETTING: … … 357 620 * user has configured for a widget. 358 621 * 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 * 359 627 * An array of these is returned by XCenter::xwpQueryWidgets. 360 628 */ … … 362 630 typedef struct _XCENTERWIDGETSETTING 363 631 { 364 PSZ 632 PSZ pszWidgetClass; // widget class name; 365 633 // we cannot use the binary PXCENTERWIDGETCLASS pointer 366 634 // here because these structures are dynamically unloaded... 367 635 // use ctrpFindClass to find the XCENTERWIDGETCLASS ptr. 368 PSZ 636 PSZ pszSetupString; 369 637 // widget-class-specific setup string; can be NULL 370 638 … … 384 652 * being a child window of the XCenter client, 385 653 * 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. 386 657 * 387 658 * This structure is created once for each widget … … 393 664 * The widget can allocate another widget-specific 394 665 * 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. 396 669 * 397 670 * This structure is automatically freed by the … … 401 674 * General rule: The widget must clean up what it 402 675 * allocated itself. 676 * 677 * See XCENTERWIDGETCLASS for rules that a widget 678 * window proc must conform to. 403 679 */ 404 680 … … 424 700 // proc must pass all unprocessed messages (and a 425 701 // few more) to this instead of WinDefWindowProc. 426 // See ctrDefWidgetProcfor details.427 428 const XCENTERGLOBALS *pGlobals;702 // See XCENTERWIDGETCLASS for details. 703 704 PCXCENTERGLOBALS pGlobals; 429 705 // ptr to client/frame window data (do not change) 430 706 431 P XCENTERWIDGETCLASS pWidgetClass;707 PCXCENTERWIDGETCLASS pWidgetClass; 432 708 // widget class this widget was created from; 433 709 // this ptr is only valid during WM_CREATE and 434 710 // always NULL afterwards 435 711 436 const char *pcszWidgetClass;712 PCSZ pcszWidgetClass; 437 713 // internal name of the widget's class; this 438 714 // is the same as pWidgetClass->pcszWidgetClass, … … 442 718 // class flags copied from XCENTERWIDGETCLASS. 443 719 444 const char *pcszSetupString;720 PCSZ pcszSetupString; 445 721 // class-specific setup string. This field 446 722 // is only valid during WM_CREATE and then holds … … 449 725 // setup string exists. After WM_CREATE, the 450 726 // 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. 451 732 452 733 /* … … 470 751 // all remaining size on the XCenter bar (by 471 752 // returning -1 for cx with WM_CONTROL and 472 // 753 // XCN_QUERYSIZE), it cannot be sizeable. 473 754 474 755 HWND hwndContextMenu; … … 485 766 // This is only valid after WM_CREATE. 486 767 487 const char *pcszHelpLibrary;768 PCSZ pcszHelpLibrary; 488 769 ULONG ulHelpPanelID; 489 770 // if these two are specified, the XCenter will … … 501 782 // own data (which you must clean up yourself on 502 783 // 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 503 789 } XCENTERWIDGET; 504 790 … … 509 795 ********************************************************************/ 510 796 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); 515 806 typedef CTRSCANSETUPSTRING *PCTRSCANSETUPSTRING; 516 807 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); 519 810 typedef CTRPARSECOLORSTRING *PCTRPARSECOLORSTRING; 520 811 … … 525 816 // ctrSetSetupString has been defined above 526 817 527 BOOL APIENTRY ctrDisplayHelp(P XCENTERGLOBALS pGlobals,528 const char *pcszHelpFile,529 ULONG ulHelpPanelID);530 typedef BOOL APIENTRY CTRDISPLAYHELP(P XCENTERGLOBALS 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); 533 824 typedef CTRDISPLAYHELP *PCTRDISPLAYHELP; 534 825 … … 541 832 typedef CTRPAINTSTATICWIDGETBORDER *PCTRPAINTSTATICWIDGETBORDER; 542 833 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 543 842 MRESULT EXPENTRY ctrDefWidgetProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2); 544 843 // a pointer to this is in XCENTERWIDGET if the widget 545 844 // 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 550 858 551 859 /* ****************************************************************** … … 658 966 659 967 /* 660 * @@XN_QUERYSETUP:968 * XN_QUERYSETUP: 661 969 * notification code for WM_CONTROL sent to a widget 662 970 * when the sender needs to know the widget's setup string. … … 677 985 * to store the setup string (even if mp2 is NULL). 678 986 * 679 * @@added V0.9.9 (2001-03-01) [lafaix]680 */ 681 682 #define XN_QUERYSETUP 4987 *added V0.9.9 (2001-03-01) [lafaix] 988 */ 989 990 // #define XN_QUERYSETUP 4 683 991 684 992 // flags for XN_BEGINANIMATE and XN_ENDANIMATE … … 743 1051 744 1052 /* 745 * @@XN_QUERYWIDGETCOUNT:1053 * XN_QUERYWIDGETCOUNT: 746 1054 * notification code for WM_CONTROL sent from the XCenter 747 1055 * to a widget when it needs to know how many elements a … … 765 1073 * for the count. 766 1074 * 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 7772 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: 775 1083 * notification code for WM_CONTROL sent from the XCenter 776 1084 * to a widget when it needs to know the widget present at … … 789 1097 * XCENTERWIDGET structure. 790 1098 * 791 * @@added V0.9.9 (2001-02-23) [lafaix]792 */ 793 794 #define XN_QUERYWIDGET 81099 *added V0.9.9 (2001-02-23) [lafaix] 1100 */ 1101 1102 // #define XN_QUERYWIDGET 8 795 1103 796 1104 // structure needed for XN_INSERTWIDGET … … 808 1116 809 1117 /* 810 * @@XN_INSERTWIDGET:1118 * XN_INSERTWIDGET: 811 1119 * notification code for WM_CONTROL sent from the XCenter 812 1120 * to a widget when it needs to add a widget at a specified … … 826 1134 * the inserted one. 827 1135 * 828 * @@added V0.9.9 (2001-02-23) [lafaix]829 */ 830 831 #define XN_INSERTWIDGET 9832 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: 835 1143 * notification code for WM_CONTROL sent from the XCenter 836 1144 * to a widget when it needs to remove a widget at a specified … … 847 1155 * The widget must return the count of remaining widgets. 848 1156 * 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 853 1261 854 1262 /* ****************************************************************** … … 860 1268 /* 861 1269 *@@ XCM_SETWIDGETSIZE: 862 * this msg can be posted to the client863 * from a widget if it wants to change1270 * this msg can be posted by a widget 1271 * to its parent if it wants to change 864 1272 * its size, e.g. because its display 865 1273 * has changed and it needs more room. 866 1274 * 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 * 867 1284 * Parameters: 868 1285 * … … 872 1289 * widget wants to have. 873 1290 * 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. 877 1298 */ 878 1299 … … 886 1307 #define XFMF_SHOWWIDGETS 0x0010 887 1308 #define XFMF_RESURFACE 0x0020 1309 #define XFMF_FOCUS2FIRSTWIDGET 0x0040 888 1310 889 1311 /* 890 1312 *@@ 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 893 1316 * gets destroyed, but can be posted by anyone. 894 1317 * 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 898 1330 * of the following: 899 1331 * … … 916 1348 * -- XFMF_RESURFACE: resurface XCenter to HWND_TOP. 917 1349 * 1350 * -- XFMF_FOCUS2FIRSTWIDGET: implies XFMF_RESURFACE, 1351 * but will open the X-Button widget's menu, if 1352 * appplicable. 1353 * 918 1354 * Even if you specify 0, the XCenter will be re-shown 919 1355 * if it is currently auto-hidden. … … 921 1357 * -- mp2: reserved, must be 0. 922 1358 * 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. 925 1366 */ 926 1367 … … 929 1370 /* 930 1371 *@@ XCM_SAVESETUP: 931 * this msg can be sent (!) to the client932 * by a widget if its settings have been1372 * this msg can be sent (!) by a widget to 1373 * its parent if its settings have been 933 1374 * changed and it wants these settings to 934 1375 * 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. 935 1385 * 936 1386 * This is useful when fonts or colors have … … 939 1389 * therefore won't work). 940 1390 * 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 * 941 1398 * Parameters: 942 1399 * … … 945 1402 * -- const char* mp2: zero-terminated setup string. 946 1403 * 1404 * Returns: TRUE if the setup string was successfully 1405 * saved. 1406 * 947 1407 *@@added V0.9.7 (2000-12-04) [umoeller] 948 1408 */ … … 950 1410 #define XCM_SAVESETUP (WM_USER + 2) 951 1411 952 // WM_USER + 3 and WM_USER + 4are reserved1412 // WM_USER + 3 to WM_USER + 10 are reserved 953 1413 954 1414 /* ****************************************************************** … … 964 1424 typedef ULONG EXPENTRY FNWGTINITMODULE_OLD(HAB hab, 965 1425 HMODULE hmodXFLDR, 966 P XCENTERWIDGETCLASS *ppaClasses,1426 PCXCENTERWIDGETCLASS *ppaClasses, 967 1427 PSZ pszErrorMsg); 968 1428 typedef FNWGTINITMODULE_OLD *PFNWGTINITMODULE_OLD; … … 971 1431 HMODULE hmodPlugin, 972 1432 HMODULE hmodXFLDR, 973 P XCENTERWIDGETCLASS *ppaClasses,1433 PCXCENTERWIDGETCLASS *ppaClasses, 974 1434 PSZ pszErrorMsg); 975 1435 typedef FNWGTINITMODULE_099 *PFNWGTINITMODULE_099;
Note:
See TracChangeset
for help on using the changeset viewer.