Lots and lots of little trivial bits.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5334 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-09-24 13:57:09 +00:00
parent cee80af9a3
commit da4456f2aa
174 changed files with 1744 additions and 949 deletions

View File

@ -1,13 +1,19 @@
/**
* \file qt2/Alert_pimpl.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <qmessagebox.h>
#include <qlabel.h>
#include <qlineedit.h>

View File

@ -1,3 +1,17 @@
2002-09-24 Angus Leeming <leeming@lyx.org>
* most files: "standard-conforming" Licence declaration.
Remove trailing whitespace.
* many header files: do not #include <config.h>.
Remove unnecessary #includes by using forward declarations.
Add as first line: // -*- C++ -*-
Move several definitions of virtual functions out of line
as they are unlikely to be inlined anyway (and it reduces
header file dependencies)...
* many files: added g++ #pragma directives.
2002-09-23 Angus Leeming <leeming@lyx.org>
* QMath.h: forward declare QMathDialog.

View File

@ -1,11 +1,13 @@
/**
* \file qt2/Dialogs.C
* Copyright 1995 Matthias Ettrich
* Copyright 1995-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 Allan Rae, rae@lyx.org
* \author Angus Leeming <leeming@lyx.org>
* \author Allan Rae
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,11 +1,13 @@
/**
* \file xforms/Dialogs.C
* Copyright 1995 Matthias Ettrich
* Copyright 1995-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 Allan Rae, rae@lyx.org
* \author Angus Leeming <leeming@lyx.org>
* \author Allan Rae
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,9 +1,11 @@
// -*- C++ -*-
/**
* \file Dialogs_impl.h
* Copyright 1995-2002 The LyX Team.
* See the file COPYING.
* \author Angus Leeming <leeming@lyx.org>
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
* \author Angus Leeming
*
* Full author contact details are available in file CREDITS
*/
#ifndef DIALOGS_IMPL_H

View File

