Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv3345/port/src/include
Modified Files:
ColorDialog.h FileDialog.h FontDialog.h
Log Message:
Add owner window as parameter for each function in CommonDialog
Index: ColorDialog.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/ColorDialog.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ColorDialog.h 14 Mar 2003 18:38:43 -0000 1.1
--- ColorDialog.h 26 Apr 2003 20:56:34 -0000 1.2
***************
*** 4,8 ****
#include "Types.h"
! BOOL osRunColorDialog(unsigned int *color);
#endif
--- 4,8 ----
#include "Types.h"
! BOOL osRunColorDialog(unsigned int *color, WindowHandle owner);
#endif
Index: FileDialog.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/FileDialog.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** FileDialog.h 26 Apr 2003 10:00:49 -0000 1.2
--- FileDialog.h 26 Apr 2003 20:56:34 -0000 1.3
***************
*** 4,11 ****
#include "Types.h"
! char *osSelectDirectory(char *title);
! char *osSelectInputFile(char *title, char *filter);
! char *osSelectInputFiles(char *title, char *filter);
! char *osSelectOutputFile(char *title, char *filter, char *nameptr);
#endif
--- 4,11 ----
#include "Types.h"
! char *osSelectDirectory(char *title, WindowHandle owner);
! char *osSelectInputFile(char *title, char *filter, WindowHandle owner);
! char *osSelectInputFiles(char *title, char *filter, WindowHandle owner);
! char *osSelectOutputFile(char *title, char *filter, char *nameptr, WindowHandle owner);
#endif
Index: FontDialog.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/FontDialog.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FontDialog.h 16 Mar 2003 23:48:14 -0000 1.1
--- FontDialog.h 26 Apr 2003 20:56:34 -0000 1.2
***************
*** 4,8 ****
#include "Types.h"
! BOOL osRunFontDialog(char **fname, int *fsize, int *fweight, int *fstyle, BOOL *funderline, BOOL *fstrikeout);
#endif
--- 4,8 ----
#include "Types.h"
! BOOL osRunFontDialog(char **fname, int *fsize, int *fweight, int *fstyle, BOOL *funderline, BOOL *fstrikeout, WindowHandle owner);
#endif
|