예제 #1
0
파일: Canvas.hpp 프로젝트: StefanL74/XCSoar
  void DrawFilledRectangle(const PixelRect &rc, const Brush &brush) {
    assert(IsDefined());

    ::FillRect(dc, &rc, brush.Native());
  }
예제 #2
0
파일: Canvas.hpp 프로젝트: StefanL74/XCSoar
 void Select(const Brush &brush) {
   SelectObject(brush.Native());
 }