@ -1,9 +1,11 @@
/**
* \file qt2/FileDialog.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 John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifdef __GNUG__

View File

@ -1,25 +1,29 @@
/**
* \file FileDialog_private.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 John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#include "LString.h"
#include "support/lstrings.h"
#ifdef __GNUG__
#pragma implementation
#endif
#include <qapplication.h>
#include <qfiledialog.h>
#include <qtoolbutton.h>
#include "FileDialog_private.h"
#include "QtLyXView.h"
#include "debug.h"
#include "funcrequest.h"
#include "FileDialog_private.h"
#include "lyxfunc.h"
#include "support/lstrings.h"
namespace {
/// return the Qt form of the label

View File

@ -1,23 +1,24 @@
// -*- C++ -*-
/**
* \file FileDialog_private.h
* 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 John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef FILEDIALOG_PRIVATE_H
#define FILEDIALOG_PRIVATE_H
#include <config.h>
#include "LString.h"
#include "lyxfunc.h"
#ifdef __GNUG__
#pragma interface
#endif
#include "frontends/FileDialog.h"
#include <qfiledialog.h>
#include "LString.h"
class QToolButton;

View File

@ -1,13 +1,19 @@
/**
* \file LyXKeySymFactory.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 Asger & Juergen
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "frontends/LyXKeySymFactory.h"
#include "QLyXKeySym.h"

View File

@ -1,13 +1,19 @@
/**
* \file LyXScreenFactory.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "frontends/LyXScreenFactory.h"
#include "QWorkArea.h"

View File

@ -59,6 +59,7 @@ libqt2_la_SOURCES = \
iconpalette.h \
iconpalette.C \
io_callback.h \
io_callback.C \
lengthcombo.C \
lengthcombo.h \
lyx_gui.C \

View File

@ -1,9 +1,11 @@
/**
* \file Menubar_pimpl.C
* Copyright 1999-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 Lars Gullik Bjønnes, larsbj@lyx.org
* \author Lars Gullik Bjønnes
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,27 +1,26 @@
// -*- C++ -*-
/**
* \file Menubar_pimpl.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 Lars Gullik Bjønnes <larsbj@lyx.org>
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Lars Gullik Bjønnes
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef MENUBAR_PIMPL_H
#define MENUBAR_PIMPL_H
#include <map>
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
#include "frontends/Menubar.h"
#include "LString.h"
#include <map>
class LyXView;
class QtView;

View File

@ -1,13 +1,19 @@
/**
* \file QAbout.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/lstrings.h"
#include "Lsstream.h"
#include "debug.h"

View File

@ -1,19 +1,23 @@
// -*- C++ -*-
/**
* \file QAbout.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef FORMABOUT_H
#define FORMABOUT_H
#include "Qt2Base.h"
#include "boost/utility.hpp"
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class LyXView;
class QAboutDialog;
class ControlAboutlyx;

View File

@ -1,11 +1,19 @@
/**
* \file QAboutDialog.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QAboutDialog.h"
QAboutDialog::QAboutDialog(QWidget * parent, const char * name, bool modal, WFlags fl)

View File

@ -1,13 +1,21 @@
// -*- C++ -*-
/**
* \file QAboutDialog.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QABOUTDIALOG_H
#define QABOUTDIALOG_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QAboutDialogBase.h"
class QAboutDialog : public QAboutDialogBase

View File

@ -1,13 +1,19 @@
/**
* \file QBibitem.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/lstrings.h"
#include "ControlBibitem.h"

View File

@ -1,15 +1,21 @@
// -*- C++ -*-
/**
* \file QBibitem.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QBIBITEM_H
#define QBIBITEM_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlBibitem;

View File

@ -1,13 +1,19 @@
/**
* \file QBibitemDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlBibitem.h"
#include <qpushbutton.h>

View File

@ -1,14 +1,21 @@
// -*- C++ -*-
/**
* \file QBibitemDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QBIBITEMDIALOG_H
#define QBIBITEMDIALOG_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QBibitemDialogBase.h"
class QBibitem;

View File

@ -1,13 +1,19 @@
/**
* \file QBibtex.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/lstrings.h"
#include "ControlBibtex.h"

View File

@ -1,15 +1,21 @@
// -*- C++ -*-
/**
* \file QBibtex.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QBIBTEX_H
#define QBIBTEX_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlBibtex;

View File

@ -1,12 +1,19 @@
/**
* \file QBibtexDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "ControlBibtex.h"
#include "gettext.h"

View File

@ -1,22 +1,28 @@
// -*- C++ -*-
/**
* \file QBibtexDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QBIBTEXDIALOG_H
#define QBIBTEXDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QBibtexDialogBase.h"
class QBibtex;
class QBibtexDialog : public QBibtexDialogBase
{ Q_OBJECT
{
Q_OBJECT
public:
QBibtexDialog(QBibtex * form);
@ -29,7 +35,6 @@ protected slots:
virtual void styleChanged(const QString &);
virtual void databaseChanged();
protected:
virtual void closeEvent(QCloseEvent * e);

View File

@ -1,27 +1,34 @@
/**
* \file QCharacter.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 Edwin Leuven, leuven@fee.uva.nl
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Edwin Leuven
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#include <vector>
#include "gettext.h"
#include "support/lstrings.h"
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlCharacter.h"
#include "QCharacterDialog.h"
#include "QCharacter.h"
#include "Qt2BC.h"
#include "gettext.h"
#include "support/lstrings.h"
#include <qcombobox.h>
#include <qcheckbox.h>
#include <qpushbutton.h>
#include <vector>
using namespace frnt;
using std::vector;

View File

@ -1,24 +1,29 @@
// -*- C++ -*-
/**
* \file QCharacter.h
* 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 Edwin Leuven, leuven@fee.uva.nl
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Edwin Leuven
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCHARACTER_H
#define QCHARACTER_H
#include <config.h>
#include <vector>
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
#include "Qt2Base.h"
#include "controllers/character.h"
#include "controllers/frnt_lang.h"
#include "LString.h"
#include <vector>
class ControlCharacter;
class QCharacterDialog;

View File

@ -1,11 +1,19 @@
/**
* \file QCharacterDialog.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 Edwin Leuven, leuven@fee.uva.nl
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QCharacterDialog.h"
#include <qcombobox.h>

View File

@ -1,16 +1,21 @@
// -*- C++ -*-
/**
* \file QCharacterDialog.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 Edwin Leuven
* \author John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCHARACTERDIALOG_H
#define QCHARACTERDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "QCharacter.h"
#include "ui/QCharacterDialogBase.h"

View File

@ -1,10 +1,12 @@
/**
* \file QCitation.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Angus Leeming
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,11 +1,13 @@
// -*- C++ -*-
/**
* \file QCitation.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Angus Leeming
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCITATION_H
@ -15,10 +17,9 @@
#pragma interface
#endif
class QListBox;
#include "Qt2Base.h"
class QListBox;
class ControlCitation;
class QCitationDialog;

View File

@ -1,13 +1,19 @@
/**
* \file QCitationDialog.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <algorithm>
#include "gettext.h"
@ -23,6 +29,8 @@
#include <qpushbutton.h>
#include "QCitationDialog.h"
#include "QCitation.h"
#include "support/lstrings.h"
using std::vector;
using std::find;
@ -242,6 +250,12 @@ void QCitationDialog::slotNextClicked()
}
void QCitationDialog::changed_adaptor()
{
form_->changed();
}
void QCitationDialog::doFind(biblio::Direction dir)
{
biblio::InfoMap const & theMap = form_->controller().bibkeysInfo();

View File

@ -1,21 +1,26 @@
// -*- C++ -*-
/**
* \file QCitationDialog.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCITATIONDIALOG_H
#define QCITATIONDIALOG_H
#include <config.h>
#include "support/lstrings.h"
#ifdef __GNUG__
#pragma interface
#endif
#include "QCitation.h"
#include "ui/QCitationDialogBase.h"
#include "controllers/biblio.h"
class QCitation;
class QCitationDialog : public QCitationDialogBase
{ Q_OBJECT
@ -33,10 +38,7 @@ protected slots:
virtual void slotDownClicked();
virtual void slotPreviousClicked();
virtual void slotNextClicked();
virtual void changed_adaptor() {
form_->changed();
}
virtual void changed_adaptor();
private:
void doFind(biblio::Direction dir);

View File

@ -1,13 +1,19 @@
/**
* \file QCommandBuffer.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/filetools.h"
#include "controllers/ControlCommandBuffer.h"
#include "gettext.h"
@ -22,6 +28,8 @@
#include <qtoolbutton.h>
#include <qpixmap.h>
#include "LString.h"
using std::vector;
namespace {

View File

@ -1,19 +1,22 @@
// -*- C++ -*-
/**
* \file QCommandBuffer.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCOMMANDBUFFER_H
#define QCOMMANDBUFFER_H
#include <config.h>
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
#include <qtoolbar.h>
#include <qtimer.h>
class QtView;
class QCommandEdit;
@ -52,7 +55,6 @@ private:
/// command widget
QCommandEdit * edit_;
};
#endif // QCOMMANDBUFFER_H

View File

@ -1,13 +1,19 @@
/**
* \file QCommandEdit.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include "QCommandEdit.h"
#ifdef __GNUG__
#pragma implementation
#endif
QCommandEdit::QCommandEdit(QWidget * parent)
: QLineEdit(parent)
{

View File

@ -1,14 +1,21 @@
// -*- C++ -*-
/**
* \file QCommandEdit.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCOMMANDEDIT_H
#define QCOMMANDEDIT_H
#ifdef __GNUG__
#pragma interface
#endif
#include <qlineedit.h>
class QCommandEdit : public QLineEdit {

View File

@ -1,9 +1,11 @@
/**
* \file QContentPane.C
* Copyright 1995-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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QContentPane.h
* Copyright 1995-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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QCONTENTPANE_H
@ -14,14 +16,10 @@
#pragma interface
#endif
#include <config.h>
#include <utility>
#include <boost/smart_ptr.hpp>
#include <qwidget.h>
#include <qscrollbar.h>
#include <qpixmap.h>
#include <qevent.h>
#include <qpixmap.h>
#include <boost/scoped_ptr.hpp>
class QWorkArea;

View File

@ -1,13 +1,19 @@
/**
* \file QDelimiterDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/filetools.h"
#include "gettext.h"
#include "debug.h"

View File

@ -1,19 +1,23 @@
// -*- C++ -*-
/**
* \file QDelimiterDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QDELIMITERDIALOG_H
#define QDELIMITERDIALOG_H
#include <config.h>
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QDelimiterDialogBase.h"
#include "LString.h"
class QMath;
class IconPalette;

View File

@ -1,9 +1,11 @@
/**
* \file QDocument.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,28 +1,28 @@
// -*- C++ -*-
/**
* \file QDocument.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QDOCUMENT_H
#define QDOCUMENT_H
#include "Qt2Base.h"
#include "Qt2BC.h"
#include "QtLyXView.h"
#include <boost/scoped_ptr.hpp>
#include <vector>
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
#include "Qt2BC.h"
//#include "QtLyXView.h"
#include <boost/scoped_ptr.hpp>
class ControlDocument;
class QDocumentDialog;
class BufferParams;

View File

@ -1,13 +1,19 @@
/**
* \file QDocumentDialog.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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QDocumentDialog.h"
#include "Dialogs.h"
#include "QDocument.h"

View File

@ -1,14 +1,21 @@
// -*- C++ -*-
/**
* \file QDocumentDialog.h
* 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 Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QDOCUMENTDIALOG_H
#define QDOCUMENTDIALOG_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QDocumentDialogBase.h"
class QDocument;

View File

@ -1,13 +1,19 @@
/**
* \file QERT.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlERT.h"
#include "gettext.h"

View File

@ -1,15 +1,21 @@
// -*- C++ -*-
/**
* \file QERT.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QERT_H
#define QERT_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlERT;

View File

@ -1,13 +1,19 @@
/**
* \file QERTDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QERT.h"
#include "QERTDialog.h"
@ -29,3 +35,9 @@ void QERTDialog::closeEvent(QCloseEvent * e)
form_->slotWMHide();
e->accept();
}
void QERTDialog::change_adaptor()
{
form_->changed();
}

View File

@ -1,19 +1,25 @@
// -*- C++ -*-
/**
* \file QERTDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QERTDIALOG_H
#define QERTDIALOG_H
#include <config.h>
#include "QERT.h"
#include "ui/QERTDialogBase.h"
#ifdef __GNUG__
#pragma interface
#endif
class QERT;
class QERTDialog : public QERTDialogBase
{ Q_OBJECT
@ -21,9 +27,7 @@ public:
QERTDialog(QERT * form);
protected slots:
void change_adaptor() {
form_->changed();
}
virtual void change_adaptor();
protected:
virtual void closeEvent(QCloseEvent * e);

View File

@ -1,13 +1,19 @@
/**
* \file QError.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlError.h"
#include "gettext.h"

View File

@ -1,15 +1,21 @@
// -*- C++ -*-
/**
* \file QError.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QERROR_H
#define QERROR_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlError;

View File

@ -1,13 +1,19 @@
/**
* \file QErrorDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QError.h"
#include <qwidget.h>

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QErrorDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QERRORDIALOG_H
#define QERRORDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QErrorDialogBase.h"

View File

@ -1,12 +1,19 @@
/**
* \file QExternal.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "ControlExternal.h"

View File

@ -1,15 +1,21 @@
// -*- C++ -*-
/**
* \file QExternal.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QEXTERNAL_H
#define QEXTERNAL_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlExternal;

View File

@ -1,13 +1,19 @@
/**
* \file QExternalDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "gettext.h"
#include "ControlExternal.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QExternalDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QEXTERNALDIALOG_H
#define QEXTERNALDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QExternalDialogBase.h"

View File

@ -1,9 +1,11 @@
/**
* \file QFloat.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 Edwin Leuven <leuven@fee.uva.nl>
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QFloat.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 Edwin Leuven <leuven@fee.uva.nl>
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#ifndef QFLOAT_H

View File

@ -1,13 +1,19 @@
/**
* \file QFloatDialog.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 Edwin Leuven <leuven@fee.uva.nl>
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "LString.h"
#include "ControlFloat.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QFloatDialog.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 Edwin Leuven <leuven@fee.uva.nl>
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#ifndef QFLOATDIALOG_H
#define QFLOATDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QFloatDialogBase.h"

View File

@ -1,10 +1,12 @@
/**
* \file QGraphics.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 John Levon <moz@compsoc.man.ac.uk>
* \author Edwin Leuven <leuven@fee.uva.nl>
* \author John Levon
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QGraphics.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QGRAPHICS_H

View File

@ -1,12 +1,19 @@
/**
* \file QGraphicsDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "ControlGraphics.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QGraphicsDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QGRAPHICSDIALOG_H
#define QGRAPHICSDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QGraphicsDialogBase.h"

View File

@ -1,9 +1,11 @@
/**
* \file QInclude.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QInclude.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QINCLUDE_H

View File

@ -1,12 +1,19 @@
/**
* \file QIncludeDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "ControlInclude.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QIncludeDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QINCLUDEDIALOG_H
#define QINCLUDEDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QIncludeDialogBase.h"

View File

@ -1,13 +1,19 @@
/**
* \file QIndex.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "ControlIndex.h"
#include "gettext.h"

View File

@ -1,16 +1,22 @@
// -*- C++ -*-
/**
* \file QIndex.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
* \author John Levon
* \author Kalle Dalheimer
*
* Full author contact details are available in file CREDITS
*/
#ifndef QINDEX_H
#define QINDEX_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
class ControlIndex;

