1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/***************************************************************************
* copyright : (C) 2008 by Benito van der Zander *
* http://www.xm1math.net/texmaker/ *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef LATEXEDITORVIEW_H
#define LATEXEDITORVIEW_H
#include "mostQtHeaders.h"
#include "qdocument.h"
#include "syntaxcheck.h"
class QDocumentLineHandle;
class LatexDocument;
class QCodeEdit;
class QEditor;
class QLineMarkPanel;
class QLineNumberPanel;
class QSearchReplacePanel;
class QGotoLinePanel;
class QStatusPanel;
class LatexCompleter;
class SpellerUtility;
class SpellerManager;
class DefaultInputBinding;
class LatexEditorViewConfig;
class LatexEditorView : public QWidget {
Q_OBJECT
public:
LatexEditorView(QWidget *parent, LatexEditorViewConfig* aconfig,LatexDocument *doc=0);
~LatexEditorView();
QCodeEdit *codeeditor;
QEditor *editor;
LatexDocument* document;
// FindWidget *findwidget;
//Functions affecting the editor
void complete(int flags);
bool gotoToLabel(const QString& label);
static QList<QAction *> getBaseActions();
static void setBaseActions(QList<QAction *> baseActions);
void setSpellerManager(SpellerManager* manager);
void setSpeller(const QString &name);
QString getSpeller();
static void setCompleter(LatexCompleter* newCompleter);
static LatexCompleter* getCompleter();
void setBibTeXIds(QSet<QString>* newIds);
QMultiHash<QDocumentLineHandle*, int> lineToLogEntries;
QHash<int, QDocumentLineHandle*> logEntryToLine;
static int hideTooltipWhenLeavingLine;
void setLineMarkToolTip(const QString& tooltip);
void updateSettings();
QPoint getHoverPosistion(){
return m_point;
}
int syntaxErrorFormat;
int deleteFormat,insertFormat,replaceFormat;
void reCheckSyntax(int linenr=0, int count=-1);
void closeCompleter();
QList<QDocumentCursor> autoPreviewCursor;
private:
QAction *lineNumberPanelAction, *lineMarkPanelAction, *lineFoldPanelAction, *lineChangePanelAction,
*statusPanelAction, *searchReplacePanelAction, *gotoLinePanelAction;
QLineMarkPanel* lineMarkPanel;
QLineNumberPanel* lineNumberPanel;
QSearchReplacePanel* searchReplacePanel;
QGotoLinePanel* gotoLinePanel;
QStatusPanel* statusPanel;
QPoint m_point;
int environmentFormat,referencePresentFormat,referenceMissingFormat,referenceMultipleFormat, citationMissingFormat, citationPresentFormat,structureFormat,styleHintFormat,verbatimFormat;
friend class DefaultInputBinding;
friend class SyntaxCheckTest;
static int bookMarkId(int bookmarkNumber);
SpellerManager* spellerManager;
SpellerUtility* speller;
bool useDefaultSpeller;
static LatexCompleter* completer;
QSet<QString>* bibTeXIds;
QList<QPair<QDocumentLineHandle*, int> > changePositions; //line, index
int curChangePos;
int lastSetBookmark; //only looks at 1..3 (mouse range)
LatexEditorViewConfig* config;
void getEnv(int lineNumber,StackEnvironment &env); // get Environment for syntax checking, number of cols is now part of env
SyntaxCheck SynChecker;
private slots:
void requestCitation(); //emits needCitation with selected text
void openExternalFile();
void openPackageDocumentation();
void openPackageDocumentationError();
void emitChangeDiff();
void lineMarkClicked(int line);
void lineMarkToolTip(int line, int mark);
void checkNextLine(QDocumentLineHandle *dlh,bool clearOverlay,int ticket);
void triggeredThesaurus();
void reloadSpeller();
void changeSpellingLanguage(const QLocale &loc);
public slots:
void cleanBib();
void jumpChangePositionBackward();
void jumpChangePositionForward();
void jumpToBookmark(int bookmarkNumber);
void toggleBookmark(int bookmarkNumber);
void foldEverything(bool unFold);
void foldLevel(bool unFold, int level);
void foldBlockAt(bool unFold, int line);
void documentContentChanged(int linenr, int count);
void lineDeleted(QDocumentLineHandle* l);
void spellCheckingReplace();
void spellCheckingAlwaysIgnore();
void spellCheckingListSuggestions();
void mouseHovered(QPoint pos);
bool closeSomething();
void insertHardLineBreaks(int newLength, bool smartScopeSelection, bool joinLines);
void viewActivated();
void clearOverlays();
void updateLtxCommands();
void paste();
void insertMacro(QString macro);
signals:
void lineHandleDeleted(QDocumentLineHandle* l);
void showMarkTooltipForLogMessage(int logMessage);
void needCitation(const QString& id);//request a new citation
void showPreview(const QString& text);
void showPreview(const QDocumentCursor& c);
void openFile(const QString& name);
void thesaurus(int line,int col);
void changeDiff(QPoint pt);
void spellerChanged(const QString &name);
};
class BracketInvertAffector: public PlaceHolder::Affector{
public:
virtual QString affect(const QKeyEvent *e, const QString& base, int ph, int mirror) const;
static BracketInvertAffector* instance();
};
#endif
|