Remove xedittags.c, .h from project
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 14 Oct 2012 11:39:47 +0000 (13:39 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Tue, 6 Nov 2012 11:45:09 +0000 (12:45 +0100)
The tiny bit of code that was left was absorbed in dialogs.c, the one
prototype to menus.h.

Makefile.am
dialogs.c
menus.c
menus.h
xaw/xboard.c
xaw/xedittags.c [deleted file]
xaw/xedittags.h [deleted file]
xedittags.c [deleted file]
xedittags.h [deleted file]

index b56b362..abce9f8 100644 (file)
@@ -11,13 +11,11 @@ endif
 ### define sources for the front-end and backend
 
 GTKsources = xboard.c  xevalgraph.c  xgamelist.c \
-             xedittags.c xedittags.h \
              xhistory.c  xoptions.c  xboard.h  \
              xengineoutput.c  xevalgraph.h  xgamelist.h \
              xhistory.h
 
 Xsources   = xaw/xboard.c xaw/xboard.h \
-             xaw/xedittags.c xaw/xedittags.h \
              xaw/xengineoutput.c \
              xaw/xevalgraph.c xaw/xevalgraph.h \
              xaw/xgamelist.c xaw/xgamelist.h \
index 6287a91..f5166b2 100644 (file)
--- a/dialogs.c
+++ b/dialogs.c
@@ -1015,6 +1015,31 @@ NewTagsPopup (char *text, char *msg)
     GenericPopUp(tagsOptions, title, TagsDlg, BoardWindow, NONMODAL, 1);
 }
 
+void
+TagsPopUp (char *tags, char *msg)
+{
+    NewTagsPopup(tags, cmailMsgLoaded ? msg : NULL);
+}
+
+void
+EditTagsPopUp (char *tags, char **dest)
+{   // wrapper to preserve old name used in back-end
+    NewTagsPopup(tags, NULL);
+}
+
+void
+TagsPopDown()
+{
+    PopDown(TagsDlg);
+    bookUp = False;
+}
+
+void
+EditTagsProc ()
+{
+  if (bookUp || !PopDown(TagsDlg)) EditTagsEvent();
+}
+
 //---------------------------------------------- ICS Input Box ----------------------------------
 
 char *icsText;
diff --git a/menus.c b/menus.c
index 23e09ea..c0c0687 100644 (file)
--- a/menus.c
+++ b/menus.c
@@ -88,7 +88,6 @@ extern char *getenv();
 #include "frontend.h"
 #include "backend.h"
 #include "xhistory.h"
-#include "xedittags.h"
 #include "menus.h"
 #include "gettext.h"
 
diff --git a/menus.h b/menus.h
index 262a374..29ade2b 100644 (file)
--- a/menus.h
+++ b/menus.h
@@ -98,6 +98,7 @@ void AnalyzeModeProc P((void));
 void AnalyzeFileProc P((void));
 void MatchProc P((void));
 void MatchOptionsProc P((void));
+void EditTagsProc P((void));
 void EditCommentProc P((void));
 void IcsInputBoxProc P((void));
 void ChatProc P((void));
index 7669269..a834adf 100644 (file)
@@ -203,7 +203,6 @@ extern char *getenv();
 #include "xgamelist.h"
 #include "xhistory.h"
 #include "xevalgraph.h"
-#include "xedittags.h"
 #include "menus.h"
 #include "board.h"
 #include "dialogs.h"
