Searched refs:wLine (Results 1 - 9 of 9) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Dchoice.cpp301 int wLine; local
335 wLine = width ;
348 wLine = bounds.h ;
350 wLine = ::TextWidth( str.c_str() , 0 , str.length() ) ;
353 lbWidth = wxMax( lbWidth, wLine ) ;
H A Dlistbox.cpp244 int wLine; local
274 wLine = width ;
288 wLine = bounds.h;
290 wLine = ::TextWidth( str.c_str(), 0, str.length() );
293 lbWidth = wxMax( lbWidth, wLine );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dchoice.cpp245 int wLine; local
277 wLine = bounds.h ;
279 wLine = ::TextWidth( str.c_str() , 0 , str.length() ) ;
281 lbWidth = wxMax(lbWidth, wLine);
H A Dlistbox.cpp624 int wLine; local
654 wLine = bounds.h ;
656 wLine = ::TextWidth( str.c_str() , 0 , str.length() ) ;
658 lbWidth = wxMax(lbWidth, wLine);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dchoice.cpp642 int wLine; local
643 GetTextExtent(GetString(i), &wLine, NULL); local
644 if ( wLine > wChoice )
645 wChoice = wLine;
H A Dlistbox.cpp667 int wLine; local
672 GetTextExtent(str, &wLine, NULL);
673 if ( wLine > wListbox )
674 wListbox = wLine;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dlistbox.cpp1037 int wLine; local
1040 GetTextExtent(GetString(i), &wLine, NULL); local
1041 if ( wLine > lbWidth )
1042 lbWidth = wLine;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dlistbox.cpp1220 int wLine; local
1225 GetTextExtent(str, &wLine, NULL);
1226 lbWidth = wxMax(lbWidth, wLine);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/
H A Dtextctrl.cpp3830 wxCoord wLine = 0; // suppress compiler warning about uninit var local
3834 (rect.x > (wLine = lineData.GetRowWidth(row++))) )
3836 rect.x -= wLine;
3843 while ( (row < rowLast) && (width > wLine - rect.x) )
3848 width -= wLine - rect.x;
3852 wLine = lineData.GetRowWidth(row++);

Completed in 199 milliseconds