From: Angus Leeming Date: Wed, 25 Sep 2002 14:26:13 +0000 (+0000) Subject: Copyright notices X-Git-Tag: 1.6.10~18231 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0507b8600d40ac155d6576dafe1218db643a8970;p=lyx.git Copyright notices git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5345 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/Code_rules/Rules b/development/Code_rules/Rules index f549dde8a1..5438a5aecc 100644 --- a/development/Code_rules/Rules +++ b/development/Code_rules/Rules @@ -339,10 +339,12 @@ Formatting /** * \file NewFile.C - * Copyright 2001 the LyX Team - * See the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Kaiser Sose + * + * Full author contact details are available in file CREDITS */ * Documentation diff --git a/src/frontends/Timeout.C b/src/frontends/Timeout.C index e8d7fbae83..59b639479c 100644 --- a/src/frontends/Timeout.C +++ b/src/frontends/Timeout.C @@ -1,6 +1,5 @@ /** * \file Timeout.C - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/frontends/Timeout.h b/src/frontends/Timeout.h index 1e57e53d35..cc2eef843b 100644 --- a/src/frontends/Timeout.h +++ b/src/frontends/Timeout.h @@ -1,7 +1,6 @@ // -*- C++ -*- /** * \file Timeout.h - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/frontends/gnome/Dialogs.C b/src/frontends/gnome/Dialogs.C index 1b97dcb564..ea364220d7 100644 --- a/src/frontends/gnome/Dialogs.C +++ b/src/frontends/gnome/Dialogs.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file Dialogs.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming * - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include @@ -60,75 +60,3 @@ Dialogs::Dialogs(LyXView * lv) // dialogs by a simple connection here. hideAll.connect(hideBufferDependent); } - -/***************************************************************************** - -Q. WHY does Dialogs::Dialogs pass `this' to dialog constructors? - -A. To avoid a segfault. - The dialog constructors need to connect to their - respective showSomeDialog signal(*) but in order to do - that they need to get the address of the Dialogs instance - from LyXView::getDialogs(). However, since the Dialogs - instance is still being constructed at that time - LyXView::getDialogs() will *not* return the correct - address because it hasn't finished being constructed. - A Catch-22 situation (or is that the chicken and the egg...). - So to get around the problem we pass the address of - the newly created Dialogs instance using `this'. - -(*) -- I'm using signals exclusively to guarantee that the gui code - remains hidden from the rest of the system. In fact the only - header related to dialogs that anything in the non-gui-specific - code gets to see is Dialogs.h! Even Dialogs.h doesn't know what a - FormCopyright class looks like or that its even going to be used! - - No other gui dialog headers are seen outside of the gui-specific - directories! This ensures that the gui is completely separate from - the rest of LyX. All this through the use of a few simple signals. - BUT, the price is that during construction we need to connect the - implementations show() method to the showSomeDialog signal and this - requires that we have an instance of Dialogs and the problem mentioned - above. - - Almost all other dialogs should be able to operate using the same style - of signalling used for Copyright. Exceptions should be handled - by adding a specific show or update signal. For example, spellchecker - needs to set the next suspect word and its options/replacements so we - need a: - Signal0 updateSpellChecker; - - Since we would have to have a - Signal0 showSpellChecker; - - in order to just see the spellchecker and let the user push the [Start] - button then the updateSpellChecker signal will make the SpellChecker - dialog get the new word and replacements list from LyX. If you really, - really wanted to you could define a signal that would pass the new - word and replacements: - Signal2 > updateSpellChecker; - - (or something similar) but, why bother when the spellchecker can get - it anyway with a LyXFunc call or two. Besides if someone extends - what a dialog does then they also have to change code in the rest of - LyX to pass more parameters or get the extra info via a function - call anyway. Thus reducing the independence of the two code bases. - - We don't need a separate update signal for each dialog because most of - them will be changed only when the buffer is changed (either by closing - the current open buffer or switching to another buffer in the current - LyXView -- different BufferView same LyXView or same BufferView same - LyXView). - - So we minimise signals but maximise independence and programming - simplicity, understandability and maintainability. It's also - extremely easy to add support for Qt or gtk-- because they use - signals already. Guis that use callbacks, like xforms, must have their - code wrapped up like that in the form_copyright.[Ch] which is awkward - but will at least allow multiple instances of the same dialog. - - LyXFuncs will be used for requesting/setting LyX internal info. This - will ensure that scripts or LyXServer-connected applications can all - have access to the same calls as the internal user-interface. - -******************************************************************************/ diff --git a/src/frontends/gnome/FileDialog.C b/src/frontends/gnome/FileDialog.C index 8e950eb807..089e16b036 100644 --- a/src/frontends/gnome/FileDialog.C +++ b/src/frontends/gnome/FileDialog.C @@ -1,13 +1,12 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file FileDialog.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even - **/ + * + * Full author contact details are available in file CREDITS + */ #ifdef __GNUG__ #pragma implementation diff --git a/src/frontends/gnome/GAbout.C b/src/frontends/gnome/GAbout.C index 11b81bd72d..8cacbba7e1 100644 --- a/src/frontends/gnome/GAbout.C +++ b/src/frontends/gnome/GAbout.C @@ -1,9 +1,11 @@ /** - * ile GAbout.C - * Copyright 2001 The LyX Team. - * See the file COPYING. + * \file GAbout.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GAbout.h b/src/frontends/gnome/GAbout.h index 8f43712855..7a2c0bd97b 100644 --- a/src/frontends/gnome/GAbout.h +++ b/src/frontends/gnome/GAbout.h @@ -2,10 +2,12 @@ // -*- C++ -*- /** * \file GAbout.h - * Copyright 2001 The LyX Team. - * See the file COPYING. + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifndef GABOUT_H diff --git a/src/frontends/gnome/GERT.C b/src/frontends/gnome/GERT.C index f6ac82a0ad..60ccf6c23e 100644 --- a/src/frontends/gnome/GERT.C +++ b/src/frontends/gnome/GERT.C @@ -1,12 +1,11 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. +/** + * \file GERT.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ================================================= + * \author Michael Koziarski * - * \author Michael Koziarski + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GERT.h b/src/frontends/gnome/GERT.h index b5a39125c2..284bbbff5d 100644 --- a/src/frontends/gnome/GERT.h +++ b/src/frontends/gnome/GERT.h @@ -1,15 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. +/** + * \file GERT.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ================================================= + * \author Michael Koziarski * - * \author Michael Koziarski - * */ + * Full author contact details are available in file CREDITS + */ #ifndef GERT_H #define GERT_H diff --git a/src/frontends/gnome/GError.C b/src/frontends/gnome/GError.C index 52614d579f..ac7908c45f 100644 --- a/src/frontends/gnome/GError.C +++ b/src/frontends/gnome/GError.C @@ -1,13 +1,12 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GError.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Michael Koziarski * \author Baruch Even + * + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GError.h b/src/frontends/gnome/GError.h index 3c8e0a8783..d5c07fb8d0 100644 --- a/src/frontends/gnome/GError.h +++ b/src/frontends/gnome/GError.h @@ -1,16 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GError.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Michael Koziarski * \author Baruch Even - * */ + * + * Full author contact details are available in file CREDITS + */ #ifndef GERROR_H #define GERROR_H diff --git a/src/frontends/gnome/GFloat.C b/src/frontends/gnome/GFloat.C index de51528e8d..9a5cf81fd9 100644 --- a/src/frontends/gnome/GFloat.C +++ b/src/frontends/gnome/GFloat.C @@ -1,9 +1,11 @@ /** * \file GFloat.C - * Copyright 2001 The LyX Team. - * See the file COPYING. + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GFloat.h b/src/frontends/gnome/GFloat.h index c0225a7bcb..73829abfa0 100644 --- a/src/frontends/gnome/GFloat.h +++ b/src/frontends/gnome/GFloat.h @@ -2,10 +2,12 @@ // -*- C++ -*- /** * \file GFloat.h - * Copyright 2001 The LyX Team. - * See the file COPYING. + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifndef GFLOAT_H diff --git a/src/frontends/gnome/GLog.C b/src/frontends/gnome/GLog.C index 17738efef8..28ab389ed4 100644 --- a/src/frontends/gnome/GLog.C +++ b/src/frontends/gnome/GLog.C @@ -1,9 +1,11 @@ /** - * ile GLog.C - * Copyright 2001 The LyX Team. - * See the file COPYING. + * \file GLog.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GLog.h b/src/frontends/gnome/GLog.h index 4c027a8e02..c203e51259 100644 --- a/src/frontends/gnome/GLog.h +++ b/src/frontends/gnome/GLog.h @@ -2,10 +2,12 @@ // -*- C++ -*- /** * \file GLog.h - * Copyright 2001 The LyX Team. - * See the file COPYING. + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Michael Koziarski + * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifndef GLOG_H diff --git a/src/frontends/gnome/GPreamble.C b/src/frontends/gnome/GPreamble.C index 5737be48e6..471802b85c 100644 --- a/src/frontends/gnome/GPreamble.C +++ b/src/frontends/gnome/GPreamble.C @@ -1,12 +1,11 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. +/** + * \file GPreamble.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ================================================= + * \author Michael Koziarski * - * \author Michael Koziarski + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GPreamble.h b/src/frontends/gnome/GPreamble.h index 27a757f596..5fe4a437d6 100644 --- a/src/frontends/gnome/GPreamble.h +++ b/src/frontends/gnome/GPreamble.h @@ -1,15 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GPreamble.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Michael Koziarski - * */ + * + * Full author contact details are available in file CREDITS + */ #ifndef GPREAMBLE_H #define GPREAMBLE_H diff --git a/src/frontends/gnome/GTabularCreate.C b/src/frontends/gnome/GTabularCreate.C index 714bc68968..752e682557 100644 --- a/src/frontends/gnome/GTabularCreate.C +++ b/src/frontends/gnome/GTabularCreate.C @@ -1,12 +1,11 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. +/** + * \file GTabularCreate.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ================================================= + * \author Michael Koziarski * - * \author Michael Koziarski + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GTabularCreate.h b/src/frontends/gnome/GTabularCreate.h index 9cae480a73..521c6b506b 100644 --- a/src/frontends/gnome/GTabularCreate.h +++ b/src/frontends/gnome/GTabularCreate.h @@ -1,15 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. +/** + * \file GTabularCreate.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * ================================================= + * \author Michael Koziarski * - * \author Michael Koziarski - * */ + * Full author contact details are available in file CREDITS + */ #ifndef GTABULARCREATE_H #define GTABULARCREATE_H diff --git a/src/frontends/gnome/GUIRunTime.C b/src/frontends/gnome/GUIRunTime.C index 7a5133e01d..b26b3ff32c 100644 --- a/src/frontends/gnome/GUIRunTime.C +++ b/src/frontends/gnome/GUIRunTime.C @@ -1,11 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file GUIRunTime.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author unknown * - * Copyright 2000 The LyX Team. - * - *======================================================*/ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/frontends/gnome/GUrl.C b/src/frontends/gnome/GUrl.C index cd918d3c4f..17b02232f5 100644 --- a/src/frontends/gnome/GUrl.C +++ b/src/frontends/gnome/GUrl.C @@ -1,13 +1,12 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GUrl.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #ifdef __GNUG__ diff --git a/src/frontends/gnome/GUrl.h b/src/frontends/gnome/GUrl.h index f1101ed222..22be252cac 100644 --- a/src/frontends/gnome/GUrl.h +++ b/src/frontends/gnome/GUrl.h @@ -1,16 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GUrl.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even * \author Michael Koziarski - * */ + * + * Full author contact details are available in file CREDITS + */ #ifndef GURL_H #define GURL_H diff --git a/src/frontends/gnome/GnomeBase.C b/src/frontends/gnome/GnomeBase.C index a220f82594..168d2a637b 100644 --- a/src/frontends/gnome/GnomeBase.C +++ b/src/frontends/gnome/GnomeBase.C @@ -1,11 +1,12 @@ -/* This file is part of - * ================================================= +/** + * \file GnomeBase.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2000 The LyX Team. + * \author Baruch Even * - * ================================================= */ + * Full author contact details are available in file CREDITS + */ #ifdef __GNUG__ #pragma implementation diff --git a/src/frontends/gnome/GnomeBase.h b/src/frontends/gnome/GnomeBase.h index bea178cba1..2c35f24430 100644 --- a/src/frontends/gnome/GnomeBase.h +++ b/src/frontends/gnome/GnomeBase.h @@ -1,14 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. - * - * ================================================= +/** + * \file GnomeBase.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even - **/ + * + * Full author contact details are available in file CREDITS + */ #ifndef GnomeBase_H #define GnomeBase_H diff --git a/src/frontends/gnome/Timeout_pimpl.C b/src/frontends/gnome/Timeout_pimpl.C index f5213854e1..e68528f60c 100644 --- a/src/frontends/gnome/Timeout_pimpl.C +++ b/src/frontends/gnome/Timeout_pimpl.C @@ -1,10 +1,12 @@ /** * \file gnome/Timeout_pimpl.C - * Copyright 2001 LyX Team - * Read COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even * \author Michael Koziarski + * + * Full author contact details are available in file CREDITS */ #include diff --git a/src/frontends/gnome/Timeout_pimpl.h b/src/frontends/gnome/Timeout_pimpl.h index ea18891725..b733b82aee 100644 --- a/src/frontends/gnome/Timeout_pimpl.h +++ b/src/frontends/gnome/Timeout_pimpl.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file gnome/Timeout_pimpl.h - * Copyright 2001 LyX Team - * Read COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even + * + * Full author contact details are available in file CREDITS */ #ifndef TIMEOUTPIMPL_H #define TIMEOUTPIMPL_H diff --git a/src/frontends/gnome/gnomeBC.C b/src/frontends/gnome/gnomeBC.C index 7812692ce0..800b635a09 100644 --- a/src/frontends/gnome/gnomeBC.C +++ b/src/frontends/gnome/gnomeBC.C @@ -1,3 +1,12 @@ +/** + * \file gnomeBC.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Baruch Even + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/frontends/gnome/gnomeBC.h b/src/frontends/gnome/gnomeBC.h index 1b7f200736..c823d35939 100644 --- a/src/frontends/gnome/gnomeBC.h +++ b/src/frontends/gnome/gnomeBC.h @@ -1,14 +1,12 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file gnomeBC.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Baruch Even * - * Copyright 1995-2000 The LyX Team. - * - * ====================================================== - * - * Author: Baruch Even + * Full author contact details are available in file CREDITS */ #ifndef GNOMEBC_H diff --git a/src/frontends/gnome/gnome_helpers.C b/src/frontends/gnome/gnome_helpers.C index 08d4c3deec..2e2c8ffa40 100644 --- a/src/frontends/gnome/gnome_helpers.C +++ b/src/frontends/gnome/gnome_helpers.C @@ -1,11 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file gnome_helpers.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author unknown * - * Copyright 2000 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/frontends/gnome/gnome_helpers.h b/src/frontends/gnome/gnome_helpers.h index 48b3d2131a..d6793291fe 100644 --- a/src/frontends/gnome/gnome_helpers.h +++ b/src/frontends/gnome/gnome_helpers.h @@ -1,11 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ================================================= +/** + * \file gnome_helpers.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor - * Copyright 1995-2000 The LyX Team. + * \author unknown * - * ================================================= */ + * Full author contact details are available in file CREDITS + */ #ifndef GNOME_HELPERS_H #define GNOME_HELPERS_H diff --git a/src/frontends/gnome/pixbutton.h b/src/frontends/gnome/pixbutton.h index bbec75cf57..369188d737 100644 --- a/src/frontends/gnome/pixbutton.h +++ b/src/frontends/gnome/pixbutton.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file pixbutton.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author unknown * - * Copyright 2000 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef GNOME_PIXBUTTON #define GNOME_PIXBUTTON diff --git a/src/frontends/qt2/QParagraphDialog.C b/src/frontends/qt2/QParagraphDialog.C index 3778ad23b4..345a87c611 100644 --- a/src/frontends/qt2/QParagraphDialog.C +++ b/src/frontends/qt2/QParagraphDialog.C @@ -1,6 +1,5 @@ /** * \file QParagraphDialog.C - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/frontends/qt2/QPrintDialog.C b/src/frontends/qt2/QPrintDialog.C index ff47599ad6..42b2e40cd1 100644 --- a/src/frontends/qt2/QPrintDialog.C +++ b/src/frontends/qt2/QPrintDialog.C @@ -1,6 +1,5 @@ /** * \file QPrintDialog.C - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/frontends/xforms/Timeout_pimpl.C b/src/frontends/xforms/Timeout_pimpl.C index 41e1d9d18f..e022dacca7 100644 --- a/src/frontends/xforms/Timeout_pimpl.C +++ b/src/frontends/xforms/Timeout_pimpl.C @@ -1,6 +1,5 @@ /** * \file xforms/Timeout_pimpl.C - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/frontends/xforms/Timeout_pimpl.h b/src/frontends/xforms/Timeout_pimpl.h index 682bfe7fb9..390f7e87e3 100644 --- a/src/frontends/xforms/Timeout_pimpl.h +++ b/src/frontends/xforms/Timeout_pimpl.h @@ -1,7 +1,6 @@ // -*- C++ -*- /** * \file xforms/Timeout_pimpl.h - * Copyright 2001 LyX Team * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * diff --git a/src/insets/ExternalTemplate.C b/src/insets/ExternalTemplate.C index fffd528392..8ee1e68edf 100644 --- a/src/insets/ExternalTemplate.C +++ b/src/insets/ExternalTemplate.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file ExternalTemplate.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/ExternalTemplate.h b/src/insets/ExternalTemplate.h index 91162912f2..0d1f29dc48 100644 --- a/src/insets/ExternalTemplate.h +++ b/src/insets/ExternalTemplate.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== - * - * LyX, The Document Processor +/** + * \file ExternalTemplate.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. + * \author Asger Alstrup Nielsen * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef EXTERNALTEMPLATE_H #define EXTERNALTEMPLATE_H diff --git a/src/insets/inset.C b/src/insets/inset.C index 69a064bab5..e1a2e1a867 100644 --- a/src/insets/inset.C +++ b/src/insets/inset.C @@ -1,12 +1,15 @@ -/* This file is part of - * ====================================================== +/** + * \file inset.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes + * \author Matthias Ettrich * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/inset.h b/src/insets/inset.h index 54459c5e6c..46cb4356e5 100644 --- a/src/insets/inset.h +++ b/src/insets/inset.h @@ -1,12 +1,16 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor +/** + * \file inset.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * Copyright 1995-2001 the LyX Team. + * \author Alejandro Aguilar Sierra + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes + * \author Matthias Ettrich * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_H #define INSET_H diff --git a/src/insets/insetbib.C b/src/insets/insetbib.C index b391fc13cc..427d37fc55 100644 --- a/src/insets/insetbib.C +++ b/src/insets/insetbib.C @@ -1,3 +1,12 @@ +/** + * \file insetbib.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Alejandro Aguilar Sierra + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetbib.h b/src/insets/insetbib.h index 2606948f59..c297634f7c 100644 --- a/src/insets/insetbib.h +++ b/src/insets/insetbib.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetbib.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_BIB_H #define INSET_BIB_H diff --git a/src/insets/insetbutton.C b/src/insets/insetbutton.C index eef13251ef..2b1cde3fa8 100644 --- a/src/insets/insetbutton.C +++ b/src/insets/insetbutton.C @@ -1,12 +1,14 @@ -/* This file is part of - * ====================================================== +/** + * \file insetbutton.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetbutton.h b/src/insets/insetbutton.h index 5a9c17e1d8..48d76b7165 100644 --- a/src/insets/insetbutton.h +++ b/src/insets/insetbutton.h @@ -1,13 +1,15 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetbutton.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_BUTTON_H #define INSET_BUTTON_H diff --git a/src/insets/insetcaption.C b/src/insets/insetcaption.C index 78a883bce5..39691f7d6a 100644 --- a/src/insets/insetcaption.C +++ b/src/insets/insetcaption.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insetcaption.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetcaption.h b/src/insets/insetcaption.h index b9705f0623..4cb776312f 100644 --- a/src/insets/insetcaption.h +++ b/src/insets/insetcaption.h @@ -1,15 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetcaption.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ - #ifndef INSETCAPTION_H #define INSETCAPTION_H diff --git a/src/insets/insetcite.C b/src/insets/insetcite.C index f294cde0e6..998338787b 100644 --- a/src/insets/insetcite.C +++ b/src/insets/insetcite.C @@ -1,10 +1,12 @@ /** * \file insetcite.C - * Copyright 2001 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Angus Leeming, a.leeming@ic.ac.uk - * \author Herbert Voss, voss@lyx.org 2002-03-17 + * \author Angus Leeming + * \author Herbert Voss + * + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetcite.h b/src/insets/insetcite.h index c4390a2e34..832b3024be 100644 --- a/src/insets/insetcite.h +++ b/src/insets/insetcite.h @@ -1,12 +1,14 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetcite.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming + * \author Herbert Voss * - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_CITE_H #define INSET_CITE_H diff --git a/src/insets/insetcollapsable.C b/src/insets/insetcollapsable.C index 432cab8fc5..1e38be38b7 100644 --- a/src/insets/insetcollapsable.C +++ b/src/insets/insetcollapsable.C @@ -1,11 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file insetcollapsable.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetcollapsable.h b/src/insets/insetcollapsable.h index 967b19dd46..763804af9e 100644 --- a/src/insets/insetcollapsable.h +++ b/src/insets/insetcollapsable.h @@ -1,15 +1,16 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetcollapsable.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ - #ifndef INSETCOLLAPSABLE_H #define INSETCOLLAPSABLE_H diff --git a/src/insets/insetcommand.C b/src/insets/insetcommand.C index 1c47948e7e..7350cbcad6 100644 --- a/src/insets/insetcommand.C +++ b/src/insets/insetcommand.C @@ -1,12 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file insetcommand.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetcommand.h b/src/insets/insetcommand.h index edae513119..ec9003b03f 100644 --- a/src/insets/insetcommand.h +++ b/src/insets/insetcommand.h @@ -1,13 +1,14 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetcommand.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_LATEXCOMMAND_H #define INSET_LATEXCOMMAND_H diff --git a/src/insets/insetcommandparams.C b/src/insets/insetcommandparams.C index 5da44d6bf9..1325605f19 100644 --- a/src/insets/insetcommandparams.C +++ b/src/insets/insetcommandparams.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetcommandparams.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming * - * Copyright 2002-2002 The LyX Team. - * - * ====================================================== */ - + * Full author contact details are available in file CREDITS + */ #ifdef __GNUG__ #pragma implementation diff --git a/src/insets/insetcommandparams.h b/src/insets/insetcommandparams.h index 481151c119..565236ec04 100644 --- a/src/insets/insetcommandparams.h +++ b/src/insets/insetcommandparams.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetcommandparams.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming * - * Copyright 2002-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSETCOMMANDPARAMS_H #define INSETCOMMANDPARAMS_H diff --git a/src/insets/inseterror.C b/src/insets/inseterror.C index 77bcc09dc5..da5bed5e92 100644 --- a/src/insets/inseterror.C +++ b/src/insets/inseterror.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file inseterror.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/inseterror.h b/src/insets/inseterror.h index b7a8172141..b148d35a73 100644 --- a/src/insets/inseterror.h +++ b/src/insets/inseterror.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file inseterror.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_ERROR_H #define INSET_ERROR_H diff --git a/src/insets/insetert.C b/src/insets/insetert.C index 38bd93af44..57ef983965 100644 --- a/src/insets/insetert.C +++ b/src/insets/insetert.C @@ -1,12 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file insetert.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *======================================================*/ - + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetert.h b/src/insets/insetert.h index f6bd249beb..f12e30699e 100644 --- a/src/insets/insetert.h +++ b/src/insets/insetert.h @@ -1,15 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetert.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ -// The pristine updatable inset: Text - #ifndef INSETERT_H #define INSETERT_H diff --git a/src/insets/insetexternal.C b/src/insets/insetexternal.C index 86a4d9876f..cef318c709 100644 --- a/src/insets/insetexternal.C +++ b/src/insets/insetexternal.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetexternal.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetexternal.h b/src/insets/insetexternal.h index cc3376cc53..4f09391d9d 100644 --- a/src/insets/insetexternal.h +++ b/src/insets/insetexternal.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetexternal.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_EXTERNAL_H #define INSET_EXTERNAL_H diff --git a/src/insets/insetfloat.C b/src/insets/insetfloat.C index 328e356679..24c196a070 100644 --- a/src/insets/insetfloat.C +++ b/src/insets/insetfloat.C @@ -1,12 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file insetfloat.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998-2001 The LyX Team. - * - * ====================================================== */ - + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetfloat.h b/src/insets/insetfloat.h index 792d9f7872..fd0ddea0c8 100644 --- a/src/insets/insetfloat.h +++ b/src/insets/insetfloat.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetfloat.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #ifndef InsetFloat_H diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index 6562e74bd2..36102f2d63 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -1,3 +1,12 @@ +/** + * \file insetfloatlist.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetfloatlist.h b/src/insets/insetfloatlist.h index af8ed7bfa3..b774d50421 100644 --- a/src/insets/insetfloatlist.h +++ b/src/insets/insetfloatlist.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetfloatlist.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Word Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_FLOATLIST_H #define INSET_FLOATLIST_H diff --git a/src/insets/insetfoot.C b/src/insets/insetfoot.C index d91cdb6699..a0bf730374 100644 --- a/src/insets/insetfoot.C +++ b/src/insets/insetfoot.C @@ -1,11 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetfoot.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetfoot.h b/src/insets/insetfoot.h index a5198f1f5e..d20a0510b8 100644 --- a/src/insets/insetfoot.h +++ b/src/insets/insetfoot.h @@ -1,15 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetfoot.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ -// The pristine updatable inset: Text - #ifndef INSETFOOT_H #define INSETFOOT_H diff --git a/src/insets/insetfootlike.C b/src/insets/insetfootlike.C index 5b1960aca9..e789f08f15 100644 --- a/src/insets/insetfootlike.C +++ b/src/insets/insetfootlike.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insetfootlike.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetfootlike.h b/src/insets/insetfootlike.h index d0a47a0107..efa3f2845f 100644 --- a/src/insets/insetfootlike.h +++ b/src/insets/insetfootlike.h @@ -1,15 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetfootlike.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ -// The pristine updatable inset: Text - #ifndef INSETFOOTLIKE_H #define INSETFOOTLIKE_H diff --git a/src/insets/insetgraphics.C b/src/insets/insetgraphics.C index 37c944b4d7..814387c8b9 100644 --- a/src/insets/insetgraphics.C +++ b/src/insets/insetgraphics.C @@ -1,13 +1,13 @@ -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995-2002 the LyX Team. +/** + * \file insetgraphics.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even - * \author Herbert Voss - * ====================================================== */ + * \author Herbert Voss + * + * Full author contact details are available in file CREDITS + */ /* TODO diff --git a/src/insets/insetgraphics.h b/src/insets/insetgraphics.h index 56fd64cfc1..e25a92d007 100644 --- a/src/insets/insetgraphics.h +++ b/src/insets/insetgraphics.h @@ -1,15 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 the LyX Team. +/** + * \file insetgraphics.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even - * \author Herbert Voss - * ====================================================== */ + * \author Herbert Voss + * + * Full author contact details are available in file CREDITS + */ #ifndef INSET_GRAPHICS_H #define INSET_GRAPHICS_H diff --git a/src/insets/insetgraphicsParams.C b/src/insets/insetgraphicsParams.C index e9fcd3dc90..af52942f77 100644 --- a/src/insets/insetgraphicsParams.C +++ b/src/insets/insetgraphicsParams.C @@ -1,14 +1,13 @@ -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2001 The LyX Team. +/** + * \file insetgraphicsParams.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even * \author Herbert Voss * - * ================================================= */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetgraphicsParams.h b/src/insets/insetgraphicsParams.h index a3aafedb2a..11a379d02d 100644 --- a/src/insets/insetgraphicsParams.h +++ b/src/insets/insetgraphicsParams.h @@ -1,14 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ================================================= - * - * LyX, The Document Processor - * Copyright 1995 Matthias Ettrich. - * Copyright 1995-2002 The LyX Team. +/** + * \file insetgraphicsParams.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author Baruch Even - * \author Herbert Voss - * ================================================= */ + * \author Herbert Voss + * + * Full author contact details are available in file CREDITS + */ #ifndef INSETGRAPHICSPARAMS_H #define INSETGRAPHICSPARAMS_H diff --git a/src/insets/insetinclude.C b/src/insets/insetinclude.C index 307a19457a..3854c95098 100644 --- a/src/insets/insetinclude.C +++ b/src/insets/insetinclude.C @@ -1,3 +1,12 @@ +/** + * \file insetinclude.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetinclude.h b/src/insets/insetinclude.h index 2d8a2349cc..3a1ce111f5 100644 --- a/src/insets/insetinclude.h +++ b/src/insets/insetinclude.h @@ -4,6 +4,8 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * + * \author Lars Gullik Bjønnes + * * Full author contact details are available in file CREDITS */ diff --git a/src/insets/insetindex.C b/src/insets/insetindex.C index eaf92d2554..2cc96574fd 100644 --- a/src/insets/insetindex.C +++ b/src/insets/insetindex.C @@ -1,3 +1,12 @@ +/** + * \file insetindex.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetindex.h b/src/insets/insetindex.h index dfd8304a68..4303466789 100644 --- a/src/insets/insetindex.h +++ b/src/insets/insetindex.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetindex.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2001 the LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_INDEX_H #define INSET_INDEX_H diff --git a/src/insets/insetlabel.C b/src/insets/insetlabel.C index 5ce9b705c3..bfc43de3a1 100644 --- a/src/insets/insetlabel.C +++ b/src/insets/insetlabel.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetlabel.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 16b1e094ec..5e78c15a76 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetlabel.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_LABEL_H #define INSET_LABEL_H diff --git a/src/insets/insetlatexaccent.C b/src/insets/insetlatexaccent.C index 2034364e54..ea82702696 100644 --- a/src/insets/insetlatexaccent.C +++ b/src/insets/insetlatexaccent.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetlatexaccent.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetlatexaccent.h b/src/insets/insetlatexaccent.h index b35b2eb9d5..dda1556b7e 100644 --- a/src/insets/insetlatexaccent.h +++ b/src/insets/insetlatexaccent.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetlatexaccent.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_LATEX_ACCENT_H #define INSET_LATEX_ACCENT_H diff --git a/src/insets/insetlist.C b/src/insets/insetlist.C index 646cb86ea0..4a04a4e76b 100644 --- a/src/insets/insetlist.C +++ b/src/insets/insetlist.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetlist.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== */ - + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetlist.h b/src/insets/insetlist.h index 9e3df491db..c016175bec 100644 --- a/src/insets/insetlist.h +++ b/src/insets/insetlist.h @@ -1,12 +1,12 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetlist.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #ifndef InsetList_H diff --git a/src/insets/insetmarginal.C b/src/insets/insetmarginal.C index a62b85144c..f856c3ee33 100644 --- a/src/insets/insetmarginal.C +++ b/src/insets/insetmarginal.C @@ -1,11 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetmarginal.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetmarginal.h b/src/insets/insetmarginal.h index 6e177327f5..55d657ea6f 100644 --- a/src/insets/insetmarginal.h +++ b/src/insets/insetmarginal.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetmarginal.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ #ifndef INSETMARGINAL_H diff --git a/src/insets/insetminipage.C b/src/insets/insetminipage.C index ad88fa8cca..b0db87f00f 100644 --- a/src/insets/insetminipage.C +++ b/src/insets/insetminipage.C @@ -1,11 +1,13 @@ -/* This file is part of - * ====================================================== +/** + * \file insetminipage.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - *======================================================*/ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetminipage.h b/src/insets/insetminipage.h index 8ea8fe6dad..088c2776b5 100644 --- a/src/insets/insetminipage.h +++ b/src/insets/insetminipage.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetminipage.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna + * \author Lars Gullik Bjønnes * - * Copyright 2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #ifndef InsetMinipage_H diff --git a/src/insets/insetnote.C b/src/insets/insetnote.C index 4dd2f92080..f81d9b64b7 100644 --- a/src/insets/insetnote.C +++ b/src/insets/insetnote.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insetnote.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetnote.h b/src/insets/insetnote.h index df864c130e..5a4e941406 100644 --- a/src/insets/insetnote.h +++ b/src/insets/insetnote.h @@ -1,12 +1,12 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetnote.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Angus Leeming * - * Copyright 2001 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ #ifndef INSETNOTE_H diff --git a/src/insets/insetoptarg.C b/src/insets/insetoptarg.C index bc202a9ed8..243b18ece0 100644 --- a/src/insets/insetoptarg.C +++ b/src/insets/insetoptarg.C @@ -1,9 +1,11 @@ /** * \file insetoptarg.C - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Martin Vermeer + * \author Martin Vermeer + * + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetoptarg.h b/src/insets/insetoptarg.h index bff64d22b6..9256c31bd9 100644 --- a/src/insets/insetoptarg.h +++ b/src/insets/insetoptarg.h @@ -1,10 +1,12 @@ // -*- C++ -*- /** * \file insetoptarg.h - * Copyright 2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * \author Martin Vermeer + * \author Martin Vermeer + * + * Full author contact details are available in file CREDITS */ #ifndef INSETOPTARG_H diff --git a/src/insets/insetparent.C b/src/insets/insetparent.C index 79608fffee..2620275fe0 100644 --- a/src/insets/insetparent.C +++ b/src/insets/insetparent.C @@ -1,11 +1,12 @@ -/* This file is part of* - * ====================================================== +/** + * \file insetparent.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra * - * Copyright 1997-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ // Created by asierra 970813 diff --git a/src/insets/insetparent.h b/src/insets/insetparent.h index 6bb544b40e..aabce2c974 100644 --- a/src/insets/insetparent.h +++ b/src/insets/insetparent.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetparent.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Alejandro Aguilar Sierra * - * Copyright 1997-2001 LyX Team - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_PARENT_H #define INSET_PARENT_H diff --git a/src/insets/insetquotes.C b/src/insets/insetquotes.C index 3e01fe8079..d6c631eddc 100644 --- a/src/insets/insetquotes.C +++ b/src/insets/insetquotes.C @@ -1,12 +1,12 @@ -/* This file is part of - * ====================================================== +/** + * \file insetquotes.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jean-Marc Lasgouttes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetquotes.h b/src/insets/insetquotes.h index 44a5565add..7e5c15a1e7 100644 --- a/src/insets/insetquotes.h +++ b/src/insets/insetquotes.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetquotes.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jean-Marc Lasgouttes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_QUOTES_H #define INSET_QUOTES_H diff --git a/src/insets/insetref.C b/src/insets/insetref.C index 6874f054b7..e8e401473f 100644 --- a/src/insets/insetref.C +++ b/src/insets/insetref.C @@ -1,3 +1,12 @@ +/** + * \file insetref.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author José Matos + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insetref.h b/src/insets/insetref.h index cbf6a6f5f1..41bbdbe536 100644 --- a/src/insets/insetref.h +++ b/src/insets/insetref.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetref.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author José Matos * - * Copyright 1997 LyX Team (this file was created this year) - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_REF_H #define INSET_REF_H diff --git a/src/insets/insetsection.C b/src/insets/insetsection.C index b0488891cd..2c9f41bb44 100644 --- a/src/insets/insetsection.C +++ b/src/insets/insetsection.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insetsection.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insetsection.h b/src/insets/insetsection.h index 7375680f86..36fcd6cc45 100644 --- a/src/insets/insetsection.h +++ b/src/insets/insetsection.h @@ -1,15 +1,14 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insetsection.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 2000-2001 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ - #ifndef INSETSECTION_H #define INSETSECTION_H diff --git a/src/insets/insetspecialchar.C b/src/insets/insetspecialchar.C index 7dcbc23afc..f0f5d5e881 100644 --- a/src/insets/insetspecialchar.C +++ b/src/insets/insetspecialchar.C @@ -1,11 +1,14 @@ -/* This file is part of - * ====================================================== +/** + * \file insetspecialchar.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen + * \author Jean-Marc Lasgouttes + * \author Lars Gullik Bjønnes * - * Copyright 1997 Asger Alstrup - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #include diff --git a/src/insets/insetspecialchar.h b/src/insets/insetspecialchar.h index d8d00452b0..1550a68f48 100644 --- a/src/insets/insetspecialchar.h +++ b/src/insets/insetspecialchar.h @@ -1,12 +1,15 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetspecialchar.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Asger Alstrup Nielsen + * \author Jean-Marc Lasgouttes + * \author Lars Gullik Bjønnes * - * Copyright 1997 Asger Alstrup - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_SPECIALCHAR_H #define INSET_SPECIALCHAR_H diff --git a/src/insets/insettabular.C b/src/insets/insettabular.C index c60e46324f..388e506ab4 100644 --- a/src/insets/insettabular.C +++ b/src/insets/insettabular.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insettabular.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna * - * Copyright 2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insettabular.h b/src/insets/insettabular.h index 3e000ff9be..83a45fedcc 100644 --- a/src/insets/insettabular.h +++ b/src/insets/insettabular.h @@ -1,12 +1,12 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insettabular.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna * - * Copyright 1995-2001 The LyX Team. - * - *====================================================== + * Full author contact details are available in file CREDITS */ // This is the rewrite of the tabular (table) support. diff --git a/src/insets/insettext.C b/src/insets/insettext.C index f4e2158a84..fc0822f160 100644 --- a/src/insets/insettext.C +++ b/src/insets/insettext.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insettext.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Jürgen Vigna * - * Copyright 1998-2001 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insettext.h b/src/insets/insettext.h index 20c694090a..38831533a8 100644 --- a/src/insets/insettext.h +++ b/src/insets/insettext.h @@ -1,16 +1,13 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== - * - * LyX, The Document Processor - * - * Copyright 1998 The LyX Team. +/** + * \file insettext.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * + * \author Jürgen Vigna * - *====================================================== + * Full author contact details are available in file CREDITS */ -// The pristine updatable inset: Text - #ifndef INSETTEXT_H #define INSETTEXT_H diff --git a/src/insets/insettheorem.C b/src/insets/insettheorem.C index e6cf3016aa..d591f8019e 100644 --- a/src/insets/insettheorem.C +++ b/src/insets/insettheorem.C @@ -1,11 +1,11 @@ -/* This file is part of - * ====================================================== +/** + * \file insettheorem.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #include diff --git a/src/insets/insettheorem.h b/src/insets/insettheorem.h index 41a1aa3eb3..fea6fe9f3e 100644 --- a/src/insets/insettheorem.h +++ b/src/insets/insettheorem.h @@ -1,12 +1,12 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file insettheorem.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1998 The LyX Team. - * - * ====================================================== + * Full author contact details are available in file CREDITS */ #ifndef InsetTheorem_H diff --git a/src/insets/insettoc.C b/src/insets/insettoc.C index af6fb2d0ab..809e5b242a 100644 --- a/src/insets/insettoc.C +++ b/src/insets/insettoc.C @@ -1,3 +1,12 @@ +/** + * \file insettoc.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 6b8d542c5a..37b4457ea0 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -1,13 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insettoc.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Word Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_TOC_H #define INSET_TOC_H diff --git a/src/insets/inseturl.C b/src/insets/inseturl.C index d73ccd377b..46678467db 100644 --- a/src/insets/inseturl.C +++ b/src/insets/inseturl.C @@ -1,3 +1,12 @@ +/** + * \file inseturl.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author José Matos + * + * Full author contact details are available in file CREDITS + */ #include #ifdef __GNUG__ diff --git a/src/insets/inseturl.h b/src/insets/inseturl.h index e6f4331025..a3c8c7562b 100644 --- a/src/insets/inseturl.h +++ b/src/insets/inseturl.h @@ -1,12 +1,13 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file inseturl.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author José Matos * - * Copyright 1997-2001 The LyX Team. - * - * ====================================================== */ + * Full author contact details are available in file CREDITS + */ #ifndef INSET_URL_H #define INSET_URL_H