Finish the task of removing all cruft from the header files.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7703 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-09-07 21:25:37 +00:00
parent 00b15bed1f
commit 0705dae8a3
126 changed files with 212 additions and 130 deletions

View File

@ -48,7 +48,6 @@
#include "frontends/Alert.h"
#include "frontends/Dialogs.h"
#include "frontends/FileDialog.h"
#include "frontends/LyXKeySym.h"
#include "frontends/LyXView.h"
#include "frontends/LyXScreenFactory.h"
#include "frontends/screen.h"

View File

@ -1,3 +1,15 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* LaTeXFeatures.h: remove #include "support/types.h".
* ToolbarBackend.h: remove #include <algorithm>.
* changes.h: remove #include <ctime>.
* debug.h: remove #include <iosfwd>.
* graph.h: remove #include "support/std_string.h".
* lyx_main.h: remove #include <csignal>.
* lyxlex_pimpl.h: remove #include <fstream>.
* sgml.h: remove #include <algorithm>, <utility>.
* toc.h: remove #include "support/std_ostream.h". Add #include <iosfwd>.
2003-09-07 Angus Leeming <leeming@lyx.org>
* vspace.[Ch] (length): returns a const & to a LyXGlueLength.

View File

@ -13,7 +13,6 @@
#ifndef LATEXFEATURES_H
#define LATEXFEATURES_H
#include "support/types.h"
#include "support/std_string.h"

View File

@ -14,7 +14,6 @@
#define TOOLBAR_BACKEND_H
#include <vector>
#include <algorithm>
#include "support/std_string.h"

View File

