Move FileNamePopUp to dialogs.c
authorH.G. Muller <h.g.muller@hccnet.nl>
Tue, 17 Apr 2012 13:27:21 +0000 (15:27 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Tue, 17 Apr 2012 13:27:21 +0000 (15:27 +0200)
dialogs.c
menus.h
xboard.c
xboard.h

index 11c6c7a..046fbc6 100644 (file)
--- a/dialogs.c
+++ b/dialogs.c
@@ -2296,4 +2296,26 @@ Browse (DialogClass dlg, char *label, char *proposed, char *ext, Boolean pathFla
     SetWidgetLabel(&browseOptions[9], FileTypes[j]);
 }
 
+static char *openName;
+FileProc fileProc;
+char *fileOpenMode;
+FILE *openFP;
+
+void
+DelayedLoad ()
+{
+  (void) (*fileProc)(openFP, 0, openName);
+}
+
+void
+FileNamePopUp (char *label, char *def, char *filter, FileProc proc, char *openMode)
+{
+    fileProc = proc;           /* I can't see a way not */
+    fileOpenMode = openMode;   /*   to use globals here */
+    {   // [HGM] use file-selector dialog stolen from Ghostview
+       // int index; // this is not supported yet
+       Browse(BoardWindow, label, (def[0] ? def : NULL), filter, False, openMode, &openName, &openFP);
+    }
+}
+
 
diff --git a/menus.h b/menus.h
index ddf942e..5ab748a 100644 (file)
--- a/menus.h
+++ b/menus.h
@@ -52,6 +52,7 @@
 
 
 typedef void MenuProc P((void));
+typedef int (*FileProc) P((FILE *f, int n, char *title));
 
 typedef struct {
     String string;
@@ -167,6 +168,8 @@ void EngineOutputProc P((void));
 void EvalGraphProc P((void));
 
 int SaveGameListAsText P((FILE *f));
+void FileNamePopUp P((char *label, char *def, char *filter,
+                     FileProc proc, char *openMode));
 
 void AppendMenuItem P((char *text, int n));
 MenuItem *MenuNameToItem P((char *menuName));
index 5877c3a..4935dea 100644 (file)
--- a/xboard.c
+++ b/xboard.c
@@ -256,8 +256,6 @@ void DrawPositionProc P((Widget w, XEvent *event,
 void CommentClick P((Widget w, XEvent * event,
                   String * params, Cardinal * nParams));
 void ICSInputBoxPopUp P((void));
-void FileNamePopUp P((char *label, char *def, char *filter,
-                     FileProc proc, char *openMode));
 void SelectCommand P((Widget w, XtPointer client_data, XtPointer call_data));
 void KeyBindingProc P((Widget w, XEvent *event, String *prms, Cardinal *nprms));
 void QuitWrapper P((Widget w, XEvent *event, String *prms, Cardinal *nprms));
@@ -303,8 +301,6 @@ XFontStruct *coordFontStruct, *countFontStruct;
 XtAppContext appContext;
 char *layoutName;
 
-FileProc fileProc;
-char *fileOpenMode;
 char installDir[] = "."; // [HGM] UCI: needed for UCI; probably needs run-time initializtion
 
 Position commentX = -1, commentY = -1;
@@ -2800,26 +2796,6 @@ CommentPopDown ()
     PopDown(CommentDlg);
 }
 
-static char *openName;
-FILE *openFP;
-
-void
-DelayedLoad ()
-{
-  (void) (*fileProc)(openFP, 0, openName);
-}
-
-void
-FileNamePopUp (char *label, char *def, char *filter, FileProc proc, char *openMode)
-{
-    fileProc = proc;           /* I can't see a way not */
-    fileOpenMode = openMode;   /*   to use globals here */
-    {   // [HGM] use file-selector dialog stolen from Ghostview
-       // int index; // this is not supported yet
-       Browse(BoardWindow, label, (def[0] ? def : NULL), filter, False, openMode, &openName, &openFP);
-    }
-}
-
 
 /* Disable all user input other than deleting the window */
 static int frozen = 0;
index c9a68ce..b6709d7 100644 (file)
--- a/xboard.h
+++ b/xboard.h
@@ -130,8 +130,6 @@ typedef struct {
 #define SETTINGS_FILE           SYSCONFDIR"/xboard.conf"
 #define COLOR_BKGD              "white"
 
-typedef int (*FileProc) P((FILE *f, int n, char *title));
-
 void NewTagsPopup P((char *text, char *msg));
 int AppendText P((Option *opt, char *s));
 void NewCommentPopup P((char *title, char *text, int index));