]> git.lyx.org Git - lyx.git/commitdiff
sourcedoc-friendly files.
authorAngus Leeming <leeming@lyx.org>
Mon, 11 Mar 2002 17:00:41 +0000 (17:00 +0000)
committerAngus Leeming <leeming@lyx.org>
Mon, 11 Mar 2002 17:00:41 +0000 (17:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3713 a592a061-630c-0410-9148-cb99ea01b6c8

103 files changed:
src/frontends/xforms/Alert_pimpl.C
src/frontends/xforms/Color.C
src/frontends/xforms/Color.h
src/frontends/xforms/Dialogs.C
src/frontends/xforms/DropDown.C
src/frontends/xforms/DropDown.h
src/frontends/xforms/FeedbackController.C
src/frontends/xforms/FeedbackController.h
src/frontends/xforms/FileDialog.C
src/frontends/xforms/FormAboutlyx.C
src/frontends/xforms/FormAboutlyx.h
src/frontends/xforms/FormBase.C
src/frontends/xforms/FormBase.h
src/frontends/xforms/FormBaseDeprecated.C
src/frontends/xforms/FormBaseDeprecated.h
src/frontends/xforms/FormBibitem.h
src/frontends/xforms/FormBibtex.C
src/frontends/xforms/FormBibtex.h
src/frontends/xforms/FormBrowser.C
src/frontends/xforms/FormBrowser.h
src/frontends/xforms/FormCharacter.h
src/frontends/xforms/FormCitation.C
src/frontends/xforms/FormCitation.h
src/frontends/xforms/FormDocument.C
src/frontends/xforms/FormDocument.h
src/frontends/xforms/FormERT.C
src/frontends/xforms/FormERT.h
src/frontends/xforms/FormError.C
src/frontends/xforms/FormError.h
src/frontends/xforms/FormExternal.C
src/frontends/xforms/FormExternal.h
src/frontends/xforms/FormFiledialog.C
src/frontends/xforms/FormFiledialog.h
src/frontends/xforms/FormFloat.C
src/frontends/xforms/FormFloat.h
src/frontends/xforms/FormForks.C
src/frontends/xforms/FormForks.h
src/frontends/xforms/FormGraphics.C
src/frontends/xforms/FormGraphics.h
src/frontends/xforms/FormInclude.C
src/frontends/xforms/FormInclude.h
src/frontends/xforms/FormIndex.C
src/frontends/xforms/FormIndex.h
src/frontends/xforms/FormInset.C
src/frontends/xforms/FormInset.h
src/frontends/xforms/FormLog.C
src/frontends/xforms/FormLog.h
src/frontends/xforms/FormMinipage.C
src/frontends/xforms/FormMinipage.h
src/frontends/xforms/FormParagraph.C
src/frontends/xforms/FormParagraph.h
src/frontends/xforms/FormPreferences.C
src/frontends/xforms/FormPreferences.h
src/frontends/xforms/FormPrint.C
src/frontends/xforms/FormPrint.h
src/frontends/xforms/FormRef.C
src/frontends/xforms/FormRef.h
src/frontends/xforms/FormSearch.C
src/frontends/xforms/FormSearch.h
src/frontends/xforms/FormSendto.C
src/frontends/xforms/FormSendto.h
src/frontends/xforms/FormShowFile.C
src/frontends/xforms/FormShowFile.h
src/frontends/xforms/FormSpellchecker.C
src/frontends/xforms/FormSpellchecker.h
src/frontends/xforms/FormTabular.C
src/frontends/xforms/FormTabular.h
src/frontends/xforms/FormTabularCreate.C
src/frontends/xforms/FormTabularCreate.h
src/frontends/xforms/FormTexinfo.C
src/frontends/xforms/FormTexinfo.h
src/frontends/xforms/FormThesaurus.C
src/frontends/xforms/FormThesaurus.h
src/frontends/xforms/FormToc.C
src/frontends/xforms/FormToc.h
src/frontends/xforms/FormUrl.C
src/frontends/xforms/FormUrl.h
src/frontends/xforms/FormVCLog.C
src/frontends/xforms/FormVCLog.h
src/frontends/xforms/GUIRunTime.C
src/frontends/xforms/MathsSymbols.C
src/frontends/xforms/MathsSymbols.h
src/frontends/xforms/Menubar_pimpl.C
src/frontends/xforms/Menubar_pimpl.h
src/frontends/xforms/RadioButtonGroup.C
src/frontends/xforms/RadioButtonGroup.h
src/frontends/xforms/Timeout_pimpl.C
src/frontends/xforms/Timeout_pimpl.h
src/frontends/xforms/Toolbar_pimpl.C
src/frontends/xforms/Toolbar_pimpl.h
src/frontends/xforms/Tooltips.C
src/frontends/xforms/Tooltips.h
src/frontends/xforms/bmtable.h
src/frontends/xforms/combox.C
src/frontends/xforms/combox.h
src/frontends/xforms/input_validators.C
src/frontends/xforms/input_validators.h
src/frontends/xforms/xformsBC.C
src/frontends/xforms/xformsBC.h
src/frontends/xforms/xformsGImage.C
src/frontends/xforms/xformsGImage.h
src/frontends/xforms/xforms_helpers.C
src/frontends/xforms/xforms_helpers.h

index 33436e32334caa0d296845038ee752c5e01ee67f..033b1851243c28ac58b7d7fcdd386fd2582b0919 100644 (file)
@@ -3,20 +3,22 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
 
-#include FORMS_H_LOCATION
-#include <algorithm>
-#include <gettext.h>
-#include "xforms_helpers.h"
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "Alert.h"
 #include "Alert_pimpl.h" 
+#include "xforms_helpers.h"
+#include "gettext.h"
+
+#include <algorithm>
+#include FORMS_H_LOCATION
  
 using std::pair;
 using std::make_pair;
index 82706e055ea04c05a4eb0552ef3c2f6ca8a4877b..aa1795b45d93cd629d55228bc4e4342dd190e30a 100644 (file)
@@ -1,25 +1,21 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file Color.C
+ * Copyright 2002 the LyX Team
+ * Read the file COPYING
  *
- *======================================================*/
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
 
 #include <config.h>
 
-#include <algorithm> // max
-#include <cmath> // floor
-
-#include FORMS_H_LOCATION
-
 #ifdef __GNUG_
 #pragma implementation
 #endif
 
 #include "Color.h"
+#include <algorithm> // max
+#include <cmath> // floor
+#include FORMS_H_LOCATION
 
 using std::max;
 using std::min;
index a257867afd9a7209900a663e94713ef8da809a47..d90174a1eb6cd412f0dfeb27e5df8e486dcf4cda 100644 (file)
@@ -1,13 +1,16 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file Color.h
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2002 The LyX Team.
+ * Read the file COPYING
  *
- *======================================================*/
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/* structs RGBColor and HSVColor to enable simple conversion between
+ * color spaces.
+ */
 
 #ifndef COLOR_H
 #define COLOR_H
index de38fe37ccf536c4612bd8f20bdffbf6b6446b17..7d8e7bfd353ee05e90368003c302422571b67aab 100644 (file)
@@ -1,12 +1,10 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file Dialogs.C
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ======================================================
+ * \author Allan Rae, rae@lyx.org
  */
 
 #include <config.h>
index 17cce0981ff57ed9e2b145d861fd7da66465bf82..096e3436a9e7ec148c594e82bf4ec58f70d3c49f 100644 (file)
@@ -3,11 +3,15 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
 
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include "DropDown.h"
 #include "xforms_helpers.h"
 
index 8baccbe4798500aa2c6a46531658cd74f3d88469..1fb4ccd074534357765af7e846743755a2f20269 100644 (file)
@@ -1,14 +1,19 @@
+// -*- C++ -*-
 /**
  * \file DropDown.h
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef DROPDOWN_H
 #define DROPDOWN_H
  
+#ifdef __GNUG_
+#pragma interface
+#endif
+
 #include "LyXView.h"
 #include <sigc++/signal_system.h> 
 #include "LString.h"
index 2450ec2ef690cbb218aba8c67217a04af84aa84f..6d3e4e78d3b2db60d1d270f2d25b7acfbb3d3969 100644 (file)
@@ -1,11 +1,12 @@
-/*
+/**
  * \file FeedbackController.C
  * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
  * \author Angus Leeming, a.leeming@ic.ac.uk
- *
- * A common interface for posting feedback messages to a message widget in
+ */
+
+/* A common interface for posting feedback messages to a message widget in
  * xforms.
  * Derive FormBase and FormBaseDeprecated from it, so daughter classes of
  * either can interface tooltips in the same way.
index 69aa4a237c6f9bf3a19a14ee31f2057ec21e9b4a..93b94188b6b4e770a7e4357b8260841f8b967b88 100644 (file)
@@ -5,8 +5,9 @@
  * Read the file COPYING
  *
  * \author Angus Leeming, a.leeming@ic.ac.uk
- *
- * A common interface for posting feedback messages to a message widget in
+ **/
+
+/* A common interface for posting feedback messages to a message widget in
  * xforms.
  * Derive FormBase and FormBaseDeprecated from it, so daughter classes of
  * either can interface tooltips in the same way.
index c876ffc0a379773a767909bac41e2b173527a160..0e42bb4f31efccd2932079463b0f3fc12ec95229 100644 (file)
@@ -3,32 +3,28 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
-#include <gettext.h>
-#include <utility>
-
-#include "commandtags.h"
-
-#include "support/lstrings.h" 
-
+#include "FormFiledialog.h"
+#include "frontends/FileDialog.h"
 // temp. hack until Allow/prohibitInput is not
 // needed any more in src/ - for now it's simplest
 // to leave it there 
 #include "LyXView.h" 
 #include "bufferview_funcs.h"
-#include "frontends/FileDialog.h"
-
-#include "FormFiledialog.h"
-
+#include "gettext.h"
+#include "commandtags.h"
 #include "debug.h"
+#include "support/lstrings.h" 
+#include <utility>
+
 
 using std::make_pair;
 using std::pair;
index 306912f742806df1081250c10d8369f1387dae96..f6c1fbaba2e121c8666b6a02a9d301560ab8182c 100644 (file)
@@ -4,15 +4,15 @@
  * See the file COPYING.
  *
  * \author Edwin Leuven, leuven@fee.uva.nl
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
-
 #include "xformsBC.h"
 #include "ControlAboutlyx.h"
 #include "FormAboutlyx.h"
index 0a6de74eaf8052a7882c020f3265949a570ff0ef..0f27e7e84b81f3769c13959dc6fd9302bc05ff03 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven <leuven@fee.uva.nl>
- * \author Angus Leeming <a.leeming@.ac.uk>
+ * \author Edwin Leuven, leuven@fee.uva.nl
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMABOUTLYX_H
index f311472d431c6e96b95d32f38c45b0b9580ae512..420c85d4563791d8801bc2c649b03a7f2e3532a9 100644 (file)
@@ -1,13 +1,9 @@
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormBase.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index a11ff21b794cbe2daee8280cf037ac06093c37cc..29c27abd7376ed7e865bcfd51ae3e20119397da7 100644 (file)
@@ -1,14 +1,13 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormBase.h
+ * Copyright 2000-2002 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/* A base class for the MCV-ed xforms dialogs.
  */
 
 #ifndef FORMBASE_H
index 23b1f395ac6f16e62be211ba46477d422ad604ac..0ab52cee51c4edf2edabf675c2de32d14e0d86c3 100644 (file)
@@ -1,17 +1,13 @@
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormBaseDeprecated.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
 
-#include FORMS_H_LOCATION
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
index 67ca32fa3577e8ba0c98cbff850c8075139a678f..33958833dbbea824f196d15d5acd89e77d01ef93 100644 (file)
@@ -1,12 +1,16 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormBase.h
+ * Copyright 2000-2002 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/* A base class for those remaining xforms dialogs that haven't yet undergone
+ * the controller-view split.
+ * It is meant to be used solely as the parent class to FormBaseBI
+ * and FormBaseBD.
  */
 
 #ifndef FORMBASEDEPRECATED_H
@@ -29,14 +33,6 @@ class Dialogs;
 class LyXView;
 class Tooltips;
 
-/** This class is an XForms GUI base class.
-    It is meant to be used solely as the parent class to FormBaseBI
-    and FormBaseBD.
-    It has now been superceeded by the Controller/View split.
-    See FormBase.[Ch] for the way to go!
-    @author Angus Leeming
- */
-
 class FormBaseDeprecated : public DialogBase, public FeedbackController
 {
 public:
index 9599fbc85a6d454a820995a8fd3315f3ab9ce27a..7f8b1c700e61ef2225c3665b6cca65fe343de217 100644 (file)
@@ -5,7 +5,7 @@
  * Read the file COPYING
  *
  * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMBIBITEM_H
index 5b61ad4bd582c1b7212f226b16863fd64da62aca..02678dee4c351c00432f9f96fe95b09f178bcd98 100644 (file)
@@ -3,9 +3,9 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming
- * \author John Levon
- * \author Herbert Voss <voss@lyx.org>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author John Levon, moz@compsoc.man.ac.uk
+ * \author Herbert Voss, voss@lyx.org
  */
 
 #ifdef __GNUG__
index 66a3241e7799a40f8dca76434aadad740f4ed9b1..c92edfd275f547d1a38c388dc33546f940622ef6 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming
- * \author John Levon
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef FORMBIBTEX_H
index f75ff009a3032d59c8526dfec1fffe863aef5434..54e9c910e54476523a93f53b9a5ee5d55dfb2ade 100644 (file)
@@ -1,13 +1,17 @@
-/* FormBrowser.C
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+/**
+ * \file FormBrowser.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
 #include "FormBrowser.h"
 #include "form_browser.h"
 #include "xformsBC.h"
index 58be37f7ae04cb332e136c6b79678c38642d35c1..884b8ed1cbfe1c4aa1268731cafac9972987d3d4 100644 (file)
@@ -1,10 +1,11 @@
 // -*- C++ -*-
 /*
  * \file FormBrowser.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
  *
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author John Levon, moz@compsoc.man.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMBROWSER_H
index 8e6fd23233e7812d37b40fc88d4692edc07c4a1b..86018efbd10427ddb71a47e31422f0a164c360fa 100644 (file)
@@ -5,7 +5,7 @@
  * See the file COPYING.
  * 
  * \author Edwin Leuven, leuven@fee.uva.nl
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORM_CHARACTER_H
index 449d934f221ce664b7aff291dd4db0e453a0158e..39844f9ca3f9b08272ed773c1f4f20132f65ca17 100644 (file)
@@ -1,14 +1,8 @@
-// -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormCitation.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
index cef3dc4edb3642dd05b5ea7b8bca26e7569d4305..2d40374d2fa1f4f94aa7f3a411a325f2c611b049 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormCitation.h
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Copyright 2000-2002 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMCITATION_H
index 41226d860256f510505891728d83d4bf7030d647..90393b569b4ae70924673cf9c1e1f7b56a3ecdc4 100644 (file)
@@ -1,13 +1,10 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file FormDocument.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           @author Jürgen Vigna
- *
- *======================================================*/
+ * \author Jürgen Vigna, jug@sad.it
+ */
 
 #include <config.h>
 
index f87f169c3cb3753a42bd4a4cf2dd13879b201c8b..6bc93cba56e290db23b5783544036a14f9da3bba 100644 (file)
@@ -1,14 +1,11 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file FormDocument.h
+ * Copyright 2000-2002 the LyX Team
+ * Read the file COPYING
  *
- *           @author Jürgen Vigna
- *
- *======================================================*/
+ * \author Jürgen Vigna, jug@sad.it
+ */
 
 #ifndef FORM_DOCUMENT_H
 #define FORM_DOCUMENT_H
@@ -34,7 +31,6 @@ struct FD_form_doc_bullet;
 
 /** This class provides an XForms implementation of the FormDocument dialog.
     The table-layout-form here changes values for latex-tabulars
-    @author Jürgen Vigna
  */
 class FormDocument : public FormBaseBD {
 public:
index e81bd150c7c80821cef425d31175e4fac8d3c297..73e46a214a8504ba0f834968cca6401f280dcba1 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormERT.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Jürgen Vigna, jug@sad.it
  */
 
index 130e88c903d2f4947d82d9914bf52984e15123ee..9d943da098f2e34df540f46fbf97104a4369cbdd 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 2001 The LyX Team.
- *
- *======================================================
- *
+/**
  * \file FormERT.h
- * \author Juergen Vigna, jug@sad.it
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Jürgen Vigna, jug@sad.it
  */
 
 #ifndef FORMERT_H
index 9c6cedd1895dd302d17cc4e62991f97c1aeabfc5..d8bf9b49cb0913676d2f4d283712db1568563a5e 100644 (file)
@@ -1,15 +1,9 @@
 /*
  * \file FormError.C
- * This file is part of
- * ====================================================== 
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifdef __GNUG__
index d927e02d4558204118bdb94a1aaae333e1dcc8da..cedc1f917cbdcf7fbd0ce767e8b75375530d3167 100644 (file)
@@ -1,16 +1,10 @@
 // -*- C++ -*-
-/*
+/**
  * \file FormError.h
- * This file is part of
- * ====================================================== 
+ * Copyright 2000-2002 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMERROR_H
index 5324c1cebd70f30fdf2d17f2441847232b729c58..d4f45513e21b10480f3d0f77330e4dda9f12f067 100644 (file)
@@ -1,15 +1,10 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormExternal.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Asger Alstrup
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
index 35c39958960f655cb5a1a02d62480b589b38c16e..a6c4b91202a1213d05671306984e1392c9172cfc 100644 (file)
@@ -1,16 +1,11 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormExternal.h
- * \author Asger Alstrup
- * \author John Levon
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Asger Alstrup Nielsen
+ * \author John Levon, moz@compsoc.man.ac.uk
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
index e5ed32b8e446e647f491397c9102c65640e0b5df..e4c713c99a9a2710a74c1af73464e127af87583b 100644 (file)
@@ -4,7 +4,7 @@
  * Read the file COPYING
  *
  * \author unknown
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
index 6b2c4aec32157087cb632f354c09be9f633d3219..2bf14020c8d26f266397bb1b2a9138709b0a9c14 100644 (file)
@@ -5,7 +5,7 @@
  * Read the file COPYING
  *
  * \author unknown
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef FORMFILEDIALOG_H
index 154559f4a7a2b793702fcc999806e6242f0fb2cf..6fbf37a7b0f06fd3dcface8212049dd272e4132e 100644 (file)
@@ -1,13 +1,9 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormFloat.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
  */
 
 #include <config.h>
index e07b4e2eaea8fa7004535d697fae9ddea558536f..416400edbbca59097fb9380feb1aa9743e83e651 100644 (file)
@@ -1,14 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 2001 The LyX Team.
- *
- *======================================================
- *
+/**
  * \file FormFloat.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
  */
 
 #ifndef FORMFLOAT_H
index 9ee34540ea92d01a37a722510c26b49879e66097..a4fcb7708330326005cf0f6d7c052daa69fdd8b4 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  * \date 2001-10-22
  */
 
index 74f5b71423997276bc14427fce26398e88bf0535..a167fcd31211126e03f38f549a7710baa8cc113e 100644 (file)
@@ -1,10 +1,10 @@
 // -*- C++ -*-
 /**
  * \file FormForks.h
- * Copyright 2001 the LyX Team
+ * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMFORKS_H
index b5ce351bcc589943ad7d84cf79efb0269e5032f2..795e229731c121b3494e49e8a42c8ca763d00198 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormGraphics.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Baruch Even, baruch.even@writeme.com
  * \author Herbert Voss, voss@perce.de
  */
index 588c6036641665c49776a6c0c5ca365e9d3ec57f..f486f68117dd84ddf3032fc1f031137625de39a4 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormGraphics.h
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
  * \author Baruch Even, baruch.even@writeme.com
  * \author Herbert Voss, voss@lyx.org
  */
index 636574b121c51444b9c75c75c1a59a348c1d4714..dbf38964d4bfc3def15cd8f2ef42afb92e6cd798 100644 (file)
@@ -5,7 +5,7 @@
  *
  * \author Alejandro Aguilar Sierra
  * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index 65e4077a1fbbca1dfdd9e31341d8193414d0f60b..6b9ecde561740fa8828a54b6e86e59f2e1bb1382 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Alejandro Aguilar Sierra
  * \author John Levon, moz@compsoc.man.ac.uk
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 #ifndef FORMINCLUDE_H
 #define FORMINCLUDE_H
index c2057a5a990c4937471c61071fb8d1d7c4716997..045d36d3f0ebe592579a5abaebad4861ad16e8da 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormIndex.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
index 1a3fc3f53495f22a5ceacb9854c26f806c6f922f..5901908284614aaa06d9e98c7ff3578b0da6c642 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormIndex.h
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
index 5597c7f81ac70b82d7e05a4e99a461d409f58a0e..917f163631b1a31cb646472e89e8520a68012a90 100644 (file)
@@ -1,11 +1,9 @@
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormInset.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index cd429b3da192f1bcb00511a7387450ff98ab277f..fabff8ff9ab8dc4dc17fbf900767cc3f2e113e3e 100644 (file)
@@ -1,12 +1,14 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormInset.h
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/* A base class for dialogs connected to insets. This class is temporary in that
+ * it has been superceeded by the controller-view split.
  */
 
 #ifndef FORMCOMMAND_H
index 194fc2a96edefe2416603febf5dd79329e13bd55..7c174c5ab555dfd0dcbd086f552319e23a56313f 100644 (file)
@@ -1,13 +1,17 @@
-/* FormLog.C
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+/**
+ * \file FormLog.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-#include <config.h>
 #include "xformsBC.h"
 #include "ControlLog.h"
 #include "FormLog.h"
index 220dd3d03ac9a1015cf6934e7d20ce350fdab660..c8f40d7df549d4925399477ca2aa3fb10cbcbee9 100644 (file)
@@ -1,9 +1,10 @@
 // -*- C++ -*-
 /*
  * FormLog.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
  *
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef FORMLOG_H
index 6725bdd3223588e9ec5dd810bc5134f796778db7..bb007c099922a16446c0e8de87247b4c6c165b91 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormMinipage.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Jürgen Vigna, jug@sad.it
  */
 
index deaaa0eb2ccc5b6aaef0e555d22ccbc059f64f4d..f905c1a2c9e33ef05a9588e8a4692a9a47637154 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *          Copyright 2001 The LyX Team.
- *
- *======================================================
- *
+/**
  * \file FormMinipage.h
- * \author Juergen Vigna, jug@sad.it
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Jürgen Vigna, jug@sad.it
  */
 
 #ifndef FORMMINIPAGE_H
index 648114776a5788625e64ba97ba4bc2b4cdc74d5a..6b35359289d9af8c19fc118025534e20ac50f8c1 100644 (file)
@@ -1,13 +1,10 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file FormParagraph.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           @author Jürgen Vigna
- *
- *======================================================*/
+ * \author Jürgen Vigna, jug@sad.it
+ */
 
 #include <config.h>
 
index 224b4b4a9ea871f94e5de561e998b0d307152e64..9078dabb54ef98e965f5e89f81a57f94b365b62b 100644 (file)
@@ -1,14 +1,11 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file Tooltips.h
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
  *
- *           @author Jürgen Vigna
- *
- *======================================================*/
+ * \author Jürgen Vigna, jug@sad.it
+ */
 
 #ifndef FORM_PARAGRAPH_H
 #define FORM_PARAGRAPH_H
@@ -25,7 +22,6 @@ class Paragraph;
 struct FD_form_paragraph;
 
 /** This class provides an XForms implementation of the FormParagraph dialog.
- *           @author Jürgen Vigna
  */
 class FormParagraph : public FormBaseBD {
 public:
index df44136a86ec1a1f0ebc759ae90d6b95c3d407c4..156a69b11c48739ff80f2f77fb7f8c3c8c8a18cb 100644 (file)
@@ -1,14 +1,9 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file FormPreferences.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *======================================================*/
-/* FormPreferences.C
- * FormPreferences Interface Class Implementation
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index a26c1e896a414ac25506b60a361b928d21f60936..e7f03bfcc7b05fde05904dc7e6d61d067658a2d0 100644 (file)
@@ -1,17 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file FormPreferences.h
+ * Copyright 1995-2002 the LyX Team
+ * Copyright 1999-2001 Allan Rae
+ * Read the file COPYING
  *
- *         This file copyright 1999-2001
- *         Allan Rae
- *======================================================*/
-/* FormPreferences.h
- * FormPreferences Interface Class
+ * \author Allan Rae, rae@lyx.org
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMPREFERENCES_H
index 9f33f36219be6d96a9b8d8a8687ee4090fda0507..08d7a27bd690181477091d9fab34313d5122bb91 100644 (file)
@@ -4,7 +4,7 @@
  * See the file COPYING.
  *
  * \author Allan Rae, rae@lyx.org
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index 8f68ba2727fb113392178314bb9a1af516076191..c250772e95b0d1a4bf9aa710ef216a20b1107b24 100644 (file)
@@ -1,19 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
- *
- *         This file copyright 1999-2001
- *         Allan Rae
- *======================================================
- *
+/**
  * \file FormPrint.h
+ * Copyright 2002 the LyX Team
+ * Copyright 1999-2001 Allan Rae
+ * Read the file COPYING
+ *
  * \author Allan Rae, rae@lyx.org
- * \author Angus Leeming, a.leeming@.ac.uk
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMPRINT_H
index 388db8cd984b64b4f3b21f7e0c6756febc688280..0e3617db9d443cc6bfc4e426677b7ad2b170320d 100644 (file)
@@ -1,14 +1,9 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- * 
+/**
  * \file FormRef.C
- * \author Angus Leeming, a.leeming@ic.ac.uk 
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index 9a6901324d41f5829f4a6b9e89ede6bfac7f15ca..0170f6fd24e367d70c76aaaa65a6ec471bff5e4e 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormRef.h
- * \author Angus Leeming, a.leeming@.ac.uk
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMREF_H
index 34077d94f4e939c2bc8a3268a2ee2841f537d6fc..f01efb6686690def87449cedea6e1198ea4aaa6a 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven
+ * \author Edwin Leuven, leuven@fee.uva.nl
  */
 
 #include <config.h>
index 24a473ad8cc3fdd004b3a2399876c233fff5ad40..93b0d922e7ef017ab18e625f6c461075f4c5ce68 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven
+ * \author Edwin Leuven, leuven@fee.uva.nl
  */
 
 #ifndef FORMSEARCH_H
index 7d305d2c8e1a4a81d9ca0f7a91ce3664c8ffbd4c..9c6e7aaf790b3346487b9e1516371010ee4fd0ef 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index a4f59bbd7d6eb5fa5b6ee8901ab32831526b70c9..7d3aff18fcc5a396703a92c0fb2ec45792aa729a 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMSENDTO_H
index 5e2d1b5a5761868fc83cc9a495df25c65c0a9e2a..9e1f22f196745b72fe80c7418cfb6bf243eb8e36 100644 (file)
@@ -1,6 +1,9 @@
-/* FormHelp.C
- * (C) 2001 LyX Team
- * \author Herbert Voss <voss@perce.de>
+/**
+ * \file FormShowFile.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author Herbert Voss, voss@perce.de
  */
 
 #include <config.h>
index 58ce7950eaa5b0ac4c69c797b4b4ac1b594987ee..fd71682b26a1023c690139f26e3e5e902ac2dfb1 100644 (file)
@@ -1,10 +1,10 @@
 // -*- C++ -*-
-
-/*
- * FormShowFile.h
+/**
+ * \file FormShowFile.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
  *
- * (C) 2001 LyX Team
- * \author Herbert Voss <voss@perce.de>
+ * \author Herbert Voss, voss@perce.de
  */
 
 #ifndef FORMSHOWFILE_H
index 97790852676ce535d728a5c91660e0500a15557f..4bc83db3a654f934a904f9ca300f594faed149a7 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven
+ * \author Edwin Leuven, leuven@fee.uva.nl
  */
 
 #include <config.h>
index e387356cde96001974ad6de9bffdeb36c98e5ef0..1bb7deb6ad3307d02a46a1ce6474cb4918c1c637 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven
+ * \author Edwin Leuven, leuven@fee.uva.nl
  */
 
 #ifndef FORMSPELLCHECKER_H
index 8d95f31c51c43c4eb428f18d22781f896cc13ffb..a6eb29fbf0e015801fdc2c7c8a51a59702c9fba3 100644 (file)
@@ -1,14 +1,9 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file FormTabular.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *======================================================*/
-/* FormTabular.C
- * FormTabular Interface Class Implementation
+ * \author Jürgen Vigna, jug@sad.it
  */
 
 #include <config.h>
index 08002a16b1df8b86460f3a981471f8ff4af7bdc0..c6c49efae030da6b01e0029049bfc7b550fc4df9 100644 (file)
@@ -1,15 +1,11 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file FormTabular.h
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2001 the LyX Team
+ * Read the file COPYING
  *
- *======================================================*/
-/* FormTabular.h
- * FormTabular Interface Class
+ * \author Jürgen Vigna, jug@sad.it
  */
 
 #ifndef FORMTABULAR_H
index e7a297e7cdb005ece8cd73c67396bc685173756d..738e8aaebfb93d627adebc9bd1308dd6e1f2ba29 100644 (file)
@@ -1,13 +1,9 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormTabularCreate.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author \author Jürgen Vigna, jug@sad.it
  */
 
 #include <config.h>
index ab2811709f2fc15ee3f08cfd2c77495d156b4038..9e339147e33eff1bb66674b38687790a8b42e29b 100644 (file)
@@ -1,15 +1,11 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
- *
- *======================================================
- *
+/**
  * \file FormTabularCreate.h
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author unknown.
  */
 
 #ifndef FORMTABULARCREATE_H
index fc067138133282e5633b53b7e6ec5e86c64d40c6..0e6b9757dfab54c10fddd36045d64a4dac25bf57 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author Herbert Voss <voss@lyx.org>
+ * \author Herbert Voss, voss@lyx.org
  * \date 2001-10-01
  */
 
index 012da2b0a0212ec4b7778ac90a937cbfed8713ec..a42fe75c527558d0ba7d83d6d3815116d6c4d8a4 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author Herbert Voss <voss@perce.de>
+ * \author Herbert Voss, voss@perce.de
  */
 
 #ifndef FORMTEXINFO_H
index 734a14ece9fcfe53ded6bad7a5c6eba89eb70c88..a0bde91faceb38bd0e2c3bb8a145f47cade03b0b 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2001 The LyX Team.
  * See the file COPYING.
  *
- * \author Edwin Leuven
+ * \author Edwin Leuven, leuven@fee.uva.nl
  */
 
 #include <config.h>
index 99923dcad5afdcc2c666f4a309c0887dde1dfbdb..cba55d52e05336b1b6812bc0330da6b56800ffe8 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright 2001 the LyX Team
  * Read the file COPYING
  *
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef FORMTHESAURUS_H
index 9a6f50797b3901b635ded5da0bb45837b00b56ca..a0ad95bf15c873065dd946b722fafa917f992dca 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormToc.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
@@ -84,7 +79,6 @@ void FormToc::updateType()
        // Update the choice list from scratch
        fl_clear_choice(dialog_->choice_toc_type);
        string const choice = getStringFromVector(controller().getTypes(), "|");
-       lyxerr << "choice " << choice << endl; 
        fl_addto_choice(dialog_->choice_toc_type, choice.c_str());
 
        // And select the correct one
index 1e5bfeb1fc292de370dda6d6f6dca11ac4cdf67e..f44b039455157926f9a27479b02968c14eb6f1d4 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormToc.h
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMTOC_H
index f8a1f885536d52a3db5d13d6c147623c2c71e587..eb41c7dc85f617b733fc1bee05a70cb4a629a97d 100644 (file)
@@ -1,16 +1,12 @@
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- * 
+/**
  * \file FormUrl.C
- * \author Angus Leeming, a.leeming@ic.ac.uk 
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
+
 #include <config.h>
 
 #ifdef __GNUG__
index 5ad62ce30f2a89f8f749281061cac2946350bf53..37319eede779c0837e2467bf46f3a18cff6dc290 100644 (file)
@@ -1,15 +1,10 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file FormUrl.h
- * \author Angus Leeming, a.leeming@.ac.uk
+ * Copyright 2000-2001 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #ifndef FORMURL_H
index b9ccbe3d1ca93d1f488fa979f0e1c7aacca281c7..4b694706354abf98dc6058b47ff31e239bbac99e 100644 (file)
@@ -1,6 +1,9 @@
-/* FormVCLog.C
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+/**
+ * \file FormVCLog.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
index cca629d009f60fad0376e68a6971f6b4dd14b6ae..c1b6d67b4c7b1ad51dbf315ccf39a616dcfd236c 100644 (file)
@@ -1,9 +1,10 @@
 // -*- C++ -*-
-/*
- * FormVCLog.h
+/**
+ * \file FormVCLog.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
  *
- * (C) 2001 LyX Team
- * John Levon, moz@compsoc.man.ac.uk
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef FORMVCLOG_H
index a2d0ced6a986fb139d704dc68063a1de9aa809bf..c047bac63a0ec3cc2f240b77dd6bc75d858b301d 100644 (file)
@@ -1,11 +1,10 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
+/**
+ * \file GUIRunTime.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *======================================================*/
+ * \author unknown
+ */
 
 #include <config.h>
 
index 9a212bf4511489e809c4bf7f16d1f05e48fe82ba..623d1c3cfca00965b5b3a5f48267349cf015c5ce 100644 (file)
@@ -4,7 +4,7 @@
  * Read the file COPYING
  *
  * \author Alejandro Aguilar Sierra
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
index 09fe6b3fcfb5831222a81afc3e842c87a96b3922..eeb1c2212f47da489bde8cc38bffa4ac0ae4ab0a 100644 (file)
@@ -5,7 +5,7 @@
  * Read the file COPYING
  *
  * \author Alejandro Aguilar Sierra
- * \author John Levon
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #ifndef MATHS_SYMBOLS_H
index 06ada66362fb2c07ac0054db7224f7bdc0ccb05d..ca4d75ab94018bd90f9cd2f42833f5dd97740d77 100644 (file)
@@ -1,11 +1,10 @@
-/* This file is part of
-* ======================================================
-* 
-*           LyX, The Document Processor
-*       
-*           Copyright 1999-2001 The LyX Team.
-*
-* ======================================================*/
+/**
+ * \file Menubar_pimpl.C
+ * Copyright 1999-2001 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author  Lars Gullik Bjønnes, larsbj@lyx.org
+ */
 
 #include <config.h>
 
index 97a6720a831b470af129e414651337969184a716..cac54fda2378385f0f3a35d19202477034ee35b4 100644 (file)
@@ -1,15 +1,13 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+/**
+ * \file Menubar_pimpl.h
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2002 the LyX Team
+ * Copyright 1996-2001 Lars Gullik Bjønnes
+ * Read the file COPYING
  *
- *           This file is Copyright 1996-2001
- *           Lars Gullik Bjønnes
- *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
+ */
 
 #ifndef MENUBAR_PIMPL_H
 #define MENUBAR_PIMPL_H
index 007e77257059c448edfbc884ed3b4111cae242c5..e2a0df2cff90a54d25337682db63e90b3875fd8c 100644 (file)
@@ -1,12 +1,12 @@
-/* This file is part of
- * =================================================
- * 
- *          LyX, The Document Processor
- *          Copyright 1995 Matthias Ettrich.
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file RadioButtonGroup.C
+ * Copyright 1995 Matthias Ettrich.
+ * Copyright 1995-2001 The LyX Team.
+ * Copyright 2000 Baruch Even
+ * See the file COPYING.
  *
- *          This file Copyright 2000 Baruch Even
- * ================================================= */
+ * \author Baruch Even, baruch.even@writeme.com
+ */
 
 #include <config.h> 
 
index 2b5623deb6a19e58200125eb7c1ad38c1fa51c7a..a24f008ea51e2eb15d49bec5e434955ea07c9391 100644 (file)
@@ -1,13 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * =================================================
- * 
- *          LyX, The Document Processor
- *          Copyright 1995 Matthias Ettrich.
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file RadioButtonGroup.h
+ * Copyright 2002 the LyX Team
+ * Copyright 2000 Baruch Even
+ * Read the file COPYING
  *
- *          This file Copyright 2000 Baruch Even
- * ================================================= */
+ * \author Baruch Even, baruch.even@writeme.com
+ */
 
 
 #ifndef RADIOBUTTONGROUP_H
@@ -27,7 +26,6 @@
  * the idea is that you register a bunch of radio buttons with the accompanying
  * value for each radio button and then you get to query or set the active
  * button in a single function call.
- * @author Baruch Even
  */
 class RadioButtonGroup {
 public:
index 9a7f26a6340d2142b2cbe4768be4f37a8d15e2ea..1cd764b2416b9ee60cfcd3c3bab1948d99e85b64 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright 2001 LyX Team
  * Read COPYING
  *
- * \author Lars Gullik Bjønnes
- * \author John Levon
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 
 #include <config.h>
index 83156e2616d986df92e5bbce3da812512345a5dd..cf4306a46cf3cab4e5f3c115a577b6fc4dc9ee29 100644 (file)
@@ -4,8 +4,8 @@
  * Copyright 2001 LyX Team
  * Read COPYING
  *
- * \author Lars Gullik Bjønnes
- * \author John Levon
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
+ * \author John Levon, moz@compsoc.man.ac.uk
  */
 #ifndef TIMEOUTPIMPL_H
 #define TIMEOUTPIMPL_H
index 0337e93e6de42a5d12731a88c30ea14a235d0df3..cae74b7fef7e6db52b283f165adc6868e4d026c2 100644 (file)
@@ -1,15 +1,12 @@
-/* This file is part of
- * ====================================================== 
- * 
- *           LyX, The Document Processor
+/**
+ * \file FormBase.C
+ * Copyright 1995 Matthias Ettrich
+ * Copyright 1995-2001 The LyX Team.
+ * Copyright 1996-1998 Lars Gullik Bjønnes
+ * See the file COPYING.
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- *           This file is Copyright 1996-1998
- *           Lars Gullik Bjønnes
- *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
+ */
 
 //  Added pseudo-action handling, asierra 180296
 
index 4ec1e070ef4e3ba34994204d69f90049e5a2cc7b..b579723feecff7e36c6eb1f7d2dda827deb9e629 100644 (file)
@@ -1,15 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
+/**
+ * \file Toolbar_pimpl.h
+ * Copyright 2002 the LyX Team
+ * Copyright 1996-2001 Lars Gullik Bjønnes
+ * Read the file COPYING
  *
- *           This file is Copyright 1996-2001
- *           Lars Gullik Bjønnes
- *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes, larsbj@lyx.org
+ */
 
 #ifndef TOOLBAR_PIMPL_H
 #define TOOLBAR_PIMPL_H
index ee80e055868f6467b4d199f5b1922417df0dfb9e..4328bab6eeee1d6f9956b2c37493b6020be1d0b6 100644 (file)
@@ -4,6 +4,9 @@
  * Read the file COPYING
  *
  * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/*
  *
  * Tooltips for xforms. xforms 0.89 supports them directly, but 0.88 needs
  * a bit of jiggery pokery. This class wraps it all up in a neat interface.
@@ -210,7 +213,7 @@ void TooltipTimerCB(FL_OBJECT * timer, long data)
        lyx::Assert(ob && ob->form && timer && timer->u_vdata);
        FL_FORM * form = ob->form;
        Tooltips * tooltip = static_cast<Tooltips *>(timer->u_vdata);
-       
+
        string const help = tooltip->getTooltip(ob);
        if (help.empty())
                return;
index 6e461db57099fbe6d7dd8a9e89b058751ba6ea79..bd4342cc0aeb1eed15b8f8a558d60a7410d63a8c 100644 (file)
@@ -1,12 +1,13 @@
 // -*- C++ -*-
-/*
+/**
  * \file Tooltips.h
  * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
  * \author Angus Leeming, a.leeming@ic.ac.uk
- *
- * Tooltips for xforms. xforms 0.89 supports them directly, but 0.88 needs
+ */
+
+/* Tooltips for xforms. xforms 0.89 supports them directly, but 0.88 needs
  * a bit of jiggery pokery. This class wraps it all up in a neat interface.
  * Based on code originally in Toolbar_pimpl.C that appears to have been
  * written by Matthias Ettrich and Jean-Marc Lasgouttes.
@@ -18,8 +19,8 @@
 #include "LString.h"
 #include <boost/utility.hpp>
 #include <sigc++/signal_system.h>
-#include FORMS_H_LOCATION // Can't forward-declare FL_OBJECT
 #include <map>
+#include FORMS_H_LOCATION // Can't forward-declare FL_OBJECT
 
 #ifdef __GNUG__
 #pragma interface
@@ -29,7 +30,7 @@ class Tooltips : boost::noncopyable, public SigC::Object {
 public:
        Tooltips();
 
-       /// Initialise a tooltip for this ob
+       /// Initialise a tooltip for this ob.
        void initTooltip(FL_OBJECT * ob, string const & tip);
 
        /// Are the tooltips on or off?
@@ -37,7 +38,9 @@ public:
 
 #if FL_REVISION < 89
 
-       /// Return the tooltip associated with this object
+       /** Return the tooltip associated with this object.
+        *  Required by an xforms callback routine.
+        */
        string const getTooltip(FL_OBJECT *) const;
 
 #endif
@@ -48,7 +51,7 @@ private:
        static bool enabled_;
 
        /** This method is connected to Dialogs::toggleTooltips and toggles
-        *  the state of enabled_
+        *  the state of enabled_.
         */
        static void toggleEnabled();
 
@@ -60,16 +63,19 @@ private:
        /// This method is connected to the tooltipsToggled signal.
        void toggleTooltips();
 
-       /// The tooltips are stored so that they can be turned on and off
+       /// The tooltips are stored so that they can be turned on and off.
        typedef std::map<FL_OBJECT *, string> TooltipsMap;
 
        TooltipsMap tooltipsMap;
 
 #if FL_REVISION < 89
 
+       /** A timer is started once the mouse enters an object, so that the
+        *  tip appears a short delay afterwards.
+        */
        FL_OBJECT * tooltip_timer_;
 
-#endif // FL_REVISION >= 89
+#endif
 };
 
 #endif // TOOLTIPS_H
index a55c423f0926d59c3e4e34bea6d9c7046485052a..5efd29bc24435233268cfe2d8b61106d35de5662 100644 (file)
@@ -1,17 +1,15 @@
-/*
- *  File:        bmtable.h
- *  Purpose:     Declaration of the XForms object bmtable. 
- *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx> 
- *  Created:     November 1995
- *  Description: A bitmap table uses a single bitmap to simulate a 2d array 
- *               of bitmap buttons. It can be used to build bitmap menus.
- *               
- *  Copyright 1995, 1996 Alejandro Aguilar Sierra 
+/**
+ * \file bmtable.h
+ * Copyright 2002 the LyX Team
+ * Copyright 1995-1996 Alejandro Aguilar Sierra
+ * Read the file COPYING
  *
- *  You are free to use and modify this code under the terms of
- *  the GNU General Public Licence version 2 or later. 
- * 
- */ 
+ * \author Alejandro Aguilar Sierra
+ */
+
+/* A bitmap table uses a single bitmap to simulate a 2d array 
+ * of bitmap buttons. It can be used to build bitmap menus.
+ */
 
 #ifndef BMTABLE_H
 #define BMTABLE_H 
index c4b30bbcfea36a0dc8421afa91bc1b659cb6c1fd..2fa57fd7ac4642f5fcfddd89568c50b4ed5fcefe 100644 (file)
@@ -1,12 +1,14 @@
-/*
- *  Combox: A combination of two objects (a button and a browser) is
- *          encapsulated to get a combobox-like object. All XForms 
- *          functions are hidden.         
- * 
- *  GNU Copyleft 1996 Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
- *                        and the LyX Team.
- * 
- *  Dependencies:  Only XForms, but created to be used with LyX.
+/**
+ * \file combox.C
+ * Copyright 1996-2002 The LyX Team.
+ * Copyright 1996Alejandro Aguilar Sierra
+ * See the file COPYING.
+ *
+ * \author Alejandro Aguilar Sierra
+ */
+
+/* A combination of two objects (a button and a browser) is encapsulated to
+ * get a combobox-like object. All XForms functions are hidden.         
  * 
  */ 
 
index a98592530ac4ba3f89506ddc7aa9fa547c35de2b..8e322cda50e3074865ca72b600788e78bfccb49a 100644 (file)
@@ -1,17 +1,17 @@
 // -*- C++ -*-
-/*
- *  Combox: A combination of two objects (a button and a browser) is
- *          encapsulated to get a combobox-like object. All XForms 
- *          functions are hidden.         
- * 
- *  GNU Copyleft 1996 Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
- *                        and the LyX Team.
- * 
- *  Dependencies:  Only XForms, but created to be used with LyX.
- * 
- *
-
-/* Change log:
+/**
+ * \file combox.h
+ * Copyright 2002 the LyX Team
+ * Copyright 1996 Alejandro Aguilar Sierra
+ * Read the file COPYING
+ *
+ * \author Alejandro Aguilar Sierra, asierra@servidor.unam.mx
+ */
+
+/* A combination of two objects (a button and a browser) is encapsulated to
+ * get a combobox-like object. All XForms functions are hidden.
+ *
+ * Change log:
  *  
  *  2/06/1996,   Alejandro Aguilar Sierra 
  *    Created and tested.
index cc237bf3de7e312d5ae97f86a7538f3cb579f439..9a56b6f627464f6c6152a9598167ee24256c58d9 100644 (file)
@@ -5,6 +5,11 @@
  */
 
 #include <config.h>
+
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #include FORMS_H_LOCATION
 #include "support/lstrings.h"
 #include "input_validators.h"
index 26cb7571b9a5387c9bac38eee82e5d711143dd2a..f15eaea7348564498cba4e17a12eba68c5b2f49c 100644 (file)
@@ -1,17 +1,14 @@
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file input_validators.h
+ * Copyright 2002 the LyX Team
+ * Copyright 1999-2001 Allan Rae
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- *           This file Copyright 1999-2001
- *           Allan Rae
- * ====================================================== */
+ * \author Allan Rae, rae@lyx.org
+ */
 
-/** Input validators and filters for xforms.
+/* Input validators and filters for xforms.
  * A collection of input filtering and validating functions for use in
  * XForms dialogs.  Mainly meant for filtering input boxes although may
  * be extended to include other generally useful xforms-specific tools.
 #ifndef INPUT_VALIDATORS_H
 #define INPUT_VALIDATORS_H
 
+#ifdef __GNUG_
+#pragma interface
+#endif
+
 #if defined(__cplusplus)
 extern "C"
 {
index b10badc9e98ec3db2d5b822184966c962cf0daa9..6bd90c56c4df09362eba332c738db7af94c656b8 100644 (file)
@@ -1,13 +1,8 @@
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file xformsBC.C
+ * Copyright 2001 The LyX Team.
+ * See the file COPYING.
+ *
  * \author Allan Rae, rae@lyx.org
  * \author Angus Leeming, a.leeming@ic.ac.uk
  * \author Baruch Even, baruch.even@writeme.com
index d435b23552471e0ebc820dbf49f93e3784421de3..c8ec742a478ade0416406fe9bb1badb30560edbf 100644 (file)
@@ -1,14 +1,9 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
- *
- * ======================================================
- *
+/**
  * \file xformsBC.h
+ * Copyright 2002 the LyX Team
+ * Read the file COPYING
+ *
  * \author Allan Rae, rae@lyx.org
  * \author Angus Leeming, a.leeming@ic.ac.uk
  * \author Baruch Even, baruch.even@writeme.com
index bcaa69f48852df2092a0990069e7ce5296ac6ac3..257c1fd61d04c94791c3d3e369a9be15d138e484 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright 2002 the LyX Team
  * Read the file COPYING
  *
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index c393db1d5fe532729e406302801aba8a78d8b128..d1f67faf40900f69f9f75b422b33bf4794ae0d95 100644 (file)
@@ -4,10 +4,11 @@
  *  Copyright 2002 the LyX Team
  *  Read the file COPYING
  *
- *  \author Angus Leeming <a.leeming@ic.ac.uk>
- *
- *  An instantiation of GImage that makes use of the xforms lirary routines
- *  to load and store the image in memory.
+ *  \author Angus Leeming, a.leeming@ic.ac.uk
+ */
+
+/* An instantiation of GImage that makes use of the xforms lirary routines
+ * to load and store the image in memory.
  */
 
 #ifndef XFORMS_GRAPHICSIMAGE_H
index 422440ed3ab6eb4c843527e113362f3ea04b8a7a..70a3bcb99d214a92610ede2c0e713ce59bf1a683 100644 (file)
@@ -1,4 +1,9 @@
-/** Collection of some useful xform helper functions
+/**
+ * \file xforms_helpers.C
+ * Copyright 2000-2002 The LyX Team.
+ * See the file COPYING.
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
  */
 
 #include <config.h>
index 363076546576f4e965585ff77edd5c1873457d92..aba58c48ea5ebde17f927c065ff7970ec5746437 100644 (file)
@@ -1,4 +1,11 @@
 // -*- C++ -*-
+/**
+ * \file xforms_helpers.h
+ * Copyright 2002 the LyX Team
+ * Read the file COPYING
+ *
+ * \author Angus Leeming, a.leeming@ic.ac.uk
+ */
 
 #ifndef XFORMSHELPERS_H
 #define XFORMSHELPERS_H