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

Lines Matching defs:gc

34                          GdkGC        *gc,
99 GdkGC *gc = gdk_gc_new( m_bitmap );
106 gdk_gc_set_foreground( gc, &color );
107 gdk_gc_set_fill( gc, GDK_SOLID );
108 gdk_draw_rectangle( m_bitmap, gc, TRUE, 0, 0, image.GetWidth(), image.GetHeight() );
145 gdk_gc_set_foreground( gc, &color );
164 gdk_draw_line( m_bitmap, gc, start_x, j, i-1, j );
171 gdk_draw_line( m_bitmap, gc, start_x, j, i, j );
174 gdk_gc_unref( gc );
209 GdkGC *gc = gdk_gc_new( m_bitmap );
211 gdk_wx_draw_bitmap( m_bitmap, gc, bitmap.GetBitmap(), 0, 0, 0, 0, bitmap.GetWidth(), bitmap.GetHeight() );
213 gdk_gc_unref( gc );
286 GdkGC *gc = gdk_gc_new(*dst);
289 gdk_wx_draw_bitmap(m_bitmap, gc, data.m_bitmap, 0, 0, 0, 0, -1, -1);
293 gdk_draw_pixmap(m_pixmap, gc, data.m_pixmap, 0, 0, 0, 0, -1, -1);
296 gdk_gc_unref(gc);
438 GdkGC *gc = NULL;
449 gc = gdk_gc_new( dstpix );
516 gdk_gc_set_foreground( gc, &col );
517 gdk_draw_point( dstpix, gc, w, h);
527 if (gc) gdk_gc_unref( gc );
759 GdkGC *gc = gdk_gc_new( GetPixmap() );
762 gc,
769 gdk_gc_unref( gc );
1202 GdkGC *gc = gdk_gc_new( ret.GetPixmap() );
1203 gdk_draw_pixmap( ret.GetPixmap(), gc, GetPixmap(), rect.x, rect.y, 0, 0, rect.width, rect.height );
1204 gdk_gc_destroy( gc );
1208 GdkGC *gc = gdk_gc_new( ret.GetBitmap() );
1211 gdk_gc_set_foreground( gc, &col );
1213 gdk_gc_set_background( gc, &col );
1214 gdk_wx_draw_bitmap( ret.GetBitmap(), gc, GetBitmap(), rect.x, rect.y, 0, 0, rect.width, rect.height );
1215 gdk_gc_destroy( gc );
1223 GdkGC *gc = gdk_gc_new( mask->m_bitmap );
1226 gdk_gc_set_foreground( gc, &col );
1228 gdk_gc_set_background( gc, &col );
1229 gdk_wx_draw_bitmap( mask->m_bitmap, gc, M_BMPDATA->m_mask->m_bitmap, rect.x, rect.y, 0, 0, rect.width, rect.height );
1230 gdk_gc_destroy( gc );