• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/univ/

Lines Matching defs:label

240                               const wxString& label,
247 DrawButtonLabel(dc, label, wxNullBitmap, rect, flags,
252 const wxString& label,
263 if ( !label.empty() && (flags & wxCONTROL_DISABLED) )
267 // shift the label if a button is pressed
275 dc.DrawLabel(label, rectShadow, alignment, indexAccel);
277 // make the main label text grey
287 dc.DrawLabel(label, image, rectLabel, alignment, indexAccel, rectBounds);
289 if ( !label.empty() && (flags & wxCONTROL_FOCUSED) )
564 const wxString& label,
572 DrawLabel(dc, label, rectText, flags, alignment, indexAccel, &rectLabel);
578 const wxString& label,
584 wxCoord height = 0; // of the label
586 if ( !label.empty() )
590 dc.GetTextExtent(label, NULL, &height);
595 // erase the background beyond the label as it might contain some
597 // the frame with label doesn't work
606 DrawFrameWithLabel(dc, label, rectFrame, rectText, flags,
609 else // no label
616 const wxString& label,
635 dc.DrawLabel(label, wxNullBitmap, rectText);
652 const wxString& label,
665 DrawItem(dc, label, rectLabel, flags);
673 const wxString& label,
681 DrawCheckOrRadioButton(dc, label, bitmap, rect, flags, align, indexAccel);
683 DrawCheckOrRadioButton(dc, label, GetCheckBitmap(flags), rect, flags, align, indexAccel);
687 const wxString& label,
695 DrawCheckOrRadioButton(dc, label, bitmap, rect, flags, align, indexAccel);
697 DrawCheckOrRadioButton(dc, label, GetRadioBitmap(flags), rect, flags, align, indexAccel);
701 const wxString& label,
708 // calculate the position of the bitmap and of the label
714 dc.GetMultiLineTextExtent(label, NULL, &rectLabel.height);
717 // align label vertically with the bitmap - looks nicer like this
736 DrawLabel(dc, label, rectLabel, flags,
883 const wxString& label,
897 DrawLabel(dc, label, rectIn, flags, wxALIGN_LEFT | wxALIGN_CENTRE_VERTICAL);