View File

@ -1,13 +1,19 @@
/**
* \file QIndexDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "gettext.h"
#include "QIndex.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QIndexDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QINDEXDIALOG_H
#define QINDEXDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QIndexDialogBase.h"

View File

@ -1,10 +1,12 @@
/*
/**
* \file QLImage.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 Angus Leeming, a.leeming@ic.ac.uk
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Angus Leeming
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,11 +1,13 @@
// -*- C++ -*-
/**
* \file QLImage.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 Angus Leeming, a.leeming@ic.ac.uk
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Angus Leeming
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLIMAGE_H

View File

@ -1,9 +1,11 @@
/**
* \file QLPainter.C
* Copyright 1998-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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QLPainter.h
* Copyright 1995-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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLPAINTER_H
@ -14,13 +16,12 @@
#pragma interface
#endif
#include <config.h>
#include <boost/smart_ptr.hpp>
#include "Painter.h"
#include "LString.h"
#include "LColor.h"
#include <boost/scoped_ptr.hpp>
class LyXFont;
class QWorkArea;
class QPainter;

View File

@ -1,11 +1,19 @@
/**
* \file QLPopupMenu.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 John Levon <levon@movementarian.org>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "MenuBackend.h"
#include "lyxfunc.h"
#include "debug.h"

View File

@ -1,14 +1,21 @@
// -*- C++ -*-
/**
* \file QLPopupMenu.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 John Levon <levon@movementarian.org>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLPOPUPMENU_H
#define QLPOPUPMENU_H
#ifdef __GNUG__
#pragma interface
#endif
#include "Menubar_pimpl.h"
#include <qpopupmenu.h>

View File

@ -1,9 +1,11 @@
/**
* \file QLog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QLog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLOG_H

View File

@ -1,12 +1,19 @@
/**
* \file QLogDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "LyXView.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QLogDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLOGDIALOG_H
#define QLOGDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QLogDialogBase.h"

View File

@ -1,10 +1,12 @@
/**
* \file QLyXKeySym.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 Asger and Juergen
* \author John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,11 +1,13 @@
// -*- C++ -*-
/**
* \file QLyXKeySym.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 Asger and Juergen
* \author John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QLYXKEYSYM_H

View File

@ -1,9 +1,11 @@
/**
* \file QMath.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,23 +1,23 @@
// -*- C++ -*-
/**
* \file QMath.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QMATH_H
#define QMATH_H
#include <config.h>
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
#include "LString.h"
class QMathDialog;
class QMath

View File

@ -1,13 +1,19 @@
/**
* \file QMathDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "support/filetools.h"
#include "gettext.h"
#include "debug.h"

View File

@ -1,19 +1,23 @@
// -*- C++ -*-
/**
* \file QMathDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QMATHDIALOG_H
#define QMATHDIALOG_H
#include <config.h>
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QMathDialogBase.h"
#include "LString.h"
class QMath;
class IconPalette;

View File

@ -1,9 +1,11 @@
/**
* \file QMinipage.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QMinipage.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QMINIPAGE_H

View File

@ -1,12 +1,19 @@
/**
* \file QMinipageDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <vector>
#include "ControlMinipage.h"

View File

@ -1,15 +1,20 @@
// -*- C++ -*-
/**
* \file QMinipageDialog.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QMINIPAGEDIALOG_H
#define QMINIPAGEDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "ui/QMinipageDialogBase.h"

View File

@ -1,9 +1,11 @@
/**
* \file QParagraph.C
* Copyright 2000-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 Edwin Leuven <leuven@fee.uva.nl>
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,18 +1,24 @@
// -*- C++ -*-
/**
* \file QParagraph.h
* Copyright 2001 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 Edwin Leuven <leuven@fee.uva.nl>
* \author John Levon <moz@compsoc.man.ac.uk>
* \author Edwin Leuven
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QPARAGRAPH_H
#define QPARAGRAPH_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "Qt2Base.h"
#include <vector>
class ControlParagraph;
class QParagraphDialog;

View File

@ -1,13 +1,23 @@
/**
* \file QParagraphDialog.C
* Copyright 2001 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 John Levon, moz@compsoc.man.ac.uk
* \author Edwin Leuven, leuven@fee.uva.nl
* \author John Levon
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "QParagraphDialog.h"
#include "QParagraph.h"
#include <qlineedit.h>
#include <qcombobox.h>

View File

@ -1,22 +1,25 @@
// -*- C++ -*-
/**
* \file QParagraphDialog.h
* Copyright 2001 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 John Levon, moz@compsoc.man.ac.uk
* \author Edwin Leuven, leuven@fee.uva.nl
* \author John Levon
* \author Edwin Leuven
*
* Full author contact details are available in file CREDITS
*/
#ifndef QPARAGRAPHDIALOG_H
#define QPARAGRAPHDIALOG_H
#include <config.h>
#ifdef __GNUG__
#pragma interface
#endif
#include "QParagraph.h"
#include "ui/QParagraphDialogBase.h"
#include <qevent.h>
class QParagraph;
class QParagraphDialog : public QParagraphDialogBase
{

View File

@ -1,9 +1,11 @@
/**
* \file QPreamble.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>

View File

@ -1,10 +1,12 @@
// -*- C++ -*-
/**
* \file QPreamble.h
* 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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#ifndef QPREAMBLE_H

View File

@ -1,12 +1,19 @@
/**
* \file QPreambleDialog.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 John Levon <moz@compsoc.man.ac.uk>
* \author John Levon
*
* Full author contact details are available in file CREDITS
*/
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include <fstream>
#include "support/lyxlib.h"

Some files were not shown because too many files have changed in this diff Show More