00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
#include "precomp.h"
00014
#pragma hdrstop
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 INT LBGetVariableHeightItemHeight(
00026
PLBIV plb,
00027 INT itemNumber)
00028 {
00029
BYTE itemHeight;
00030
int offsetHeight;
00031
00032
if (plb->
cMac) {
00033
if (plb->
fHasStrings)
00034 offsetHeight = plb->
cMac *
sizeof(
LBItem);
00035
else
00036 offsetHeight = plb->
cMac *
sizeof(
LBODItem);
00037
00038
if (plb->
wMultiple)
00039 offsetHeight += plb->
cMac;
00040
00041 offsetHeight += itemNumber;
00042
00043 itemHeight = *(plb->
rgpch+(
UINT)offsetHeight);
00044
00045
return (
INT)itemHeight;
00046
00047 }
00048
00049
00050
00051
00052
00053
return gpsi->cySysFontChar;
00054 }
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 void LBSetVariableHeightItemHeight(
00068
PLBIV plb,
00069 INT itemNumber,
00070 INT itemHeight)
00071 {
00072
int offsetHeight;
00073
00074
if (plb->
fHasStrings)
00075 offsetHeight = plb->
cMac *
sizeof(
LBItem);
00076
else
00077 offsetHeight = plb->
cMac *
sizeof(
LBODItem);
00078
00079
if (plb->
wMultiple)
00080 offsetHeight += plb->
cMac;
00081
00082 offsetHeight += itemNumber;
00083
00084 *(plb->
rgpch + (
UINT)offsetHeight) = (
BYTE)itemHeight;
00085
00086 }
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101 INT CItemInWindowVarOwnerDraw(
00102
PLBIV plb,
00103 BOOL fPartial)
00104 {
00105 RECT rect;
00106
INT sItem;
00107
INT clientbottom;
00108
00109
_GetClientRect(plb->
spwnd, (LPRECT)&rect);
00110 clientbottom = rect.bottom;
00111
00112
00113
00114
00115
00116
for (sItem = plb->
iTop; sItem < plb->
cMac; sItem++) {
00117
00118
00119
00120
00121
if (!
LBGetItemRect(plb, sItem, (LPRECT)&rect)) {
00122
00123
00124
00125
00126
00127
return (sItem - plb->
iTop);
00128 }
00129
00130
if (!fPartial && rect.bottom > clientbottom) {
00131
00132
00133
00134
00135
00136
00137
return (sItem - plb->
iTop - 1);
00138 }
00139 }
00140
00141
00142
00143
00144
return (plb->
cMac - plb->
iTop);
00145 }
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157 INT LBPage(
00158
PLBIV plb,
00159 INT startItem,
00160 BOOL fPageForwardDirection)
00161 {
00162
INT i;
00163
INT height;
00164 RECT rc;
00165
00166
if (plb->
cMac == 1)
00167
return(0);
00168
00169
_GetClientRect(plb->
spwnd, &rc);
00170 height = rc.bottom;
00171 i = startItem;
00172
00173
if (fPageForwardDirection) {
00174
while ((height >= 0) && (i < plb->
cMac))
00175 height -=
LBGetVariableHeightItemHeight(plb, i++);
00176
00177
return((height >= 0) ? plb->
cMac - 1 :
max(i - 2, startItem + 1));
00178 }
else {
00179
while ((height >= 0) && (i >= 0))
00180 height -=
LBGetVariableHeightItemHeight(plb, i--);
00181
00182
return((height >= 0) ? 0 :
min(i + 2, startItem - 1));
00183 }
00184
00185 }
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198 INT LBCalcVarITopScrollAmt(
00199
PLBIV plb,
00200 INT iTopOld,
00201 INT iTopNew)
00202 {
00203 RECT rc;
00204 RECT rcClient;
00205
00206
_GetClientRect(plb->
spwnd, (LPRECT)&rcClient);
00207
00208
00209
00210
00211
00212
if (iTopOld + 1 == iTopNew) {
00213
00214
00215
00216
00217
00218
LBGetItemRect(plb, iTopOld, (LPRECT)&rc);
00219
return (rcClient.top - rc.bottom);
00220 }
00221
00222
if (iTopOld - 1 == iTopNew) {
00223
00224
00225
00226
00227
00228
LBGetItemRect(plb, iTopNew, (LPRECT)&rc);
00229
return -rc.top;
00230 }
00231
00232
return rcClient.bottom - rcClient.top;
00233 }