Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv5719/include
Modified Files:
HsPort.h
Added Files:
CommonDialogs.h
Removed Files:
ColorDialog.h FileDialog.h FontDialog.h
Log Message:
Create CommonDialogs.h
--- NEW FILE: CommonDialogs.h ---
#ifndef COMMONDIALOGS_H
#define COMMONDIALOGS_H
#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);
BOOL osRunColorDialog(unsigned int *color, WindowHandle owner);
BOOL osRunFontDialog(char **fname, int *fsize, int *fweight, int *fstyle, BOOL *funderline, BOOL *fstrikeout, WindowHandle owner);
#endif
Index: HsPort.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/HsPort.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HsPort.h 17 Mar 2003 11:04:40 -0000 1.3
--- HsPort.h 26 Apr 2003 21:02:17 -0000 1.4
***************
*** 15,20 ****
#include "Canvas.h"
#include "Bitmap.h"
! #include "FileDialog.h"
! #include "ColorDialog.h"
! #include "FontDialog.h"
#include "Message.h"
--- 15,18 ----
#include "Canvas.h"
#include "Bitmap.h"
! #include "CommonDialogs.h"
#include "Message.h"
--- ColorDialog.h DELETED ---
--- FileDialog.h DELETED ---
--- FontDialog.h DELETED ---
|