/usr/include/klfapp/klflatexedit.h is in libklatexformula3-dev 3.2.8-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | /***************************************************************************
* file klflatexedit.h
* This file is part of the KLatexFormula Project.
* Copyright (C) 2011 by Philippe Faist
* philippe.faist at bluewin.ch
* *
* 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. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/* $Id: klflatexedit.h 603 2011-02-26 23:14:55Z phfaist $ */
#ifndef KLFLATEXEDIT_H
#define KLFLATEXEDIT_H
#include <klfdefs.h>
#include <QObject>
#include <QTextEdit>
#include <QEvent>
#include <QContextMenuEvent>
#include <QMimeData>
#include <QSyntaxHighlighter>
#include <QTextCharFormat>
class KLFLatexSyntaxHighlighter;
class KLFMainWin;
// ------------------------------------------------
/** \brief A text edit field that edits latex code.
*
* Implementation of a QTextEdit to type latex code.
*/
class KLF_EXPORT KLFLatexEdit : public QTextEdit
{
Q_OBJECT
Q_PROPERTY(int heightHintLines READ heightHintLines WRITE setHeightHintLines) ;
public:
KLFLatexEdit(QWidget *mainwin);
virtual ~KLFLatexEdit();
KLFLatexSyntaxHighlighter *syntaxHighlighter() { return mSyntaxHighlighter; }
/** This function may be used to give a pointer to a KLFMainWin that we will call
* to open data when we get a paste/drop. If they can open the data, then we consider
* the data pasted. Otherwise, rely on the QTextEdit built-in functionality.
*
* This pointer may also be NULL, in which case we will only rely on QTextEdit built-in
* functionality. */
void setMainWinDataOpener(KLFMainWin *mainwin) { mMainWin = mainwin; }
/** See sizeHint(). This gets the preferred height of this widget in number of text lines,
* as set by setHeightHintLints(). */
inline int heightHintLines() const { return pHeightHintLines; }
/** The size hint of the widget. If \c heightHintLines() is set to \c -1, this directly
* calles the superclass function. Otherwise this returns the size in pixels this widget
* wants to have, given the value of heightHintLines() number of lines in the current font.
*/
virtual QSize sizeHint() const;
signals:
/** This signal is emitted just before the context menu is shown. If someone wants
* to add entries into the context menu, then connect to this signal, and append
* new actions to the \c actionList.
*/
void insertContextMenuActions(const QPoint& pos, QList<QAction*> *actionList);
public slots:
/** Sets the current latex code to \c latex.
*
* \note this function, unlike QTextEdit::setPlainText(), preserves
* undo history.
*/
void setLatex(const QString& latex);
void clearLatex();
/** See sizeHint(). This sets the preferred height of this widget in number of text lines. */
void setHeightHintLines(int lines);
/** Inserts a delimiter \c delim, and brings the cursor \c charsBack characters
* back. Eg. you can insert \c "\mathrm{}" and bring the cursor 1 space back. */
void insertDelimiter(const QString& delim, int charsBack = 1);
protected:
virtual void contextMenuEvent(QContextMenuEvent *event);
virtual bool canInsertFromMimeData(const QMimeData *source) const;
virtual void insertFromMimeData(const QMimeData *source);
private slots:
void slotInsertFromActionSender();
private:
KLFLatexSyntaxHighlighter *mSyntaxHighlighter;
/** This is used to open data if needed */
KLFMainWin *mMainWin;
int pHeightHintLines;
};
// ----------------------------------------------
class KLF_EXPORT KLFLatexSyntaxHighlighter : public QSyntaxHighlighter
{
Q_OBJECT
public:
KLFLatexSyntaxHighlighter(QTextEdit *textedit, QObject *parent);
virtual ~KLFLatexSyntaxHighlighter();
void setCaretPos(int position);
virtual void highlightBlock(const QString& text);
enum { Enabled = 0x01,
HighlightParensOnly = 0x02,
HighlightLonelyParen = 0x04 };
signals:
void newSymbolTyped(const QString& symbolName);
public slots:
void refreshAll();
/** This clears for example the list of already typed symbols. */
void resetEditing();
private:
QTextEdit *_textedit;
int _caretpos;
enum Format { FNormal = 0, FKeyWord, FComment, FParenMatch, FParenMismatch, FLonelyParen };
struct FormatRule {
FormatRule(int ps = -1, int l = 0, Format f = FNormal, bool needsfocus = false)
: pos(ps), len(l), format(f), onlyIfFocus(needsfocus) { }
int pos;
int len;
int end() const { return pos + len; }
Format format;
bool onlyIfFocus;
};
struct ParenItem {
ParenItem(int ps = -1, bool h = false, char c = 0, bool l = false)
: pos(ps), highlight(h), ch(c), left(l) { }
int pos;
bool highlight;
char ch;
bool left; //!< if it's \left( instead of (
};
QList<FormatRule> _rulestoapply;
void parseEverything();
QTextCharFormat charfmtForFormat(Format f);
/** symbols that have already been typed and that newSymbolTyped() should not
* be emitted for any more. */
QStringList pTypedSymbols;
};
#endif
|