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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
|
/***************************************************************************
* copyright : (C) 2003-2007 by Pascal Brachet *
* http://www.xm1math.net/texmaker/ *
* 2008-2009 by Benito van der Zander *
* http://texstudio.sourceforge.net
* *
* 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 TEXSTUDIO_H
#define TEXSTUDIO_H
#include "mostQtHeaders.h"
#include "bibtexparser.h"
#include "buildmanager.h"
#include "bookmarks.h"
#include "codesnippet.h"
#include "configmanager.h"
#include "cursorhistory.h"
#include "latexlog.h"
#include "latexdocument.h"
#include "latexeditorview.h"
#include "latexcompleter.h"
#include "findGlobalDialog.h"
#include "symbolgridwidget.h"
#include "xmltagslistwidget.h"
#include "spellerdialog.h"
#include "textanalysis.h"
#include "toolwidgets.h"
#include "txstabwidget.h"
#include "editors.h"
#include "searchresultwidget.h"
#include "unicodeinsertion.h"
#include "tablemanipulation.h"
#include "PDFDocument.h"
#include <QSplashScreen>
#include "session.h"
#include "sessionlist.h"
#include "qformatfactory.h"
#include "qlanguagefactory.h"
#include "qlinemarksinfocenter.h"
#include "latexstyleparser.h"
#include "kpathseaParser.h"
#include "diffoperations.h"
#include <QProgressDialog>
/*!
* \file texstudio.h
* \brief Definition for Mainwindow
*/
typedef QHash<QString, int> SymbolList;
typedef QSet<QString> StringSet;
enum SVNSTATUS {
SVN_Unknown = 0,
SVN_Unmanaged,
SVN_Modified,
SVN_Locked,
SVN_CheckedIn,
SVN_InConflict
};
class UserMenuDialog;
class GrammarCheck;
class FileSelector;
class LatexReference;
Q_DECLARE_METATYPE(QSet<QString>)
class Texstudio : public QMainWindow
{
Q_OBJECT
public:
Texstudio(QWidget *parent = 0, Qt::WindowFlags flags = 0, QSplashScreen *splash = 0);
~Texstudio();
Q_INVOKABLE QString getCurrentFileName(); ///< returns the absolute file name of the current file or "" if none is opene
Q_INVOKABLE QString getAbsoluteFilePath(const QString &relName, const QString &extension = ""); ///< treats the path relative to the compiled .tex file
Q_INVOKABLE QString getRelativeFileName(const QString &file, QString basepath, bool keepSuffix = false); ///< provide function for scripts
QByteArray windowstate; ///< qt window state, used for state-restoring
bool tobemaximized, tobefullscreen;
public slots:
LatexEditorView *load(const QString &f , bool asProject = false, bool hidden = false, bool recheck = true, bool dontAsk = false);
void executeCommandLine(const QStringList &args, bool realCmdLine);
void hideSplash(); ///< hide splash screen
void startupCompleted();
void onOtherInstanceMessage(const QString &); ///< For messages for the single instance
void fuzzCursorHistory();
void fuzzBackForward();
protected:
//these are just wrappers around configManager so we don't have to type so much (todo??? move them to configmanager.h and use a singleton design???)
Q_INVOKABLE inline QMenu *newManagedMenu(const QString &id, const QString &text) { return configManager.newManagedMenu(id, text); }
Q_INVOKABLE inline QMenu *newManagedMenu(QMenu *menu, const QString &id, const QString &text) { return configManager.newManagedMenu(menu, id, text); }
Q_INVOKABLE QAction *newManagedAction(QWidget *menu, const QString &id, const QString &text, const char *slotName = 0, const QKeySequence &shortCut = 0, const QString &iconFile = "", const QList<QVariant> &args = QList<QVariant>());
Q_INVOKABLE QAction *newManagedAction(QWidget *menu, const QString &id, const QString &text, const char *slotName, const QList<QKeySequence> &shortCuts, const QString &iconFile = "", const QList<QVariant> &args = QList<QVariant>());
Q_INVOKABLE QAction *newManagedEditorAction(QWidget *menu, const QString &id, const QString &text, const char *slotName = 0, const QKeySequence &shortCut = 0, const QString &iconFile = "", const QList<QVariant> &args = QList<QVariant>());
Q_INVOKABLE QAction *newManagedEditorAction(QWidget *menu, const QString &id, const QString &text, const char *slotName, const QList<QKeySequence> &shortCuts, const QString &iconFile = "", const QList<QVariant> &args = QList<QVariant>());
Q_INVOKABLE inline QAction *newManagedAction(QWidget *menu, const QString &id, QAction *act) { return configManager.newManagedAction(menu, id, act); }
Q_INVOKABLE inline QMenu *getManagedMenu(const QString &id) { return configManager.getManagedMenu(id); }
Q_INVOKABLE inline QAction *getManagedAction(const QString &id) { return configManager.getManagedAction(id); }
Q_INVOKABLE inline QList<QAction *> getManagedActions(const QStringList &ids, const QString &commonPrefix = "") { return configManager.getManagedActions(ids, commonPrefix); }
Q_INVOKABLE QAction *insertManagedAction(QAction *before, const QString &id, const QString &text, const char *slotName = 0, const QKeySequence &shortCut = 0, const QString &iconFile = "");
SymbolGridWidget *addSymbolGrid(const QString &SymbolList, const QString &iconName, const QString &text);
void addTagList(const QString &id, const QString &iconName, const QString &text, const QString &tagFile);
QVariantMap *MapForSymbols;
private slots:
void updateToolBarMenu(const QString &menuName);
void showTestProgress(const QString &message);
private:
void executeTests(const QStringList &args); ///< execute self-tests. Only works for debug-builds.
void generateAddtionalTranslations();
void setupMenus();
void setupDockWidgets();
void setupToolBars();
void createStatusBar();
bool activateEditorForFile(QString f, bool checkTemporaryNames = false, bool setFocus = true);
bool saveAllFilesForClosing(); ///< checks for unsaved files and asks the user if they should be saved
bool saveFilesForClosing(const QList<LatexEditorView *> &editorList); ///< checks for unsaved files and asks the user if they should be saved
void closeAllFiles();
bool canCloseNow(bool saveSettings = true); ///< asks the user and close all files, and prepares to exit txs
void closeEvent(QCloseEvent *e);
void updateUserMacros(bool updateMenu = true);
void updateEmphasizedRegion(QDocumentCursor c, int sid);
QSplashScreen *splashscreen; ///< only used during startup
QFormatScheme *m_formats, *m_formatsOldDefault;
QLanguageFactory *m_languages;
LatexCompleter *completer;
LatexReference *latexReference;
QPointer<UnicodeInsertion> unicodeInsertionDialog;
//gui
Editors *editors;
QSplitter *mainHSplitter;
QSplitter *centralVSplitter;
QFrame *centralFrame;
QToolBar *centralToolBar;
CustomWidgetList *leftPanel;
SymbolGridWidget *MostUsedSymbolWidget, *FavoriteSymbolWidget;
QString hiddenLeftPanelWidgets;
QTreeView *structureTreeView;
LatexParser latexParser;
public:
LatexDocuments documents;
private:
OutputViewWidget *outputView; ///< contains output widgets (over OutputLayout)
//menu
QActionGroup *bibtexEntryActions;
QActionGroup *biblatexEntryActions;
QActionGroup *bibTypeActions;
QActionGroup *highlightLanguageActions;
QActionGroup *actgroupRootDocMode;
QAction *actRootDocAutomatic;
QAction *actRootDocExplicit;
QAction *actRootDocSetExplicit;
//toolbars
QAction *actSave, *actUndo, *actRedo;
QLabel *statusLabelMode, *statusLabelProcess, *statusLabelLanguageTool;
QToolButton *statusTbLanguage;
QToolButton *statusTbEncoding;
QActionGroup *spellLanguageActions;
CursorHistory *cursorHistory;
//settings
ConfigManager configManager;
public:
BuildManager buildManager;
private:
QStringList struct_level;
qreal pdfSplitterRel;
SpellerManager spellerManager;
SafeThread grammarCheckThread;
GrammarCheck *grammarCheck;
Bookmarks *bookmarks;
SessionList *recentSessionList;
//dialogs
TextAnalysisDialog *textAnalysisDlg;
SpellerDialog *spellDlg;
//tools
usercodelist symbolMostused;
QStringList symbolFavorites;
Q_INVOKABLE LatexEditorView *currentEditorView() const;
Q_INVOKABLE QEditor *currentEditor() const;
void configureNewEditorView(LatexEditorView *edit);
void configureNewEditorViewEnd(LatexEditorView *edit, bool asMaster = false, bool hidden = false);
LatexEditorView *getEditorViewFromFileName(const QString &fileName, bool checkTemporaryNames = false);
QAction *fullscreenModeAction;
int runningPDFCommands, runningPDFAsyncCommands;
void updateUserToolMenu();
void linkToEditorSlot(QAction *act, const char *slot, const QList<QVariant> &args);
private slots:
void relayToEditorSlot();
void relayToOwnSlot();
void autoRunScripts();
void runScripts(int trigger);
void runScriptsInList(int trigger, const QList<Macro> &scripts);
protected slots:
void fileNew(QString fileName = "");
void fileNewFromTemplate();
void fileMakeTemplate();
void fileOpen();
void fileRestoreSession(bool showProgress = true, bool warnMissing = true);
void fileSave(const bool saveSilently = false);
void fileSaveAll();
void fileSaveAll(bool alsoUnnamedFiles, bool alwaysCurrentFile);
void fileSaveAs(const QString &fileName = "") { fileSaveAs(fileName, false); }
private slots:
void fileSaveAs(const QString &fileName, const bool saveSilently);
void fileNewInternal(QString fileName = "");
protected slots:
void fileUtilCopyMove(bool move); ///< call dialog to copy/move files
void fileUtilDelete(); ///< call dialog to remove file
void fileUtilRevert(); ///< reload file from disc, undoing all changes in memory
void fileUtilPermissions(); ///< call dialog to set file permissions
void fileUtilCopyFileName(); ///< copy file name into clipboard
void fileUtilCopyMasterFileName(); ///< copy file name of master file into clipboard
void fileClose(); ///< close current editor
void fileCloseAll(); ///< close all open editors
void fileExit(); ///< exit application
private:
void centerFileSelector();
protected slots:
void fileOpenRecent();
void fileOpenAllRecent(); ///< open all files in recent file list
void fileRecentList();
void viewDocumentListHidden(); ///< show names of all hidden document (for debug)
void fileDocumentOpenFromChoosen(const QString &doc, int duplicate, int lineNr, int column);
void viewDocumentList();
void viewDocumentOpenFromChoosen(const QString &doc, int duplicate, int lineNr, int column);
void fileOpenFirstNonOpen();
void fileOpenRecentProject();
void fileLoadSession();
void loadSession(const QString &fileName);
void fileSaveSession();
private slots:
void restoreSession(const Session &s, bool showProgress = true, bool warnMissing = true);
Session getCurrentSession();
protected slots:
void MarkCurrentFileAsRecent();
private slots:
void fileCheckin(QString filename = "");
void fileLockPdf(QString filename = "");
void fileCheckinPdf(QString filename = "");
void fileUpdate(QString filename = "");
void fileUpdateCWD(QString filename = "");
void checkinAfterSave(QString filename, int checkIn = 0);
void checkin(QString fn, QString text = "txs auto checkin", bool blocking = false);
bool svnadd(QString fn, int stage = 0);
void svncreateRep(QString fn);
void svnUndo(bool redo = false);
void svnPatch(QEditor *ed, QString diff);
void svnLock(QString fn);
SVNSTATUS svnStatus(QString filename);
void showOldRevisions();
QStringList svnLog();
void changeToRevision(QString rev, QString old_rev = "");
void svnDialogClosed();
void fileDiff();
void fileDiff3();
bool checkSVNConflicted(bool substituteContents = true);
void removeDiffMarkers(bool theirs = false);
void editChangeDiff(QPoint pt);
void jumpNextDiff();
void jumpPrevDiff();
void fileDiffMerge();
void declareConflictResolved();
protected slots:
void openExternalFile();
void openExternalFile(QString name, const QString &defaultExt = "tex", LatexDocument *doc = 0); // signaled by latexViewer to open specific file
void editUndo(); ///< undo changes in text editor
void editRedo(); ///< redo changes in text editor
void editDebugUndoStack(); ///< print undo-stack content into a new text editor window
void editCopy(); ///< copy text
void editPaste(); ///< paste text
void editPasteImage(QImage image);
void editSectionCopy();
void editSectionCopy(int startingLine, int endLine);
void editSectionCut();
void editSectionCut(int startingLine, int endLine);
void editSectionPasteAfter();
void editSectionPasteAfter(int line);
void editSectionPasteBefore();
void editSectionPasteBefore(int line);
void editTextToLowercase();
void editTextToUppercase();
void editTextToTitlecase(bool smart = false);
void editTextToTitlecaseSmart();
void editFind(); ///< open search panel
void editPasteLatex();
void convertToLatex();
void editPasteRef();
void editIndentSection();
void editUnIndentSection();
void editHardLineBreak();
void editHardLineBreakRepeat();
void editDeleteLine(); ///< delete current line in current text editor
void editDeleteToEndOfLine();
void editDeleteFromStartOfLine();
void editMoveLineUp();
void editMoveLineDown();
void editDuplicateLine();
void editAlignMirrors();
void editEraseWordCmdEnv();
void editGotoDefinition(QDocumentCursor c = QDocumentCursor());
void editSpell();
void editThesaurus(int line = -1, int col = -1);
void editChangeLineEnding();
void editSetupEncoding();
void editInsertUnicode(); ///< open dialog to insert a unicode character
void editInsertRefToNextLabel(const QString &refCmd = "\\ref", bool backward = false);
void editInsertRefToPrevLabel(const QString &refCmd = "\\ref");
void editFindGlobal();
void runSearch(SearchQuery *query);
void findLabelUsages();
void findLabelUsages(LatexDocument *doc, const QString &labelText);
SearchResultWidget *searchResultWidget();
void findWordRepetions();
void findNextWordRepetion();
void StructureContextMenu(const QPoint &point);
void structureContextMenuCloseDocument();
void structureContextMenuSwitchMasterDocument();
void structureContextMenuOpenAllRelatedDocuments();
void structureContextMenuCloseAllRelatedDocuments();
void structureContextMenuExpandSubitems();
void structureContextMenuCollapseSubitems();
void structureContextMenuExpandAllDocuments();
void structureContextMenuCollapseAllDocuments();
void structureContextMenuShowInGraphicalShell();
void symbolGridContextMenu(QWidget *widget, const QPoint &point);
void mostUsedSymbolsTriggered(bool direct = false);
void symbolAddFavorite();
void symbolRemoveFavorite();
void symbolRemoveAllFavorites();
void addDocToLoad(QString filename);
void moveCursorTodlh();
private slots:
void readSettings(bool reread = false); ///< read configured/default settings from ini
void saveSettings(const QString &configName = ""); ///< save all setting to ini
void restoreDefaultSettings(); ///< restore default settings, removing all changed values
protected slots:
void showMarkTooltipForLogMessage(QList<int> errors);
void newDocumentLineEnding();
void updateCaption();
void updateMasterDocumentCaption();
void updateUndoRedoStatus();
void currentEditorChanged();
void editorTabMoved(int from, int to);
void editorAboutToChangeByTabClick(LatexEditorView *edFrom, LatexEditorView *edTo);
void getExpandedStructureEntries(const QModelIndex &index, QSet<QString> &expandedEntryTags, QString baseTag = QString());
void expandStructureEntries(const QModelIndex index, const QSet<QString> &expandedEntryTags, QString baseTag = QString());
void updateStructure(bool initial = false, LatexDocument *doc = 0, bool hidden = false);
void showStructure();
void clickedOnStructureEntry(const QModelIndex &index);
void editRemovePlaceHolders();
void editRemoveCurrentPlaceHolder();
void normalCompletion(); ///< activate normal completion
void insertEnvironmentCompletion(); ///< activate environment completion
void insertTextCompletion(); ///< activate normal text completion
void insertTag(const QString &Entity, int dx = 0, int dy = 0);
void insertCitation(const QString &text);
void insertFormula(const QString &formula);
void insertSymbol(QTableWidgetItem *item);
void insertSymbolPressed(QTableWidgetItem *item);
void insertXmlTag(QListWidgetItem *item);
void insertXmlTagFromToolButtonAction();
void callToolButtonAction();
void insertFromAction();
void insertBib();
void closeEnvironment();
void insertBibEntryFromAction();
void insertBibEntry(const QString &id = "");
void setBibTypeFromAction();
void insertUserTag();
void execMacro(const Macro &m, const MacroExecContext &context = MacroExecContext(), bool allowWrite = false);
void runScript(const QString &script, const MacroExecContext &context = MacroExecContext(), bool allowWrite = false);
void editMacros(); ///< open edit macros dialog
void macroDialogAccepted(); ///< macro dialog was closed with ok
void macroDialogRejected(); ///< macro dialog was closed with cancel
void insertRef(const QString &refCmd);
void insertRef();
void insertEqRef();
void insertPageRef();
void createLabelFromAction();
void changeTextCodec();
void updateAvailableLanguages();
void updateLanguageToolStatus();
void editorSpellerChanged(const QString &name);
void changeEditorSpeller();
void insertSpellcheckMagicComment();
void updateStatusBarEncoding();
void addMagicRoot();
void addMagicCoding();
void quickTabular(); ///< start quick tabular wizard
void quickArray(); ///< start quick array wizard
void quickTabbing(); ///< start quick tabbing wizard
void quickLetter(); ///< start quick leter wizard
void quickDocument(); ///< start quick document wizard
void quickBeamer(); ///< start quick beamer wizard
void quickGraphics(const QString &graphicsFile = QString()); ///< start quick graphics wizard
void quickMath(); ///< start quick math wizard
bool checkProgramPermission(const QString &program, const QString &cmdId, LatexDocument *master);
void runInternalPdfViewer(const QFileInfo &master, const QString &options);
void runBibliographyIfNecessary(const QFileInfo &cmd);
void showExtendedSearch();
void changeIconSize(int value);
void changeSecondaryIconSize(int value);
void changeSymbolGridIconSize(int value, bool changePanel = true);
public slots:
void connectSubCommand(ProcessX *p, bool showStdoutLocallyDefault);
private slots:
void runInternalCommand(const QString &cmd, const QFileInfo &master, const QString &options);
void commandLineRequested(const QString &cmdId, QString *result, bool *);
void beginRunningCommand(const QString &commandMain, bool latex, bool pdf, bool async);
void beginRunningSubCommand(ProcessX *p, const QString &commandMain, const QString &subCommand, const RunCommandFlags &flags);
void endRunningSubCommand(ProcessX *p, const QString &commandMain, const QString &subCommand, const RunCommandFlags &flags);
void endRunningCommand(const QString &commandMain, bool latex, bool pdf, bool async);
bool runCommand(const QString &commandline, QString *buffer = 0, QTextCodec *codecForBuffer = 0);
protected slots:
void processNotification(const QString &message);
void openTerminal(); ///< open external terminal
void cleanAll();
void checkShortcutChangeNotification(QAction *act);
void commandFromAction(); ///< calls a command given by sender.data, doesn't wait
void webPublish();
void webPublishSource();
void analyseText();
void analyseTextFormDestroyed();
void generateRandomText();
bool loadLog();
void setLogMarksVisible(bool visible);
void clearLogEntriesInEditors();
void updateLogEntriesInEditors();
void showLog(); ///< show log viewer in bottom panel
void viewLog();
void viewLogOrReRun(LatexCompileResult *result);
bool gotoNearLogEntry(int lt, bool backward, QString notFoundMessage);
bool hasLatexErrors();
bool logExists();
void clearMarkers();
/////
void latexHelp(); ///< open latex help document
void userManualHelp(); ///< open txs user manual
void texdocHelp();
void helpAbout(); ///< open about dialog
void generalOptions(); ///< open config dialog
void setAutomaticRootDetection();
void setExplicitRootDocument(LatexDocument *doc);
void setCurrentDocAsExplicitRoot();
void gotoNextDocument();
void gotoPrevDocument();
void gotoOpenDocument();
void updateOpenDocumentMenu(bool localChange = false);
void onEditorsReordered();
void focusEditor();
void focusViewer();
void enlargeEmbeddedPDFViewer();
void shrinkEmbeddedPDFViewer(bool preserveConfig = false);
void showStatusbar();
void viewCloseSomething();
void setFullScreenMode();
void viewAlignWindows();
void viewSetHighlighting(QAction *act);
void showHighlightingMenu();
void viewCollapseBlock();
void viewExpandBlock();
QObject *newPdfPreviewer(bool embedded = false);
void pdfClosed();
void restoreMacMenuBar();
void masterDocumentChanged(LatexDocument *doc);
void aboutToDeleteDocument(LatexDocument *doc);
void setMostUsedSymbols(QTableWidgetItem *item);
void updateCompleter(LatexEditorView *edView = 0);
void completerNeedsUpdate();
void needUpdatedCompleter();
void outputPageChanged(const QString &id);
void gotoLine(int line, int col = 0, LatexEditorView *edView = 0, QEditor::MoveFlags mflags = QEditor::Navigation, bool setFocus = true); // line is 0 based
bool gotoLine(int line, const QString &fileName); // line is 0 based, absolute file name
void gotoLogEntryEditorOnly(int logEntryNumber);
bool gotoLogEntryAt(int newLineNumber);
bool gotoMark(bool backward, int id = -1);
QList<int> findOccurencesApproximate(QString checkLine, const QString &guessedWord);
void syncFromViewer(const QString &fileName, int lineNr, bool activate, const QString &guessedWord); //0 based, absolute file name, raise window
void goBack();
void goForward();
void setGlobalCursor(const QDocumentCursor &c);
void saveCurrentCursorToHistory();
void saveEditorCursorToHistory(LatexEditorView *edView);
void previewLatex();
void previewAvailable(const QString &imageFile, const PreviewSource &source);
void clearPreview();
void showPreview(const QString &text);
void showPreview(const QDocumentCursor &c);
void showPreview(const QDocumentCursor &c, bool addToList);
QStringList makePreviewHeader(const LatexDocument *rootDoc);
void showPreviewQueue();
void showImgPreview(const QString &fname);
void showImgPreviewFinished(const QPixmap &pm, int page);
void templateEdit(const QString &fname);
void fileReloaded();
void fileInConflict();
void fileAutoReloading(QString fname);
void jumpToSearchResult(QDocument *doc, int lineNumber, const SearchQuery *query);
void cursorPositionChanged();
void syncPDFViewer(QDocumentCursor cur, bool inForeground = true);
// void treeWidgetChanged();
bool generateMirror(bool setCur = false);
void generateBracketInverterMirror();
void jumpToBracket();
void selectBracket();
void findMissingBracket();
void cursorHovered();
void loadProfile();
void saveProfile();
void addRowCB();
void addColumnCB();
void removeColumnCB();
void removeRowCB();
void cutColumnCB();
void pasteColumnCB();
void addHLineCB();
void remHLineCB();
void insertTableTemplate();
void alignTableCols();
void latexModelViewMode();
void moveDocumentToFront();
void moveDocumentToEnd();
void updateTexQNFA();
void updateHighlighting();
void toggleGrammar(int type);
void openInternalDocViewer(QString package, const QString command = "");
private slots:
void importPackage(QString name);
void packageScanCompleted(QString name);
void stopPackageParser();
void packageParserFinished();
void readinAllPackageNames();
void packageListReadCompleted(QSet<QString> packages);
protected:
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
virtual void changeEvent(QEvent *e);
virtual void resizeEvent(QResizeEvent *e);
#if (QT_VERSION > 0x050000) && (defined(Q_OS_MAC))
bool eventFilter(QObject *obj, QEvent *event);
#endif
Qt::MouseButtons mb;
bool mCompleterNeedsUpdate;
int currentLine;
QBrush oldBackground;
bool mDontScrollToItem;
QByteArray stateFullScreen;
QDialog *svndlg;
UserMenuDialog *userMacroDialog;
QComboBox *cmbLog;
QStringList m_columnCutBuffer;
QTimer autosaveTimer;
bool completionBaseCommandsUpdated;
QSet<int> previewQueue;
LatexEditorView *previewQueueOwner;
QString fileFilters;
QString selectedFileFilter;
QPointer<FileSelector> fileSelector;
bool runBibliographyIfNecessaryEntered;
LatexStyleParser *latexStyleParser;
PackageScanner *packageListReader;
QMap<QString, QString> detectedEnvironmentsForHighlighting;
LatexDocument *diffLoadDocHidden(QString f);
void showDiff3(const QString file1, const QString file2);
void restoreBookmarks(LatexEditorView *edView);
bool completerPreview;
bool recheckLabels;
LatexEditorView *editorViewForLabel(LatexDocument *doc, const QString &label);
QSet<QString> latexPackageList, currentPackageList;
findGlobalDialog *findDlg;
QMap<QString, QString> *mReplacementList;
StructureEntry *contextEntry;
QModelIndex contextIndex;
public:
Q_PROPERTY(QString clipboard READ clipboardText WRITE setClipboardText);
Q_INVOKABLE QString clipboardText(const QClipboard::Mode &mode = QClipboard::Clipboard) const;
Q_INVOKABLE void setClipboardText(const QString &text, const QClipboard::Mode &mode = QClipboard::Clipboard);
Q_INVOKABLE int getVersion() const; ///< return current version number of txs (coded in hex,32 bit)
Q_INVOKABLE void simulateKeyPress(const QString &shortcut);
static void recoverFromCrash();
public slots:
void threadCrashed();
void iamalive();
void checkLatexInstall();
void checkCWLs();
void slowOperationStarted();
void slowOperationEnded();
signals:
void infoNewFile(); ///< signal that a new file has been generated. Used for scritps as trigger.
void infoNewFromTemplate(); ///< signal that a new file from template has been generated. Used for scritps as trigger.
void infoLoadFile(const QString &filename); ///< signal that a file has been loaded. Used for scritps as trigger.
void infoFileSaved(const QString &filename,const int checkin = 0); ///< signal that a file has been saved. Used for scritps as trigger.
void infoFileClosed(); ///< signal that a file has been closed. Used for scritps as trigger.
void infoAfterTypeset(); ///< signal that a file has been compiled. Used for scritps as trigger.
void imgPreview(const QString &fn);
};
Q_DECLARE_METATYPE(Texstudio *)
#endif
|