[Fxruby-commits] CVS: FXRuby/swig-interfaces FXDC.i,1.22,1.23 stubs.i,1.24,1.25
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-07-11 18:00:26
|
Update of /cvsroot/fxruby/FXRuby/swig-interfaces In directory usw-pr-cvs1:/tmp/cvs-serv23484/swig-interfaces Modified Files: FXDC.i stubs.i Log Message: Added support for new FXDC virtual functions fillChord() and fillChords(). Index: FXDC.i =================================================================== RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/FXDC.i,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** FXDC.i 11 Jul 2002 13:33:14 -0000 1.22 --- FXDC.i 11 Jul 2002 18:00:23 -0000 1.23 *************** *** 252,255 **** --- 252,259 ---- virtual void fillRectangles(const FXRectangle* rectangles,FXuint nrectangles); + /// Fill chord + virtual void fillChord(FXint x,FXint y,FXint w,FXint h,FXint ang1,FXint ang2); + virtual void fillChords(const FXArc* chords,FXuint nchords); + /// Draw arcs virtual void fillArc(FXint x,FXint y,FXint w,FXint h,FXint ang1,FXint ang2); Index: stubs.i =================================================================== RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/stubs.i,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** stubs.i 11 Jul 2002 13:33:14 -0000 1.24 --- stubs.i 11 Jul 2002 18:00:23 -0000 1.25 *************** *** 52,55 **** --- 52,57 ---- %name(fillRectangle) void _fillRectangle(FXint x,FXint y,FXint w,FXint h); \ %name(fillRectangles) void _fillRectangles(const FXRectangle* rectangles,FXuint nrectangles); \ + %name(fillChord) void _fillChord(FXint x,FXint y,FXint w,FXint h,FXint ang1,FXint ang2); \ + %name(fillChords) void _fillChords(const FXArc* chords,FXuint nchords); \ %name(fillArc) void _fillArc(FXint x,FXint y,FXint w,FXint h,FXint ang1,FXint ang2); \ %name(fillArcs) void _fillArcs(const FXArc* arcs,FXuint narcs); \ |