Changeset 222 for trunk/src/helpers/cctl_chart.c
- Timestamp:
- Sep 3, 2002, 8:17:46 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/cctl_chart.c
r196 r222 281 281 */ 282 282 283 staticVOID DrawCenteredText(HPS hpsMem,283 STATIC VOID DrawCenteredText(HPS hpsMem, 284 284 PPOINTL pptlMiddlePoint, 285 285 const char *pcsz) … … 354 354 */ 355 355 356 staticVOID PaintBarChart(HPS hpsMem,356 STATIC VOID PaintBarChart(HPS hpsMem, 357 357 PRECTL prclWholeStatic, // in: rectl to paint into 358 358 PCHARTDATA pChartData, // in: chart data … … 557 557 */ 558 558 559 staticVOID PaintPieChart(HPS hpsMem,559 STATIC VOID PaintPieChart(HPS hpsMem, 560 560 PRECTL prclWholeStatic, // in: rectl to paint into 561 561 PCHARTDATA pChartData, // in: chart data … … 1096 1096 */ 1097 1097 1098 staticVOID CleanupBitmap(PCHARTCDATA pChtCData)1098 STATIC VOID CleanupBitmap(PCHARTCDATA pChtCData) 1099 1099 { 1100 1100 if (pChtCData) … … 1151 1151 */ 1152 1152 1153 staticVOID CleanupData(PCHARTCDATA pChtCData)1153 STATIC VOID CleanupData(PCHARTCDATA pChtCData) 1154 1154 { 1155 1155 if (pChtCData) … … 1203 1203 */ 1204 1204 1205 staticVOID SetChartData(HWND hwndChart,1205 STATIC VOID SetChartData(HWND hwndChart, 1206 1206 PCHARTCDATA pChtCData, 1207 1207 PCHARTDATA pcdNew) … … 1274 1274 */ 1275 1275 1276 staticVOID PaintChart(HWND hwndChart,1276 STATIC VOID PaintChart(HWND hwndChart, 1277 1277 PCHARTCDATA pChtCData, 1278 1278 HPS hps, … … 1451 1451 */ 1452 1452 1453 staticLONG FindItemFromPoint(PCHARTCDATA pChtCData,1453 STATIC LONG FindItemFromPoint(PCHARTCDATA pChtCData, 1454 1454 LONG lx, 1455 1455 LONG ly) … … 1490 1490 */ 1491 1491 1492 staticVOID SendWMControl(HWND hwndChart,1492 STATIC VOID SendWMControl(HWND hwndChart, 1493 1493 MPARAM mp1Mouse, 1494 1494 USHORT usNotify, … … 1522 1522 */ 1523 1523 1524 staticBOOL SetEmphasis(HWND hwndChart,1524 STATIC BOOL SetEmphasis(HWND hwndChart, 1525 1525 PCHARTCDATA pChtCData, 1526 1526 ULONG ulEmphasis, // in: 0 == selection, 1 == source emphasis
Note:
See TracChangeset
for help on using the changeset viewer.