Update of /cvsroot/fxruby/FXRuby/swig-interfaces
In directory usw-pr-cvs1:/tmp/cvs-serv31786
Modified Files:
FXApp.i
Log Message:
Index: FXApp.i
===================================================================
RCS file: /cvsroot/fxruby/FXRuby/swig-interfaces/FXApp.i,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** FXApp.i 19 Mar 2002 23:18:40 -0000 1.37
--- FXApp.i 26 Mar 2002 21:38:50 -0000 1.38
***************
*** 112,115 ****
--- 112,122 ----
%exception FXApp::FXApp "$action FXRbRegisterRubyObj(self, result);";
+ %ignore FXApp::getDisplay() const;
+ %ignore FXApp::findWindowWithId(FXID xid) const;
+ %ignore FXApp::findWindowAt(FXint rx, FXint ry, FXID window) const;
+
+ %rename(stopModalMatching) FXApp::stopModal(FXWindow* window,FXint value);
+ %rename(stopModalInnermost) FXApp::stopModal(FXint value);
+
/// Application Object
class FXApp : public FXObject {
***************
*** 167,171 ****
/// Return pointer
! // void* getDisplay() const; // FIXME
/// Get default visual
--- 174,178 ----
/// Return pointer
! void* getDisplay() const;
/// Get default visual
***************
*** 191,198 ****
/// Find window from id
! // FXWindow* findWindowWithId(FXID xid) const; IDPROB
/// Find window from root x,y, starting from given window
! // FXWindow* findWindowAt(FXint rx,FXint ry,FXID window=0) const; IDPROB
/**
--- 198,205 ----
/// Find window from id
! FXWindow* findWindowWithId(FXID xid) const;
/// Find window from root x,y, starting from given window
! FXWindow* findWindowAt(FXint rx,FXint ry,FXID window=0) const;
/**
***************
*** 355,364 ****
* All deeper nested event loops are terminated with code equal to 0.
*/
! %name(stopModalMatching) void stopModal(FXWindow* window,FXint value=0);
/**
* Break out of the innermost modal loop, returning code equal to value.
*/
! %name(stopModalInnermost) void stopModal(FXint value=0);
/// Force GUI refresh
--- 362,371 ----
* All deeper nested event loops are terminated with code equal to 0.
*/
! void stopModal(FXWindow* window,FXint value=0);
/**
* Break out of the innermost modal loop, returning code equal to value.
*/
! void stopModal(FXint value=0);
/// Force GUI refresh
|