]> cygwin.com Git - cygwin-apps/setup.git/blobdiff - dialog.h
2002-07-15 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / dialog.h
index 4d185e042ef865c3b201ab4d806ce61bfb3f36ad..3165137640ddbff372625cd29c3321c6611fee95 100644 (file)
--- a/dialog.h
+++ b/dialog.h
  *
  */
 
+#include "win32.h"
+#include "String++.h"
+
 /* global instance for the application; set in main.cc */
 extern HINSTANCE hinstance;
 
 /* used by main.cc to select the next do_* function */
 extern int next_dialog;
 
-#define D(x) void x(HINSTANCE _h)
+/* either "nothing to do" or "setup complete" or something like that */
+extern int exit_msg;
+
+#define D(x) void x(HINSTANCE _h, HWND owner)
+
+/* prototypes for all the do_* functions (most called by main.cc) */
 
-/* prototypes for all the do_* functions called by main.cc */
-D(do_source);
-D(do_root);
-D(do_net);
-D(do_site);
-D(do_other);
-D(do_choose);
-D(do_ini);
-D(do_fromcwd);
-D(do_download);
-D(do_install);
+D (do_choose);
+D (do_desktop);
+D (do_download);
+D (do_fromcwd);
+D (do_ini);
+D (do_install);
+D (do_local_dir);
+D (do_net);
+D (do_other);
+D (do_postinstall);
+D (do_root);
+D (do_site);
+D (do_source);
+D (do_splash);
 
 #undef D
 
 /* end this dialog and select the next.  Pass 0 to exit the program */
-#define NEXT(id) EndDialog(h, 0), next_dialog = id
+#define NEXT(id) EndDialog((HWND)h, 0), next_dialog = id
 
 /* Get the value of an EditText control.  Pass the previously stored
    value and it will free the memory if needed. */
+
 char *eget (HWND h, int id, char *var);
 
+/* Get the value of an EditText control. */
+
+String egetString (HWND h, int id);
+
 /* Same, but convert the value to an integer */
 
-int   eget (HWND h, int id);
+int eget (HWND h, int id);
 
-/* Set the EditText control to the given string or integer */
+/* Set the EditText control to the given value */
 
-void  eset (HWND h, int id, char *var);
-void  eset (HWND h, int id, int var);
+void eset (HWND h, int id, const char *var);
+void eset (HWND h, int id, String const);
+void eset (HWND h, int id, int var);
 
 /* RadioButtons.  ids is a null-terminated list of IDs.  Get
    returns the selected ID (or zero), pass an ID to set */
 
-int   rbget (HWND h, int *ids);
-void  rbset (HWND h, int *ids, int id);
+int rbget (HWND h, int *ids);
+void rbset (HWND h, int *ids, int id);
 
 /* *This* version of fatal (compare with msg.h) uses GetLastError() to
    format a suitable error message.  Similar to perror() */
 
-void fatal (char *msg);
+void fatal (const char *msg) __attribute__ ((noreturn));
This page took 0.02424 seconds and 5 git commands to generate.