Changeset 195 for trunk/src/helpers/comctl.c
- Timestamp:
- Aug 5, 2002, 8:57:15 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/comctl.c
r184 r195 136 136 *@@changed V0.9.16 (2001-10-24) [umoeller]: fixed wrong hatch color and paint offset 137 137 *@@changed V0.9.16 (2001-10-28) [umoeller]: added bitmap support, fixed bad clip rectangle 138 *@@changed V0.9.20 (2002-08-04) [umoeller]: fixed button offset, depressed color 138 139 */ 139 140 … … 147 148 ulOfs = 0; 148 149 LONG lLeft, 149 lRight; 150 lRight, 151 lColorMiddle = pxbd->lMiddle; 150 152 RECTL rclWin; 153 151 154 memcpy(&rclWin, &pxbd->rcl, sizeof(RECTL)); 152 155 … … 165 168 if (ulBorder == 0) 166 169 ulBorder = 1; 170 171 // make the depressed color darker 172 // V0.9.20 (2002-07-31) [umoeller] 173 gpihManipulateRGB(&lColorMiddle, 174 .95); 167 175 } 168 176 else … … 196 204 WinFillRect(hps, 197 205 &rclWin, // exclusive 198 pxbd->lMiddle);206 lColorMiddle); 199 207 200 208 // get icon … … 254 262 WinDrawPointer(hps, 255 263 // center this in remaining rectl 256 ptl.x + ulOfs,257 ptl.y - ulOfs,264 ptl.x, // + ulOfs, 265 ptl.y, // - ulOfs, 258 266 pxbd->hptr, 259 267 DP_MINI);
Note:
See TracChangeset
for help on using the changeset viewer.