diff --git a/xaw/xedittags.c b/xaw/xedittags.c
deleted file mode 100644 (file)
index d27aca3..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * xedittags.c -- Tags edit window, part of X front end for XBoard
- *
- * Copyright 1995, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
- *
- * ------------------------------------------------------------------------
- *
- * GNU XBoard is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * GNU XBoard is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see http://www.gnu.org/licenses/.  *
- *
- *------------------------------------------------------------------------
- ** See the file ChangeLog for a revision history.  */
-
-#include "config.h"
-
-#include <stdio.h>
-#include <ctype.h>
-#include <errno.h>
-#include <sys/types.h>
-
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <string.h>
-#else /* not STDC_HEADERS */
-extern char *getenv();
-# if HAVE_STRING_H
-#  include <string.h>
-# else /* not HAVE_STRING_H */
-#  include <strings.h>
-# endif /* not HAVE_STRING_H */
-#endif /* not STDC_HEADERS */
-
-#if HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-
-#include <X11/Intrinsic.h>
-#include <X11/StringDefs.h>
-#include <X11/Shell.h>
-#include <X11/cursorfont.h>
-#if USE_XAW3D
-#include <X11/Xaw3d/Dialog.h>
-#include <X11/Xaw3d/Form.h>
-#include <X11/Xaw3d/List.h>
-#include <X11/Xaw3d/Label.h>
-#include <X11/Xaw3d/SimpleMenu.h>
-#include <X11/Xaw3d/SmeBSB.h>
-#include <X11/Xaw3d/SmeLine.h>
-#include <X11/Xaw3d/Box.h>
-#include <X11/Xaw3d/MenuButton.h>
-#include <X11/Xaw3d/Text.h>
-#include <X11/Xaw3d/AsciiText.h>
-#include <X11/Xaw3d/Viewport.h>
-#else
-#include <X11/Xaw/Dialog.h>
-#include <X11/Xaw/Form.h>
-#include <X11/Xaw/List.h>
-#include <X11/Xaw/Label.h>
-#include <X11/Xaw/SimpleMenu.h>
-#include <X11/Xaw/SmeBSB.h>
-#include <X11/Xaw/SmeLine.h>
-#include <X11/Xaw/Box.h>
-#include <X11/Xaw/MenuButton.h>
-#include <X11/Xaw/Text.h>
-#include <X11/Xaw/AsciiText.h>
-#include <X11/Xaw/Viewport.h>
-#endif
-
-#include "common.h"
-#include "frontend.h"
-#include "backend.h"
-#include "xboard.h"
-#include "xedittags.h"
-#include "dialogs.h"
-#include "gettext.h"
-
-#ifdef ENABLE_NLS
-# define  _(s) gettext (s)
-# define N_(s) gettext_noop (s)
-#else
-# define  _(s) (s)
-# define N_(s)  s
-#endif
-
-Position tagsX = -1, tagsY = -1;
-
-void
-TagsPopUp (char *tags, char *msg)
-{
-    NewTagsPopup(tags, cmailMsgLoaded ? msg : NULL);
-}
-
-
-void
-EditTagsPopUp (char *tags, char **dest)
-{
-    NewTagsPopup(tags, NULL);
-}
-
-void
-TagsPopDown()
-{
-    PopDown(TagsDlg);
-    bookUp = False;
-}
-
-void
-EditTagsProc ()
-{
-  if (bookUp || !PopDown(TagsDlg)) EditTagsEvent();
-}
diff --git a/xaw/xedittags.h b/xaw/xedittags.h
deleted file mode 100644 (file)
index 6245bfd..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * xedittags.h
- *
- * Copyright 1995, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
- *
- * ------------------------------------------------------------------------
- *
- * GNU XBoard is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * GNU XBoard is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see http://www.gnu.org/licenses/.  *
- *
- *------------------------------------------------------------------------
- ** See the file ChangeLog for a revision history.  */
-
-#ifndef XB_XEDITTAGS
-#define XB_XEDITTAGS
-
-void EditTagsProc P((void));
-
-extern Widget editTagsShell, tagsShell;
-#endif
diff --git a/xedittags.c b/xedittags.c
deleted file mode 100644 (file)
index d27aca3..0000000
+++ /dev/null
@@ -1,121 +0,0 @@
-/*
- * xedittags.c -- Tags edit window, part of X front end for XBoard
- *
- * Copyright 1995, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
- *
- * ------------------------------------------------------------------------
- *
- * GNU XBoard is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * GNU XBoard is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see http://www.gnu.org/licenses/.  *
- *
- *------------------------------------------------------------------------
- ** See the file ChangeLog for a revision history.  */
-
-#include "config.h"
-
-#include <stdio.h>
-#include <ctype.h>
-#include <errno.h>
-#include <sys/types.h>
-
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <string.h>
-#else /* not STDC_HEADERS */
-extern char *getenv();
-# if HAVE_STRING_H
-#  include <string.h>
-# else /* not HAVE_STRING_H */
-#  include <strings.h>
-# endif /* not HAVE_STRING_H */
-#endif /* not STDC_HEADERS */
-
-#if HAVE_UNISTD_H
-# include <unistd.h>
-#endif
-
-#include <X11/Intrinsic.h>
-#include <X11/StringDefs.h>
-#include <X11/Shell.h>
-#include <X11/cursorfont.h>
-#if USE_XAW3D
-#include <X11/Xaw3d/Dialog.h>
-#include <X11/Xaw3d/Form.h>
-#include <X11/Xaw3d/List.h>
-#include <X11/Xaw3d/Label.h>
-#include <X11/Xaw3d/SimpleMenu.h>
-#include <X11/Xaw3d/SmeBSB.h>
-#include <X11/Xaw3d/SmeLine.h>
-#include <X11/Xaw3d/Box.h>
-#include <X11/Xaw3d/MenuButton.h>
-#include <X11/Xaw3d/Text.h>
-#include <X11/Xaw3d/AsciiText.h>
-#include <X11/Xaw3d/Viewport.h>
-#else
-#include <X11/Xaw/Dialog.h>
-#include <X11/Xaw/Form.h>
-#include <X11/Xaw/List.h>
-#include <X11/Xaw/Label.h>
-#include <X11/Xaw/SimpleMenu.h>
-#include <X11/Xaw/SmeBSB.h>
-#include <X11/Xaw/SmeLine.h>
-#include <X11/Xaw/Box.h>
-#include <X11/Xaw/MenuButton.h>
-#include <X11/Xaw/Text.h>
-#include <X11/Xaw/AsciiText.h>
-#include <X11/Xaw/Viewport.h>
-#endif
-
-#include "common.h"
-#include "frontend.h"
-#include "backend.h"
-#include "xboard.h"
-#include "xedittags.h"
-#include "dialogs.h"
-#include "gettext.h"
-
-#ifdef ENABLE_NLS
-# define  _(s) gettext (s)
-# define N_(s) gettext_noop (s)
-#else
-# define  _(s) (s)
-# define N_(s)  s
-#endif
-
-Position tagsX = -1, tagsY = -1;
-
-void
-TagsPopUp (char *tags, char *msg)
-{
-    NewTagsPopup(tags, cmailMsgLoaded ? msg : NULL);
-}
-
-
-void
-EditTagsPopUp (char *tags, char **dest)
-{
-    NewTagsPopup(tags, NULL);
-}
-
-void
-TagsPopDown()
-{
-    PopDown(TagsDlg);
-    bookUp = False;
-}
-
-void
-EditTagsProc ()
-{
-  if (bookUp || !PopDown(TagsDlg)) EditTagsEvent();
-}
diff --git a/xedittags.h b/xedittags.h
deleted file mode 100644 (file)
index 6245bfd..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * xedittags.h
- *
- * Copyright 1995, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
- *
- * ------------------------------------------------------------------------
- *
- * GNU XBoard is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * GNU XBoard is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see http://www.gnu.org/licenses/.  *
- *
- *------------------------------------------------------------------------
- ** See the file ChangeLog for a revision history.  */
-
-#ifndef XB_XEDITTAGS
-#define XB_XEDITTAGS
-
-void EditTagsProc P((void));
-
-extern Widget editTagsShell, tagsShell;
-#endif