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

Lines Matching refs:gc

86                         GdkGC        *gc,
97 wxCHECK_RET( gc, _T("NULL gc in gdk_wx_draw_bitmap") );
107 GDK_GC_XGC(gc),
237 static void wxFreePoolGC( GdkGC *gc )
241 if (wxGCPool[i].m_gc == gc)
1135 GdkGC *gc = gdk_gc_new( new_mask );
1137 gdk_gc_set_foreground( gc, &col );
1138 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
1140 gdk_gc_set_background( gc, &col );
1142 gdk_gc_set_foreground( gc, &col );
1143 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
1144 gdk_gc_set_clip_origin( gc, -xx, -yy );
1145 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1146 gdk_gc_set_stipple( gc, mask );
1147 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, ww, hh );
1149 g_object_unref (gc);
1161 GdkGC *gc = gdk_gc_new( bitmap2 );
1162 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1163 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
1164 gdk_wx_draw_bitmap( bitmap2, gc, use_bitmap.GetPixmap(), 0, 0, 0, 0, -1, -1 );
1169 g_object_unref (gc);
1347 GdkGC *gc = gdk_gc_new( new_mask );
1349 gdk_gc_set_foreground( gc, &col );
1350 gdk_gc_set_ts_origin( gc, -xsrcMask, -ysrcMask);
1351 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1353 gdk_gc_set_background( gc, &col );
1355 gdk_gc_set_foreground( gc, &col );
1356 gdk_gc_set_clip_region( gc, m_currentClippingRegion.GetRegion() );
1357 // was: gdk_gc_set_clip_origin( gc, -xx, -yy );
1358 gdk_gc_set_clip_origin( gc, -cx, -cy );
1359 gdk_gc_set_fill( gc, GDK_OPAQUE_STIPPLED );
1360 gdk_gc_set_stipple( gc, mask );
1361 gdk_draw_rectangle( new_mask, gc, TRUE, 0, 0, bm_ww, bm_hh );
1363 g_object_unref (gc);
1379 GdkGC *gc = gdk_gc_new( bitmap );
1380 gdk_gc_set_foreground( gc, m_textForegroundColour.GetColor() );
1381 gdk_gc_set_background( gc, m_textBackgroundColour.GetColor() );
1382 gdk_wx_draw_bitmap( bitmap, gc, use_bitmap.GetPixmap(), 0, 0, 0, 0, -1, -1 );
1387 g_object_unref (gc);