Searched refs:bestSize (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dartstd.cpp233 wxSize bestSize = GetSizeHint(client); local
234 if (bestSize != wxDefaultSize)
239 if ((bmp_h < bestSize.x) && (bmp_w < bestSize.y))
244 wxPoint offset((bestSize.x - bmp_w)/2, (bestSize.y - bmp_h)/2);
246 img.Resize(bestSize, offset);
254 img.Scale(bestSize.x, bestSize.y,
H A Dbookctrl.cpp147 wxSize bestSize; local
158 if ( childBestSize.x > bestSize.x )
159 bestSize.x = childBestSize.x;
161 if ( childBestSize.y > bestSize.y )
162 bestSize.y = childBestSize.y;
167 bestSize = GetCurrentPage()->GetBestSize();
171 wxSize best = CalcSizeFromPage(bestSize);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dcontrol.cpp274 wxSize bestSize(
284 if (bestSize.x==0)
285 bestSize.x = bestSize.y;
286 if (bestSize.y==0)
287 bestSize.y = bestSize.x;
291 bestSize.y *= 2;
293 bestSize.x *= 2;
295 return bestSize;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/motif/
H A Dchoice.cpp130 wxSize bestSize = GetBestSize(); local
131 if( size.x > 0 ) bestSize.x = size.x;
132 if( size.y > 0 ) bestSize.y = size.y;
140 pos.x, pos.y, bestSize.x, bestSize.y);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dcombobox.cpp195 wxSize bestSize = wxListBox::GetBestSize(); local
196 return wxSize(wxMax(bestSize.x,minWidth),
197 wxMin(bestSize.y,maxHeight));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/checklst/
H A Dchecklst.cpp366 wxSize bestSize = m_pListBox->GetBestSize(); local
369 bestSize.x, bestSize.y

Completed in 89 milliseconds