mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
Cleanup headers
This commit is contained in:
parent
2ae77d5091
commit
43b16548b4
@ -28,6 +28,7 @@
|
||||
#include "LaTeXPackages.h"
|
||||
#include "Layout.h"
|
||||
#include "LyXRC.h"
|
||||
#include "OutputParams.h"
|
||||
#include "TextClass.h"
|
||||
#include "TexRow.h"
|
||||
#include "texstream.h"
|
||||
|
@ -13,12 +13,12 @@
|
||||
#ifndef LATEXFEATURES_H
|
||||
#define LATEXFEATURES_H
|
||||
|
||||
#include "OutputParams.h"
|
||||
#include "support/strfwd.h"
|
||||
|
||||
#include <set>
|
||||
#include <list>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
|
||||
namespace lyx {
|
||||
@ -27,6 +27,8 @@ class Buffer;
|
||||
class BufferParams;
|
||||
class InsetLayout;
|
||||
class Language;
|
||||
class otexstream;
|
||||
class OutputParams;
|
||||
struct TexString;
|
||||
|
||||
/** The packages and commands that a buffer needs. This class
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include "Language.h"
|
||||
#include "LaTeXFonts.h"
|
||||
#include "LayoutFile.h"
|
||||
#include "LyX.h"
|
||||
#include "LyXAction.h"
|
||||
#include "LyXRC.h"
|
||||
#include "ModuleList.h"
|
||||
|
@ -14,13 +14,14 @@
|
||||
#ifndef BASE_CLIPBOARD_H
|
||||
#define BASE_CLIPBOARD_H
|
||||
|
||||
#include "support/FileName.h"
|
||||
#include "support/strfwd.h"
|
||||
|
||||
namespace lyx {
|
||||
|
||||
class Cursor;
|
||||
|
||||
namespace support { class FileName; }
|
||||
|
||||
namespace frontend {
|
||||
|
||||
/**
|
||||
|
@ -15,7 +15,6 @@
|
||||
|
||||
#include "InsetParamsWidget.h"
|
||||
#include "ui_BoxUi.h"
|
||||
#include "Font.h"
|
||||
|
||||
namespace lyx {
|
||||
namespace frontend {
|
||||
|
@ -15,10 +15,6 @@
|
||||
|
||||
#include "qt_helpers.h"
|
||||
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/lyxtime.h"
|
||||
|
||||
#include "Author.h"
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
@ -27,7 +23,6 @@
|
||||
#include "Cursor.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "LyXRC.h"
|
||||
#include "Text.h"
|
||||
|
||||
#include <QDateTime>
|
||||
#include <QTextBrowser>
|
||||
|
@ -17,8 +17,6 @@
|
||||
#include "ui_ChangesUi.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/docstring.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
namespace frontend {
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "Paragraph.h"
|
||||
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
|
||||
#include <QAbstractItemModel>
|
||||
#include <QPushButton>
|
||||
|
@ -12,6 +12,7 @@
|
||||
|
||||
#include "GuiCounter.h"
|
||||
|
||||
#include "GuiView.h"
|
||||
#include "qt_helpers.h"
|
||||
|
||||
#include "Buffer.h"
|
||||
@ -22,6 +23,7 @@
|
||||
#include "insets/InsetCommandParams.h"
|
||||
|
||||
#include "support/convert.h"
|
||||
#include "support/debug.h"
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
|
||||
|
@ -14,13 +14,14 @@
|
||||
|
||||
#include "InsetParamsWidget.h"
|
||||
#include "ui_CounterUi.h"
|
||||
#include "GuiView.h"
|
||||
|
||||
namespace lyx {
|
||||
class InsetCommandParams;
|
||||
|
||||
namespace frontend {
|
||||
|
||||
class GuiView;
|
||||
|
||||
class GuiCounter : public InsetParamsWidget, public Ui::CounterUi
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include "insets/InsetWrap.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/gettext.h"
|
||||
#include "support/lstrings.h"
|
||||
|
||||
#include "frontends/Application.h"
|
||||
|
@ -16,8 +16,6 @@
|
||||
|
||||
#include "InsetCode.h"
|
||||
|
||||
#include "OutputParams.h"
|
||||
|
||||
#include "support/docstring.h"
|
||||
|
||||
#include <string>
|
||||
@ -27,8 +25,9 @@
|
||||
|
||||
namespace lyx {
|
||||
|
||||
class Lexer;
|
||||
class Buffer;
|
||||
class Lexer;
|
||||
class OutputParams;
|
||||
|
||||
class ParamInfo {
|
||||
public:
|
||||
|
@ -13,17 +13,11 @@
|
||||
|
||||
#include "InsetERT.h"
|
||||
|
||||
#include "Buffer.h"
|
||||
#include "BufferParams.h"
|
||||
#include "BufferView.h"
|
||||
#include "Cursor.h"
|
||||
#include "DispatchResult.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "FuncStatus.h"
|
||||
#include "Language.h"
|
||||
#include "Layout.h"
|
||||
#include "Lexer.h"
|
||||
#include "LyXAction.h"
|
||||
#include "OutputParams.h"
|
||||
#include "xml.h"
|
||||
#include "ParagraphParameters.h"
|
||||
|
@ -13,8 +13,6 @@
|
||||
#include "InsetHyperlink.h"
|
||||
|
||||
#include "Buffer.h"
|
||||
#include "DispatchResult.h"
|
||||
#include "Encoding.h"
|
||||
#include "Format.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "FuncStatus.h"
|
||||
@ -25,6 +23,7 @@
|
||||
#include "xml.h"
|
||||
#include "texstream.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/docstream.h"
|
||||
#include "support/FileName.h"
|
||||
#include "support/filetools.h"
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "BufferParams.h"
|
||||
#include "BufferView.h"
|
||||
#include "Cursor.h"
|
||||
#include "Dimension.h"
|
||||
#include "Lexer.h"
|
||||
#include "MetricsInfo.h"
|
||||
#include "OutputParams.h"
|
||||
|
@ -14,13 +14,12 @@
|
||||
|
||||
#include "InsetText.h"
|
||||
|
||||
#include "Dimension.h"
|
||||
|
||||
#include "support/unique_ptr.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
||||
class Dimension;
|
||||
class RenderPreview;
|
||||
|
||||
namespace graphics {
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include "Paragraph.h"
|
||||
#include "ParagraphParameters.h"
|
||||
#include "ParIterator.h"
|
||||
#include "Row.h"
|
||||
#include "TexRow.h"
|
||||
#include "texstream.h"
|
||||
#include "TextClass.h"
|
||||
|
@ -10,8 +10,6 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "support/lassert.h"
|
||||
|
||||
#include "InsetMathXArrow.h"
|
||||
|
||||
#include "MathData.h"
|
||||
@ -21,6 +19,8 @@
|
||||
#include "LaTeXFeatures.h"
|
||||
#include "MetricsInfo.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/lassert.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "BufferView.h"
|
||||
#include "CoordCache.h"
|
||||
#include "Cursor.h"
|
||||
#include "Dimension.h"
|
||||
|
||||
#include "mathed/InsetMathUnknown.h"
|
||||
|
||||
|
@ -15,8 +15,6 @@
|
||||
#ifndef MATH_DATA_H
|
||||
#define MATH_DATA_H
|
||||
|
||||
#include "Dimension.h"
|
||||
|
||||
#include "MathAtom.h"
|
||||
#include "MathRow.h"
|
||||
|
||||
@ -33,6 +31,7 @@ namespace lyx {
|
||||
class Buffer;
|
||||
class BufferView;
|
||||
class Cursor;
|
||||
class Dimension;
|
||||
class DocIterator;
|
||||
class LaTeXFeatures;
|
||||
class ReplaceData;
|
||||
|
@ -25,7 +25,6 @@
|
||||
namespace lyx {
|
||||
|
||||
class BufferView;
|
||||
class Dimension;
|
||||
class MathData;
|
||||
class MetricsInfo;
|
||||
class PainterInfo;
|
||||
|
@ -18,6 +18,8 @@
|
||||
|
||||
#include "TexRow.h"
|
||||
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/docstring.h"
|
||||
#include "support/textutils.h"
|
||||
|
||||
|
@ -19,7 +19,6 @@
|
||||
|
||||
#include "support/Changer.h"
|
||||
#include "support/strfwd.h"
|
||||
#include "support/unique_ptr.h"
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "mathed/InsetMath.h"
|
||||
#include "insets/InsetNote.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/lassert.h"
|
||||
#include "support/textutils.h"
|
||||
|
||||
|
@ -12,12 +12,12 @@
|
||||
#ifndef LYX_MAGIC_H
|
||||
#define LYX_MAGIC_H
|
||||
|
||||
#include "support/debug.h"
|
||||
|
||||
namespace lyx {
|
||||
|
||||
#ifdef HAVE_MAGIC_H
|
||||
|
||||
#include "support/debug.h"
|
||||
|
||||
#include <magic.h>
|
||||
|
||||
class Magic {
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include <config.h>
|
||||
|
||||
#include "../support/debug.h"
|
||||
#include "../support/FileName.h"
|
||||
#include "../support/filetools.h"
|
||||
#include "../Format.h"
|
||||
|
@ -10,8 +10,9 @@
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "Encoding.h"
|
||||
#include "Parser.h"
|
||||
|
||||
#include "Encoding.h"
|
||||
#include "support/lstrings.h"
|
||||
#include "support/textutils.h"
|
||||
|
||||
|
@ -18,7 +18,6 @@
|
||||
|
||||
#include "Encoding.h"
|
||||
#include "LayoutFile.h"
|
||||
#include "Layout.h"
|
||||
#include "Lexer.h"
|
||||
#include "TextClass.h"
|
||||
#include "version.h"
|
||||
|
@ -26,6 +26,7 @@
|
||||
|
||||
#include "support/ConsoleApplication.h"
|
||||
#include "support/convert.h"
|
||||
#include "support/debug.h"
|
||||
#include "support/ExceptionMessage.h"
|
||||
#include "support/filetools.h"
|
||||
#include "support/lassert.h"
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "TextClass.h"
|
||||
|
||||
#include "support/convert.h"
|
||||
#include "support/debug.h"
|
||||
#include "support/docstream.h"
|
||||
#include "support/lassert.h"
|
||||
#include "support/lstrings.h"
|
||||
|
Loading…
Reference in New Issue
Block a user