doxygen fixes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5347 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-09-26 08:57:43 +00:00
parent 024d13cfcf
commit 02e9472374
51 changed files with 102 additions and 49 deletions

View File

@ -1,3 +1,7 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* ispell.h: doxygen fix.
2002-09-25 Dekel Tsur <dekelts@tau.ac.il>
* buffer.h (readFile): Add a new argument to the method, to allow

View File

@ -1,3 +1,7 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* Dialogs.C: doxygen fix.
2002-09-24 Lars Gullik Bjønnes <larsbj@gullik.net>
* Makefile.am (INCLUDES): loose SIGC_INCLUDES

View File

@ -1,5 +1,5 @@
/**
* \file Dialogs.C
* \file frontends/Dialogs.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
* \author Angus Leeming

View File

@ -1,3 +1,20 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* Dialogs.C:
* FileDialog.C: doxygen fixes.
* GnomeBase.h: rename template FormCB as GnomeCB to avoid doxygen
problems with multiple classes (xforms amd gnome) having the same name.
* GAbout.[Ch]:
* GERT.[Ch]:
* GError.[Ch]:
* GFloat.[Ch]:
* GLog.[Ch]:
* GPreamble.[Ch]:
* GTabularCreate.[Ch]:
* GUrl.[Ch]: associated change.
2002-06-15 Michael A. Koziarski <michael@koziarski.com>
* Dialogs.C

View File

@ -1,5 +1,5 @@
/**
* \file Dialogs.C
* \file gnome/Dialogs.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file FileDialog.C
* \file gnome/FileDialog.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -25,7 +25,7 @@
#include <gtkmm/textview.h>
GAbout::GAbout(ControlAboutlyx & c)
: FormCB<ControlAboutlyx>(c, "GAbout")
: GnomeCB<ControlAboutlyx>(c, "GAbout")
{}

View File

@ -29,7 +29,7 @@ namespace Gtk {
/**
* This class implements the dialog to display the information About LyX
*/
class GAbout : public FormCB<ControlAboutlyx> {
class GAbout : public GnomeCB<ControlAboutlyx> {
public:
///
GAbout(ControlAboutlyx & c);

View File

@ -21,7 +21,7 @@
#include <gtkmm/button.h>
GERT::GERT(ControlERT & c)
: FormCB<ControlERT>(c, "GERT")
: GnomeCB<ControlERT>(c, "GERT")
{}

View File

@ -27,7 +27,7 @@ namespace Gtk {
/**
* This class implements the dialog to insert/modify urls.
*/
class GERT : public FormCB<ControlERT> {
class GERT : public GnomeCB<ControlERT> {
public:
///
GERT(ControlERT & c);

View File

@ -22,7 +22,7 @@
#include <gtkmm/textview.h>
GErrorDialog::GErrorDialog(ControlError & c)
: FormCB<ControlError>(c, "GError")
: GnomeCB<ControlError>(c, "GError")
{}

View File

@ -30,7 +30,7 @@ class TextView;
/**
* This class implements the dialog to show error messages.
*/
class GErrorDialog : public FormCB<ControlError> {
class GErrorDialog : public GnomeCB<ControlError> {
public:
///
GErrorDialog(ControlError & c);

View File

@ -24,7 +24,7 @@
#include <gtkmm/box.h>
GFloat::GFloat(ControlFloat & c)
: FormCB<ControlFloat>(c, "GFloat")
: GnomeCB<ControlFloat>(c, "GFloat")
{}

View File

@ -30,7 +30,7 @@ namespace Gtk {
/**
* This class implements the dialog to modify the LaTeX preamble
*/
class GFloat : public FormCB<ControlFloat> {
class GFloat : public GnomeCB<ControlFloat> {
public:
///
GFloat(ControlFloat & c);

View File

@ -23,7 +23,7 @@
#include <gtkmm/dialog.h>
GLog::GLog(ControlLog & c)
: FormCB<ControlLog>(c, "GLog")
: GnomeCB<ControlLog>(c, "GLog")
{}

View File

@ -28,7 +28,7 @@ namespace Gtk {
/**
* This class implements the dialog to modify the LaTeX preamble
*/
class GLog : public FormCB<ControlLog> {
class GLog : public GnomeCB<ControlLog> {
public:
///
GLog(ControlLog & c);

View File

@ -21,7 +21,7 @@
#include <gtkmm/button.h>
GPreamble::GPreamble(ControlPreamble & c)
: FormCB<ControlPreamble>(c, "GPreamble")
: GnomeCB<ControlPreamble>(c, "GPreamble")
{}

View File

@ -27,7 +27,7 @@ class TextView;
/**
* This class implements the dialog to modify the LaTeX preamble
*/
class GPreamble : public FormCB<ControlPreamble> {
class GPreamble : public GnomeCB<ControlPreamble> {
public:
///
GPreamble(ControlPreamble & c);

View File

@ -22,7 +22,7 @@
#include <gtkmm/button.h>
GTabularCreate::GTabularCreate(ControlTabularCreate & c)
: FormCB<ControlTabularCreate>(c, "GTabularCreate")
: GnomeCB<ControlTabularCreate>(c, "GTabularCreate")
{}

View File

@ -27,7 +27,7 @@ namespace Gtk {
/**
* This class implements the dialog to insert/modify urls.
*/
class GTabularCreate : public FormCB<ControlTabularCreate> {
class GTabularCreate : public GnomeCB<ControlTabularCreate> {
public:
///
GTabularCreate(ControlTabularCreate & c);

View File

@ -23,7 +23,7 @@
#include <gtkmm/button.h>
GUrl::GUrl(ControlUrl & c)
: FormCB<ControlUrl>(c, "GUrl")
: GnomeCB<ControlUrl>(c, "GUrl")
{}

View File

@ -29,7 +29,7 @@ class Entry;
/**
* This class implements the dialog to insert/modify urls.
*/
class GUrl : public FormCB<ControlUrl> {
class GUrl : public GnomeCB<ControlUrl> {
public:
///
GUrl(ControlUrl & c);

View File

@ -97,27 +97,27 @@ T* GnomeBase::getWidget(const string & name) const
* We chose not to make GnomeBase a template since it has some size and we
* have no reason to duplicate it by making it a template.
*
* Basically the FormCB<Controller> template instantiates GnomeBase and passes
* Basically the GnomeCB<Controller> template instantiates GnomeBase and passes
* the parameters to it and it also adds the controller() method to give us
* a reference to the controller of the correct type (the type is set by the
* template parameter).
*/
template <class Controller>
class FormCB : public GnomeBase {
class GnomeCB : public GnomeBase {
public:
FormCB(Controller & c, string const & name);
GnomeCB(Controller & c, string const & name);
protected:
Controller & controller();
};
template <class Controller>
FormCB<Controller>::FormCB(Controller & c, string const & name)
GnomeCB<Controller>::GnomeCB(Controller & c, string const & name)
: GnomeBase(c, name)
{}
template <class Controller>
Controller &
FormCB<Controller>::controller()
GnomeCB<Controller>::controller()
{
return static_cast<Controller &>(controller_);
}

View File

@ -1,3 +1,14 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* Dialogs2.C:
* Dialogs_impl.h:
* LyXKeySymFactory.C:
* LyXScreenFactory.C:
* Menubar_pimpl.[Ch]:
* Toolbar_pimpl.[Ch]:
* WorkAreaFactory.C:
* lyx_gui.C: doxygen fixes.
2002-09-24 Lars Gullik Bjønnes <larsbj@gullik.net>
* ui/moc/Makefile.am (INCLUDES):

View File

@ -1,5 +1,5 @@
/**
* \file xforms/Dialogs.C
* \file qt2/Dialogs2.C
* Copyright 1995 Matthias Ettrich
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Dialogs_impl.h
* \file qt2/Dialogs_impl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
* \author Angus Leeming

View File

@ -1,5 +1,5 @@
/**
* \file LyXKeySymFactory.C
* \file qt2/LyXKeySymFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file LyXScreenFactory.C
* \file qt2/LyXScreenFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file Menubar_pimpl.C
* \file qt2/Menubar_pimpl.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Menubar_pimpl.h
* \file qt2/Menubar_pimpl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -46,7 +46,7 @@ protected:
private:
/// the owning timer
Timeout * owner_;
/// xforms id
/// QTimer id
int timeout_id;
};

View File

@ -1,5 +1,5 @@
/**
* \file Toolbar_pimpl.C
* \file qt2/Toolbar_pimpl.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Toolbar_pimpl.h
* \file qt2/Toolbar_pimpl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file WorkAreaFactory.C
* \file qt2/WorkAreaFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file lyx_gui.C
* \file qt2/lyx_gui.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,3 +1,15 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* Dialogs2.C:
* Dialogs_impl.h:
* FormWrap.h:
* LyXKeySymFactory.C:
* LyXScreenFactory.C:
* Menubar_pimpl.[Ch]:
* Toolbar_pimpl.[Ch]:
* WorkAreaFactory.C:
* lyx_gui.C: doxygen fixes.
2002-09-25 Dekel Tsur <dekelts@tau.ac.il>
* forms/form_wrap.fd: floatflt has no "Inner" placement option.

View File

@ -1,5 +1,5 @@
/**
* \file xforms/Dialogs.C
* \file xforms/Dialogs2.C
* Copyright 1995 Matthias Ettrich
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Dialogs_impl.h
* \file xforms/Dialogs_impl.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
* \author Angus Leeming

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file FormMinipage.h
* \file FormWrap.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file LyXKeySymFactory.C
* \file xforms/LyXKeySymFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file LyXScreenFactory.C
* \file xforms/LyXScreenFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file Menubar_pimpl.C
* \file xforms/Menubar_pimpl.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Menubar_pimpl.h
* \file xforms/Menubar_pimpl.h
* Copyright 1995 Matthias Ettrich
* Copyright 1996-2001 Lars Gullik Bjønnes
* This file is part of LyX, the document processor.

View File

@ -1,5 +1,5 @@
/**
* \file Toolbar_pimpl.C
* \file xforms/Toolbar_pimpl.C
* Copyright 1995 Matthias Ettrich
* Copyright 1996-1998 Lars Gullik Bjønnes
* This file is part of LyX, the document processor.

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file Toolbar_pimpl.h
* \file xforms/Toolbar_pimpl.h
* Copyright 1996-2001 Lars Gullik Bjønnes
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.

View File

@ -1,5 +1,5 @@
/**
* \file WorkAreaFactory.C
* \file xforms/WorkAreaFactory.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,5 +1,5 @@
/**
* \file lyx_gui.C
* \file xforms/lyx_gui.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file sp_ispell.h
* \file ispell.h
* Copyright 2002 the LyX Team
* Read the file COPYING
*

View File

@ -1,3 +1,8 @@
2002-09-25 Angus Leeming <leeming@lyx.org>
* LIstream.h:
* LOstream.h: doxygen fixes.
2002-09-24 Angus Leeming <leeming@lyx.org>
* most files: clean-up the license info.

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file LIStream.h
* \file LIstream.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*/

View File

@ -1,6 +1,6 @@
// -*- C++ -*-
/**
* \file LOStream.h
* \file LOstream.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*/