@ -19,7 +19,7 @@
#include <vector>
#include <iosfwd>
#include <ctime>
struct Change {
/// the type of change

View File

@ -14,6 +14,7 @@
#include "graph.h"
#include "support/std_string.h"
#include <vector>
class Buffer;

View File

@ -13,7 +13,6 @@
#ifndef LYXDEBUG_H
#define LYXDEBUG_H
#include <iosfwd>
#include "support/std_string.h"

View File

@ -14,7 +14,6 @@
#include "support/lstrings.h"
#include <algorithm>
namespace Alert {

View File

@ -1,3 +1,10 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* Alert.h: remove #include <algorithm>.
* Dialogs.h: remove #include <boost/scoped_ptr.hpp>.
* WorkArea.h: remove #include <boost/signals/signal3.hpp>, <utility>.
* guiapi.h: remove #include "support/std_string.h".
2003-09-06 Angus Leeming <leeming@lyx.org>
* LyXKeySym.h: remove LyXKeySymPtr typedef.

View File

@ -11,14 +11,12 @@
#ifndef DIALOGS_H
#define DIALOGS_H
#include "support/std_string.h"
#include <boost/utility.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/signals/signal0.hpp>
#include <boost/signals/signal1.hpp>
#include "support/std_string.h"
class Dialog;
class InsetBase;
@ -33,7 +31,7 @@ class Dialogs : boost::noncopyable
public:
///
Dialogs(LyXView &);
/// Define an empty d-tor out-of-line to keep boost::scoped_ptr happy.
///
~Dialogs();
/** Redraw all visible dialogs because, for example, the GUI colours

View File

@ -13,15 +13,14 @@
#ifndef LYXVIEW_H
#define LYXVIEW_H
#include "support/std_string.h"
#include <boost/utility.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/signals/trackable.hpp>
#include <boost/signals/signal0.hpp>
#include "support/std_string.h"
class Buffer;
class Toolbar;
class Intl;

View File

@ -19,10 +19,8 @@
#include <boost/signals/signal0.hpp>
#include <boost/signals/signal1.hpp>
#include <boost/signals/signal2.hpp>
#include <boost/signals/signal3.hpp>
#include "support/std_string.h"
#include <utility>
class Painter;
class FuncRequest;

View File

@ -15,7 +15,6 @@
#include "ButtonPolicies.h"
#include "support/std_string.h"
#include <boost/scoped_ptr.hpp>

View File

@ -1,3 +1,22 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* ButtonController.h:
* helper_funcs.h: remove #include "support/std_string.h".
* ControlBranch.h:
* ControlNote.h: remove #include "debug.h".
* ControlDocument.h: remove #include <vector>, "support/std_string.h".
* ControlErrorList.h:
* ControlThesaurus.h: remove #include <vector>.
* ControlPrefs.h: remove #include "funcrequest.h", <utility>.
* GUI.h: remove #include "BCView.h".
* tex_helpers.h: remove #include <utility>.
2003-09-05 Martin Vermeer <martin.vermeer@hut.fi>
* biblio.C:

View File

@ -15,7 +15,6 @@
#include "Dialog.h"
#include "debug.h"
class InsetBranchParams;

View File

@ -12,13 +12,10 @@
#ifndef CONTROLDOCUMENT_H
#define CONTROLDOCUMENT_H
#include <boost/scoped_ptr.hpp>
#include "ControlDialog_impl.h"
#include "support/std_string.h"
#include "bufferparams.h"
#include <vector>
#include <boost/scoped_ptr.hpp>
class Language;

View File

@ -14,7 +14,6 @@
#include "errorlist.h"
#include "Dialog.h"
#include <vector>

View File

@ -12,14 +12,14 @@
#ifndef CONTROLFORKS_H
#define CONTROLFORKS_H
#include "ControlDialog_impl.h"
#include "support/std_string.h"
#include <boost/signals/connection.hpp>
#include <sys/types.h>
#include "support/std_string.h"
#include <vector>
#include <sys/types.h>
/** A controller for dialogs that display the child processes forked by LyX.
Also provides an interface enabling them to be killed prematurely.

View File

@ -14,7 +14,6 @@
#include "Dialog.h"
#include "debug.h"
#include <vector>
class InsetNoteParams;

View File

@ -19,6 +19,8 @@
#include "converter.h"
#include "format.h"
#include "gettext.h"
#include "funcrequest.h"
#include "lfuns.h"
#include "frontends/Dialogs.h"
#include "frontends/LyXView.h"

View File

@ -15,11 +15,9 @@
#include "ControlDialog_impl.h"
#include "support/std_string.h"
#include "funcrequest.h"
#include "lyxrc.h"
#include "LColor.h"
#include <utility>
class Converters;
class Formats;

View File

@ -15,7 +15,6 @@
#include "Dialog.h"
#include "Thesaurus.h"
#include <vector>
/** A controller for Thesaurus dialogs.
*/

View File

@ -12,8 +12,6 @@
#ifndef GUI_H
#define GUI_H
#include "BCView.h"
#include <boost/utility.hpp>
class LyXView;

View File

@ -12,11 +12,9 @@
#ifndef HELPERFUNCS_H
#define HELPERFUNCS_H
#include "support/std_string.h"
#include <utility> // pair
#include <vector> // pair
#include <utility>
#include <vector>
/** Launch a file dialog and return the chosen file.
filename: a suggested filename.

View File

@ -14,7 +14,6 @@
#include "support/std_string.h"
#include <utility>
#include <vector>

View File

@ -13,7 +13,6 @@
#define GUIAPI_H
#include "support/std_string.h"
class Dialogs;

View File

@ -14,8 +14,6 @@
#include "ui/BulletsModuleBase.h"
#include "support/std_string.h"
#include <vector>
#include "Bullet.h"
#include <boost/array.hpp>

View File

@ -1,3 +1,21 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* BulletsModule.h: remove #include "support/std_string.h", <vector>.
* QBrowseBox.h: remove #include <qwidget.h>.
* QCharacter.h: remove #include "support/std_string.h".
* QCharacterDialog.h: remove #include <qevent.h>, <qcheckbox.h>,
<qcombobox.h>.
* QContentPane.h: remove #include <qevent.h>.
* QDialogView.h: remove #include <qfont.h>.
* QDocumentDialog.h: remove #include "ui/BulletsModuleBase.h".
* QLPopupMenu.h: remove #include <map>.
* QLToolbar.h: remove #include <vector>.
* QWorkArea.h: remove #include <qwidget.h>, <qpixmap.h>.
* Qt2Base.h: remove #include <qfont.h>.
* QtLyXView.h: remove #include "frontends/LyXView.h".
* emptytable.h: remove #include <qpainter.h>.
* qsetborder.h: remove #include <qcolor.h>.
2003-09-06 Angus Leeming <leeming@lyx.org>
* QParagraph.C: add Spacing.h and vspace.h includes.

View File

@ -14,8 +14,6 @@
#include "qgridview.h"
#include <qwidget.h>
class QString;
class QPainter;

View File

@ -19,6 +19,8 @@
#include "qt_helpers.h"
#include <qpushbutton.h>
#include <qcheckbox.h>
#include <qcombobox.h>
using namespace frnt;

View File

@ -18,8 +18,6 @@
#include "controllers/character.h"
#include "controllers/frnt_lang.h"
#include "support/std_string.h"
#include <vector>

View File

@ -13,6 +13,8 @@
#include "QCharacterDialog.h"
#include <qcheckbox.h>
#include <qcombobox.h>
#include <qpushbutton.h>

View File

@ -17,9 +17,6 @@
#include "QCharacter.h"
#include "ui/QCharacterDialogBase.h"
#include <qevent.h>
#include <qcheckbox.h>
#include <qcombobox.h>
class LyXFont;

View File

@ -12,9 +12,7 @@
#ifndef QCONTENTPANE_H
#define QCONTENTPANE_H
#include <qwidget.h>
#include <qevent.h>
#include <qpixmap.h>
#include <boost/scoped_ptr.hpp>

View File

@ -12,14 +12,12 @@
#ifndef QDIALOGVIEW_H
#define QDIALOGVIEW_H
#include "Dialog.h"
#include <boost/scoped_ptr.hpp>
#include <qfont.h>
#include <qapplication.h>
#include <qdialog.h>
#include <qobject.h>
#include <qapplication.h>
class Qt2BC;

View File

@ -14,9 +14,7 @@
#include "ui/QDocumentDialogBase.h"
#include "support/std_string.h"
#include "ui/BulletsModuleBase.h"
#include "BulletsModule.h"
#include "ui/TextLayoutModuleBase.h"
@ -29,6 +27,8 @@
#include "ui/MarginsModuleBase.h"
#include "ui/PreambleModuleBase.h"
#include "support/std_string.h"
class QDocument;
class FloatPlacement;

View File

@ -17,7 +17,6 @@
#include "support/std_string.h"
#include <map>
class MenuBackend;
class MenuItem;

View File

@ -19,12 +19,13 @@
#include "qt_helpers.h"
#include <boost/scoped_ptr.hpp>
#include <map>
#include <vector>
#include <qobject.h>
#include <qtoolbutton.h>
class QtView;
class QToolBar;
class QLComboBox;

View File

@ -13,14 +13,14 @@
#ifndef QWORKAREA_H
#define QWORKAREA_H
#include "WorkArea.h"
#include "QLPainter.h"
#include "QContentPane.h"
#include <qwidget.h>
#include <qscrollbar.h>
#include <qpixmap.h>
class QPixmap;
class QWidget;
/**

View File

@ -16,10 +16,9 @@
#include "ViewBase.h"
#include <boost/scoped_ptr.hpp>
#include <qfont.h>
#include <qapplication.h>
#include <qdialog.h>
#include <qobject.h>
#include <qapplication.h>
class Qt2BC;

View File

@ -15,4 +15,3 @@
#undef emit
#undef signals
#include "frontends/LyXView.h"

View File

@ -12,6 +12,7 @@
#include "emptytable.h"
#include <qpainter.h>
/**
* A simple widget for a quick "preview" in TabularCreateDialog

View File

@ -12,8 +12,6 @@
#ifndef EMPTYTABLE_H
#define EMPTYTABLE_H
#include <qpainter.h>
#include "qttableview.h"
/**

View File

@ -14,11 +14,11 @@
#include <qwidget.h>
#include <qpixmap.h>
#include <qcolor.h>
class QColor;
class QMouseEvent;
class QResizeEvent;
class QPaintEvent;
class QResizeEvent;
class QSetBorder : public QWidget
{

View File

@ -1,3 +1,17 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* FormAboutlyx.h: remove #include <boost/scoped_ptr.hpp>.
* FormBase.h: remove #include "support/std_string.h".
* FormCharacter.h: remove #include "lyxfont.h", "LColor.h", "character.h".
* FormDialogView.h: remove #include "support/std_string.h",
<boost/scoped_ptr.hpp>.
* FormMathsBitmap.h: remove <boost/shared_ptr.hpp>.
* FormPreferences.h: remove #include "Color.h", <utility>.
* Tooltips.h: remove #include <boost/utility.hpp>.
* XFormsMenubar.h: remove #include <map>.
* xfont_loader.h: remove #include "support/std_string.h".
* xfont_metrics.h: remove #include "support/std_string.h", "font_metrics.h"
2003-09-06 Angus Leeming <leeming@lyx.org>
* FormParagraph.C: add Spacing.h and vspace.h includes.

View File

@ -16,7 +16,6 @@
#include "FormDialogView.h"
#include <boost/scoped_ptr.hpp>
class ControlAboutlyx;
struct FD_aboutlyx;

View File

@ -20,7 +20,6 @@
#include "ButtonPolicies.h"
#include "forms_fwd.h"
#include "support/std_string.h"
#include <boost/scoped_ptr.hpp>
#include <X11/Xlib.h> // for Pixmap

View File

@ -13,12 +13,8 @@
#ifndef FORM_CHARACTER_H
#define FORM_CHARACTER_H
#include "FormDialogView.h"
#include "lyxfont.h" // for LyXFont enums
#include "ControlCharacter.h" // for ControlCharacter enum
#include "LColor.h" // for LColor enum
#include "character.h" // for FONT_STATE enum
struct FD_character;

View File

@ -20,8 +20,6 @@
#include "ButtonPolicies.h"
#include "forms_fwd.h"
#include "support/std_string.h"
#include <boost/scoped_ptr.hpp>
#include <X11/Xlib.h> // for Pixmap
class xformsBC;

View File

@ -14,12 +14,9 @@
#ifndef FORM_MATHSBITMAP_H
#define FORM_MATHSBITMAP_H
#include "FormDialogView.h"
#include <boost/shared_ptr.hpp>
#include <vector>
struct BitmapStore
{
BitmapStore(int nt_in, int nx_in, int ny_in, int bw_in, int bh_in,

View File

@ -13,21 +13,19 @@
#ifndef FORMPREFERENCES_H
#define FORMPREFERENCES_H
#include "FormBase.h"
#include "Color.h" // NamedColor
#include "xforms_helpers.h" // XformColor
#include <boost/scoped_ptr.hpp>
#include "lyx_forms.h"
#include <utility> // pair
#include <boost/scoped_ptr.hpp>
class ControlPrefs;
class Dialogs;
class LyXRC;
class LyXView;
class NamedColor;
class RGBColor;
class FormColorpicker;

View File

@ -18,10 +18,8 @@
#ifndef TOOLTIPS_H
#define TOOLTIPS_H
#include "support/std_string.h"
#include <boost/utility.hpp>
#include <boost/signals/signal0.hpp>
#include <boost/signals/trackable.hpp>
@ -29,6 +27,7 @@
#include <map>
class Tooltips : boost::noncopyable, public boost::signals::trackable {
public:
///

View File

@ -12,7 +12,6 @@
#ifndef XFORMSMENUBAR_H
#define XFORMSMENUBAR_H
#include "support/std_string.h"
#include "frontends/Menubar.h"
#include <boost/shared_ptr.hpp>
@ -20,8 +19,8 @@
#include "forms_fwd.h"
#include <X11/X.h> // Window
#include "support/std_string.h"
#include <vector>
#include <map>
class LyXView;
class XFormsView;

View File

@ -18,6 +18,8 @@
#include "xformsImage.h"
#include "XWorkArea.h"
#include "font_metrics.h"
#include "encoding.h"
#include "language.h"
#include "lyxfont.h"

View File

@ -15,7 +15,6 @@
#include <X11/Xlib.h>
#include "lyxfont.h"
#include "support/std_string.h"
class FontInfo;

View File

@ -12,6 +12,7 @@
#include <config.h>
#include "xfont_metrics.h"
#include "font_metrics.h"
#include "xfont_loader.h"
#include "encoding.h"

View File

@ -14,9 +14,7 @@
#define XFONT_METRICS_H
#include "support/std_string.h"
#include "font_metrics.h"
#include <X11/Xlib.h>

View File

@ -12,11 +12,10 @@
#ifndef GRAPH_H
#define GRAPH_H
#include "support/std_string.h"
#include <queue>
#include <vector>
class Graph {
public:
Graph() : numedges_(0) {};

View File

@ -1,3 +1,8 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* GraphicsTypes.h:
* Previews.h: remove #include "support/std_string.h".
2003-09-06 Angus Leeming <leeming@lyx.org>
* PreviewedInset.C: add #include "insets/inset.h"

View File

@ -29,12 +29,13 @@
#define GRAPHICSCACHEITEM_H
#include "GraphicsTypes.h"
#include "support/std_string.h"
#include <boost/utility.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/signals/signal0.hpp>
#include "support/std_string.h"
class InsetGraphics;
namespace lyx {

View File

@ -13,6 +13,8 @@
#include "graphics/GraphicsTypes.h"
#include "support/translator.h"
#include "support/std_string.h"
namespace lyx {
namespace graphics {

View File

@ -15,7 +15,6 @@
#ifndef GRAPHICSTYPES_H
#define GRAPHICSTYPES_H
#include "support/std_string.h"
namespace lyx {
namespace graphics {

View File

@ -15,7 +15,6 @@
#ifndef PREVIEWS_H
#define PREVIEWS_H
#include "support/std_string.h"
#include <boost/utility.hpp>
#include <boost/scoped_ptr.hpp>

View File

@ -1,3 +1,8 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* insetspace.h:
* insetspecialchar.h: remove #include "support/std_string.h".
2003-09-06 Angus Leeming <leeming@lyx.org>
* renderers.C: add #include "insets/inset.h"

View File

@ -17,7 +17,6 @@
#include "inset.h"
#include "support/std_string.h"
struct LaTeXFeatures;

View File

@ -16,7 +16,6 @@
#include "inset.h"
#include "support/std_string.h"
struct LaTeXFeatures;

View File

@ -50,6 +50,7 @@
#include <boost/bind.hpp>
#include <iostream>
#include <csignal>
using namespace lyx::support;

View File

@ -14,12 +14,10 @@
#ifndef LYX_MAIN_H
#define LYX_MAIN_H
#include "support/std_string.h"
#include <boost/scoped_ptr.hpp>
#include <boost/utility.hpp>
#include <csignal>
#include "support/std_string.h"
class ErrorItem;

View File

@ -18,7 +18,6 @@
#include <boost/utility.hpp>
#include <fstream>
#include <stack>
#include <vector>

View File

@ -1,3 +1,21 @@
2003-09-07 Angus Leeming <leeming@lyx.org>
* formulabase.h: remove #includes "dimension.h", <boost/weak_ptr.hpp>,
<iosfwd>.
* math_decorationinset.h: remove #include "support/std_string.h".
* math_envinset.h:
* math_fboxinset.h: remove #include "metricsinfo.h".
* math_kerninset.h: remove #include "math_nestinset.h".
* math_macro.h: remove #include "math_macroarg.h".
* math_nestinset.h: remove #include "math_data.h".
Ensuing changes to .C files.
2003-09-05 Angus Leeming <leeming@lyx.org>
* math_binaryopinset.[Ch]:

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "command_inset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "funcrequest.h"
#include "support/std_sstream.h"

View File

@ -15,10 +15,7 @@
#define INSET_FORMULABASE_H
#include "insets/updatableinset.h"
#include "dimension.h"
#include <boost/weak_ptr.hpp>
#include <iosfwd>
class Buffer;
class BufferView;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_amsarrayinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_support.h"

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_arrayinset.h"
#include "math_data.h"
#include "math_parser.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"

View File

@ -12,7 +12,6 @@
#ifndef MATH_BINARYOPINSET_H
#define MATH_BINARYOPINSET_H
#include "math_nestinset.h"
#include "math_nestinset.h"
#include "metricsinfo.h"

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_binominset.h"
#include "math_data.h"
#include "math_support.h"
#include "math_mathmlstream.h"

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_boxinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "support/std_ostream.h"

View File

@ -11,8 +11,9 @@
#include <config.h>
#include "math_braceinset.h"
#include "math_support.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_support.h"
#include "support/std_ostream.h"
using std::max;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_casesinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_support.h"
#include "LaTeXFeatures.h"

View File

@ -11,8 +11,9 @@
#include <config.h>
#include "math_commentinset.h"
#include "math_support.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_support.h"
#include "support/std_ostream.h"
using std::auto_ptr;

View File

@ -12,6 +12,7 @@
#include <config.h>
#include "math_decorationinset.h"
#include "math_data.h"
#include "math_support.h"
#include "math_parser.h"
#include "math_mathmlstream.h"

View File

@ -14,7 +14,6 @@
#define MATH_DECORATIONINSET_H
#include "math_nestinset.h"
#include "support/std_string.h"
class latexkeys;

View File

@ -12,9 +12,10 @@
#include <config.h>
#include "math_deliminset.h"
#include "math_support.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_support.h"
using std::max;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_diffinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "debug.h"

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_envinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "support/std_ostream.h"

View File

@ -13,7 +13,6 @@
#define MATH_ENVINSET_H
#include "math_nestinset.h"
#include "metricsinfo.h"
/// Environtments á la \begin{something}...\end{something}

View File

@ -12,9 +12,10 @@
#ifndef MATH_ERTINSET_H
#define MATH_ERTINSET_H
#include "math_data.h"
#include "math_textinset.h"
// implements support for \parbox
class MathErtInset : public MathTextInset {

View File

@ -11,9 +11,10 @@
#include <config.h>
#include "math_exfuncinset.h"
#include "math_support.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_support.h"
using std::auto_ptr;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_exintinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_symbolinset.h"

View File

@ -18,6 +18,7 @@
#include "math_arrayinset.h"
#include "math_charinset.h"
#include "math_deliminset.h"
#include "math_data.h"
#include "math_diffinset.h"
#include "math_exfuncinset.h"
#include "math_exintinset.h"

View File

@ -28,6 +28,7 @@
#include "math_kerninset.h"
#include "math_lefteqninset.h"
#include "math_macro.h"
#include "math_macroarg.h"
#include "math_macrotable.h"
#include "math_macrotemplate.h"
#include "math_makeboxinset.h"

View File

@ -11,9 +11,10 @@
#include <config.h>
#include "math_fboxinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_parser.h"
#include "math_streamstr.h"
#include "frontends/Painter.h"
using std::auto_ptr;

View File

@ -13,7 +13,6 @@
#define MATH_FBOXINSET_H
#include "math_nestinset.h"
#include "metricsinfo.h"
class latexkeys;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_fontinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_parser.h"
#include "LaTeXFeatures.h"

View File

@ -11,9 +11,10 @@
#include <config.h>
#include "math_fontoldinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_parser.h"
#include "math_streamstr.h"
#include "support/std_ostream.h"
using std::auto_ptr;

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "math_fracbase.h"
#include "math_data.h"
MathFracbaseInset::MathFracbaseInset()

View File

@ -12,9 +12,10 @@
#include <config.h>
#include "math_fracinset.h"
#include "frontends/Painter.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "textpainter.h"
#include "frontends/Painter.h"
using std::max;

View File

@ -11,8 +11,9 @@
#include <config.h>
#include "math_frameboxinset.h"
#include "math_support.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_support.h"
#include "frontends/Painter.h"
using std::auto_ptr;

View File

@ -11,11 +11,12 @@
#include <config.h>
#include "math_gridinset.h"
#include "math_data.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "debug.h"
#include "funcrequest.h"
#include "frontends/Painter.h"
#include "debug.h"
#include "support/std_sstream.h"

View File

@ -14,6 +14,7 @@
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_support.h"
#include "dimension.h"
using std::auto_ptr;

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