2006-03-28 06:10:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
textdoc.cpp
|
|
|
|
-------------
|
2014-03-15 19:02:44 +01:00
|
|
|
Copyright (C) 2006 by Michael Margraf <michael.margraf@alumni.tu-berlin.de>
|
|
|
|
Copyright (C) 2014 by Guilherme Brondani Torri <guitorri@gmail.com>
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
2014-11-04 12:48:23 +08:00
|
|
|
#include <QAction>
|
2014-11-20 03:13:03 +08:00
|
|
|
#include <QMessageBox>
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include "qucs.h"
|
2009-10-22 18:39:38 +00:00
|
|
|
#include "textdoc.h"
|
|
|
|
#include "syntax.h"
|
2009-10-27 20:36:29 +00:00
|
|
|
#include "components/vhdlfile.h"
|
|
|
|
#include "components/verilogfile.h"
|
|
|
|
#include "components/vafile.h"
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \file textdoc.cpp
|
|
|
|
* \brief Implementation of the TextDoc class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief TextDoc::TextDoc Text document constructor
|
|
|
|
* \param App_ is the parent object
|
|
|
|
* \param Name_ is the initial text document name
|
|
|
|
*/
|
2014-10-28 14:41:34 +08:00
|
|
|
TextDoc::TextDoc(QucsApp *App_, const QString& Name_) : QPlainTextEdit(), QucsDoc(App_, Name_)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2007-03-31 15:45:23 +00:00
|
|
|
TextFont = QFont("Courier New");
|
|
|
|
TextFont.setPointSize(QucsSettings.font.pointSize()-1);
|
|
|
|
TextFont.setStyleHint(QFont::Courier);
|
|
|
|
TextFont.setFixedPitch(true);
|
2014-03-15 19:02:44 +01:00
|
|
|
document()->setDefaultFont(TextFont);
|
2007-03-31 15:45:23 +00:00
|
|
|
|
2008-08-06 19:14:04 +00:00
|
|
|
simulation = true;
|
|
|
|
Library = "";
|
|
|
|
Libraries = "";
|
|
|
|
SetChanged = false;
|
2009-10-27 20:36:29 +00:00
|
|
|
devtype = DEV_DEF;
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
tmpPosX = tmpPosY = 1; // set to 1 to trigger line highlighting
|
2007-03-31 15:45:23 +00:00
|
|
|
Scale = (float)TextFont.pointSize();
|
2013-04-06 19:06:49 +02:00
|
|
|
//TODO (not supported) setUndoDepth(QucsSettings.maxUndo);
|
2009-10-24 15:17:21 +00:00
|
|
|
setLanguage (Name_);
|
2013-04-06 19:06:49 +02:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
viewport()->setFocus();
|
2006-04-10 06:12:35 +00:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
setWordWrapMode(QTextOption::NoWrap);
|
|
|
|
setPaletteBackgroundColor(QucsSettings.BGColor);
|
|
|
|
connect(this, SIGNAL(textChanged()), SLOT(slotSetChanged()));
|
|
|
|
connect(this, SIGNAL(cursorPositionChanged()),
|
|
|
|
SLOT(slotCursorPosChanged()));
|
2006-04-10 06:12:35 +00:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
syntaxHighlight = new SyntaxHighlighter(this);
|
|
|
|
syntaxHighlight->setLanguage(language);
|
|
|
|
syntaxHighlight->setDocument(document());
|
2014-03-15 19:02:44 +01:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
connect(this, SIGNAL(cursorPositionChanged()), this, SLOT(highlightCurrentLine()));
|
|
|
|
highlightCurrentLine();
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::~TextDoc Text document destructor
|
|
|
|
*/
|
2006-03-28 06:10:52 +00:00
|
|
|
TextDoc::~TextDoc()
|
|
|
|
{
|
2006-04-21 05:58:21 +00:00
|
|
|
if(App) {
|
|
|
|
delete syntaxHighlight;
|
2006-04-10 06:12:35 +00:00
|
|
|
App->DocumentTab->removePage(this); // delete tab in TabBar
|
2006-04-21 05:58:21 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::setLanguage(const QString&)
|
|
|
|
* \param FileName Text document file name
|
|
|
|
* Extract the file name suffix and assing a language_type to it.
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::setLanguage (const QString& FileName)
|
|
|
|
{
|
|
|
|
QFileInfo Info (FileName);
|
2011-03-05 13:02:36 +00:00
|
|
|
QString ext = Info.extension (false);
|
|
|
|
if (ext == "vhd" || ext == "vhdl")
|
2009-10-24 15:17:25 +00:00
|
|
|
setLanguage (LANG_VHDL);
|
2011-03-05 13:02:36 +00:00
|
|
|
else if (ext == "v")
|
2009-10-24 15:17:25 +00:00
|
|
|
setLanguage (LANG_VERILOG);
|
2011-03-05 13:02:36 +00:00
|
|
|
else if (ext == "va")
|
2009-10-24 15:17:25 +00:00
|
|
|
setLanguage (LANG_VERILOGA);
|
2011-03-05 13:02:36 +00:00
|
|
|
else if (ext == "m" || ext == "oct")
|
|
|
|
setLanguage (LANG_OCTAVE);
|
2009-10-24 15:17:21 +00:00
|
|
|
else
|
|
|
|
setLanguage (LANG_NONE);
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::setLanguage(int)
|
|
|
|
* \param lang is a language_type
|
|
|
|
* Assing value to text document object language variable
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::setLanguage (int lang)
|
2009-10-22 18:39:38 +00:00
|
|
|
{
|
|
|
|
language = lang;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::saveSettings saves the text document settings .cfg
|
|
|
|
* \return true/false if settings file opened with success
|
|
|
|
*/
|
2009-10-27 20:36:29 +00:00
|
|
|
bool TextDoc::saveSettings (void)
|
2008-08-06 19:14:04 +00:00
|
|
|
{
|
2009-10-27 20:36:29 +00:00
|
|
|
QFile file (DocName + ".cfg");
|
2012-10-31 09:15:06 +01:00
|
|
|
if (!file.open (QIODevice::WriteOnly))
|
2008-08-06 19:14:04 +00:00
|
|
|
return false;
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
QTextStream stream (&file);
|
2009-10-27 20:36:29 +00:00
|
|
|
stream << "Textfile settings file, Qucs " PACKAGE_VERSION "\n"
|
2008-08-06 19:14:04 +00:00
|
|
|
<< "Simulation=" << simulation << "\n"
|
|
|
|
<< "Duration=" << SimTime << "\n"
|
|
|
|
<< "Module=" << (!simulation) << "\n"
|
|
|
|
<< "Library=" << Library << "\n"
|
2009-10-27 20:36:29 +00:00
|
|
|
<< "Libraries=" << Libraries << "\n"
|
|
|
|
<< "ShortDesc=" << ShortDesc << "\n"
|
|
|
|
<< "LongDesc=" << LongDesc << "\n"
|
|
|
|
<< "Icon=" << Icon << "\n"
|
|
|
|
<< "Recreate=" << recreate << "\n"
|
|
|
|
<< "DeviceType=" << devtype << "\n";
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2009-10-27 20:36:29 +00:00
|
|
|
file.close ();
|
2008-08-06 19:14:04 +00:00
|
|
|
SetChanged = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::loadSettings loads the text document settings
|
|
|
|
* \return true/false if settings file opened with success
|
|
|
|
*/
|
2009-10-27 20:36:29 +00:00
|
|
|
bool TextDoc::loadSettings (void)
|
2008-08-06 19:14:04 +00:00
|
|
|
{
|
2009-10-27 20:36:29 +00:00
|
|
|
QFile file (DocName + ".cfg");
|
2012-10-31 09:15:06 +01:00
|
|
|
if (!file.open (QIODevice::ReadOnly))
|
2008-08-06 19:14:04 +00:00
|
|
|
return false;
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
QTextStream stream (&file);
|
2008-08-06 19:14:04 +00:00
|
|
|
QString Line, Setting;
|
|
|
|
|
|
|
|
bool ok;
|
2009-10-27 20:36:29 +00:00
|
|
|
while (!stream.atEnd ()) {
|
|
|
|
Line = stream.readLine ();
|
|
|
|
Setting = Line.section ('=', 0, 0);
|
2014-11-23 12:24:05 +01:00
|
|
|
Line = Line.section ('=', 1).trimmed ();
|
2009-10-27 20:36:29 +00:00
|
|
|
if (Setting == "Simulation") {
|
|
|
|
simulation = Line.toInt (&ok);
|
|
|
|
} else if (Setting == "Duration") {
|
2008-08-06 19:14:04 +00:00
|
|
|
SimTime = Line;
|
2009-10-27 20:36:29 +00:00
|
|
|
} else if (Setting == "Module") {
|
|
|
|
} else if (Setting == "Library") {
|
2008-08-06 19:14:04 +00:00
|
|
|
Library = Line;
|
2009-10-27 20:36:29 +00:00
|
|
|
} else if (Setting == "Libraries") {
|
2008-08-06 19:14:04 +00:00
|
|
|
Libraries = Line;
|
2009-10-27 20:36:29 +00:00
|
|
|
} else if (Setting == "ShortDesc") {
|
|
|
|
ShortDesc = Line;
|
|
|
|
} else if (Setting == "LongDesc") {
|
|
|
|
LongDesc = Line;
|
|
|
|
} else if (Setting == "Icon") {
|
|
|
|
Icon = Line;
|
|
|
|
} else if (Setting == "Recreate") {
|
|
|
|
recreate = Line.toInt (&ok);
|
|
|
|
} else if (Setting == "DeviceType") {
|
|
|
|
devtype = Line.toInt (&ok);
|
2008-08-06 19:14:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-27 20:36:29 +00:00
|
|
|
file.close ();
|
2008-08-06 19:14:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::setName sets the text file name on its tab
|
|
|
|
* \param Name_ text file name to be set
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::setName (const QString& Name_)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
|
|
|
DocName = Name_;
|
2009-10-24 15:17:21 +00:00
|
|
|
setLanguage (DocName);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
QFileInfo Info (DocName);
|
2006-03-28 06:10:52 +00:00
|
|
|
if (App)
|
2009-10-24 15:17:21 +00:00
|
|
|
App->DocumentTab->setTabLabel (this, Info.fileName ());
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2010-04-14 16:26:35 +00:00
|
|
|
DataSet = Info.baseName (true) + ".dat";
|
|
|
|
DataDisplay = Info.baseName (true) + ".dpl";
|
2011-03-03 18:09:11 +00:00
|
|
|
if(Info.extension(false) == "m" || Info.extension(false) == "oct")
|
|
|
|
SimTime = "1";
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::becomeCurrent sets text document as current
|
|
|
|
*
|
|
|
|
* \detail Make sure the menu options are adjusted.
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::becomeCurrent (bool)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2013-04-06 19:06:49 +02:00
|
|
|
slotCursorPosChanged();
|
2009-10-24 15:17:21 +00:00
|
|
|
viewport()->setFocus ();
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
if (document()->isUndoAvailable())
|
2009-10-24 15:17:21 +00:00
|
|
|
App->undo->setEnabled (true);
|
|
|
|
else
|
|
|
|
App->undo->setEnabled (false);
|
2014-03-15 19:02:44 +01:00
|
|
|
if (document()->isRedoAvailable ())
|
2009-10-24 15:17:21 +00:00
|
|
|
App->redo->setEnabled (true);
|
|
|
|
else
|
|
|
|
App->redo->setEnabled (false);
|
|
|
|
|
|
|
|
// update appropriate menu entries
|
|
|
|
App->symEdit->setMenuText (tr("Edit Text Symbol"));
|
|
|
|
App->symEdit->setStatusTip (tr("Edits the symbol for this text document"));
|
|
|
|
App->symEdit->setWhatsThis (
|
2009-10-19 16:34:25 +00:00
|
|
|
tr("Edit Text Symbol\n\nEdits the symbol for this text document"));
|
2009-10-24 15:17:21 +00:00
|
|
|
|
|
|
|
if (language == LANG_VHDL) {
|
|
|
|
App->insEntity->setMenuText (tr("VHDL entity"));
|
|
|
|
App->insEntity->setStatusTip (tr("Inserts skeleton of VHDL entity"));
|
|
|
|
App->insEntity->setWhatsThis (
|
|
|
|
tr("VHDL entity\n\nInserts the skeleton of a VHDL entity"));
|
|
|
|
}
|
|
|
|
else if (language == LANG_VERILOG || language == LANG_VERILOGA) {
|
|
|
|
App->insEntity->setMenuText (tr("Verilog module"));
|
|
|
|
App->insEntity->setStatusTip (tr("Inserts skeleton of Verilog module"));
|
|
|
|
App->insEntity->setWhatsThis (
|
2011-03-05 13:02:36 +00:00
|
|
|
tr("Verilog module\n\nInserts the skeleton of a Verilog module"));
|
2014-02-26 21:55:31 +01:00
|
|
|
App->buildModule->setEnabled(true);
|
2011-03-05 13:02:36 +00:00
|
|
|
}
|
|
|
|
else if (language == LANG_OCTAVE) {
|
|
|
|
App->insEntity->setMenuText (tr("Octave function"));
|
|
|
|
App->insEntity->setStatusTip (tr("Inserts skeleton of Octave function"));
|
|
|
|
App->insEntity->setWhatsThis (
|
|
|
|
tr("Octave function\n\nInserts the skeleton of a Octave function"));
|
2009-10-24 15:17:21 +00:00
|
|
|
}
|
2009-10-24 20:41:13 +00:00
|
|
|
App->simulate->setEnabled (true);
|
|
|
|
App->editActivate->setEnabled (true);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
2014-11-30 01:57:11 +08:00
|
|
|
bool TextDoc::baseSearch(const QString &str, bool CaseSensitive, bool wordOnly, bool backward)
|
2014-11-20 02:27:40 +08:00
|
|
|
{
|
2014-11-30 01:57:11 +08:00
|
|
|
QFlag flag = 0;
|
|
|
|
bool finded;
|
2014-11-20 03:13:03 +08:00
|
|
|
|
|
|
|
if (CaseSensitive) {
|
2014-11-30 01:57:11 +08:00
|
|
|
flag = QTextDocument::FindCaseSensitively;
|
2014-11-20 03:13:03 +08:00
|
|
|
}
|
|
|
|
if (backward) {
|
2014-11-30 01:57:11 +08:00
|
|
|
flag = flag | QTextDocument::FindBackward;
|
2014-11-20 03:13:03 +08:00
|
|
|
}
|
|
|
|
if (wordOnly) {
|
2014-11-30 01:57:11 +08:00
|
|
|
flag = flag | QTextDocument::FindWholeWords;
|
2014-11-20 03:13:03 +08:00
|
|
|
}
|
|
|
|
|
2014-11-30 01:57:11 +08:00
|
|
|
finded = find(str, flag);
|
|
|
|
if (!finded) {
|
|
|
|
if (!backward) {
|
|
|
|
moveCursor(QTextCursor::Start);
|
|
|
|
} else {
|
|
|
|
moveCursor(QTextCursor::End);
|
|
|
|
}
|
|
|
|
finded = find(str, flag);
|
|
|
|
if (!finded) {
|
|
|
|
QMessageBox::information(this,
|
|
|
|
tr("Find..."), tr("Cannot find target: %1").arg(str),
|
|
|
|
QMessageBox::Ok | QMessageBox::Default | QMessageBox::Escape);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return finded;
|
|
|
|
}
|
|
|
|
|
|
|
|
// implement search function
|
|
|
|
// if target not find, auto revert to head, find again
|
|
|
|
// if still not find, pop out message
|
|
|
|
void TextDoc::search(const QString &str, bool CaseSensitive, bool wordOnly, bool backward)
|
|
|
|
{
|
|
|
|
baseSearch(str, CaseSensitive, wordOnly, backward);
|
2014-11-20 02:27:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// implement replace function
|
|
|
|
void TextDoc::replace(const QString &str, const QString &str2, bool needConfirmed,
|
|
|
|
bool CaseSensitive, bool wordOnly, bool backward)
|
|
|
|
{
|
2014-11-30 01:57:11 +08:00
|
|
|
bool finded = baseSearch(str, CaseSensitive, wordOnly, backward);
|
2014-11-20 03:13:03 +08:00
|
|
|
int i;
|
|
|
|
|
2014-11-30 01:57:11 +08:00
|
|
|
if(finded) {
|
2014-11-20 03:13:03 +08:00
|
|
|
i = QMessageBox::Yes;
|
|
|
|
if (needConfirmed) {
|
|
|
|
i = QMessageBox::information(this,
|
|
|
|
tr("Replace..."), tr("Replace occurrence ?"),
|
|
|
|
QMessageBox::Yes | QMessageBox::Default,
|
|
|
|
QMessageBox::No | QMessageBox::Escape);
|
|
|
|
}
|
|
|
|
if(i == QMessageBox::Yes) {
|
|
|
|
insertPlainText(str2);
|
|
|
|
}
|
|
|
|
}
|
2014-11-20 02:27:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::slotCursorPosChanged update status bar with line:column
|
|
|
|
*/
|
2013-04-06 19:06:49 +02:00
|
|
|
void TextDoc::slotCursorPosChanged()
|
2006-04-18 06:03:52 +00:00
|
|
|
{
|
2013-04-06 19:06:49 +02:00
|
|
|
QTextCursor pos = textCursor();
|
|
|
|
int x = pos.blockNumber();
|
|
|
|
int y = pos.columnNumber();
|
2006-06-12 06:07:21 +00:00
|
|
|
App->printCursorPosition(x+1, y+1);
|
2006-04-18 06:03:52 +00:00
|
|
|
tmpPosX = x;
|
|
|
|
tmpPosY = y;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::slotSetChanged togles tab icon to indicate unsaved changes
|
|
|
|
*/
|
2006-03-28 06:10:52 +00:00
|
|
|
void TextDoc::slotSetChanged()
|
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
if((document()->isModified() && !DocChanged) || SetChanged) {
|
2008-08-06 19:14:04 +00:00
|
|
|
App->DocumentTab->setTabIconSet(this, QPixmap(smallsave_xpm));
|
|
|
|
DocChanged = true;
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2014-03-15 19:02:44 +01:00
|
|
|
else if((!document()->isModified() && DocChanged)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
App->DocumentTab->setTabIconSet(this, QPixmap(empty_xpm));
|
|
|
|
DocChanged = false;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
App->undo->setEnabled(document()->isUndoAvailable());
|
|
|
|
App->redo->setEnabled(document()->isRedoAvailable());
|
2006-04-28 06:04:44 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::createStandardContextMenu creates the standard context menu
|
|
|
|
* \param pos
|
|
|
|
* \return
|
|
|
|
*
|
|
|
|
* \todo \fixme is this working?
|
|
|
|
*/
|
2014-10-28 14:14:04 +08:00
|
|
|
QMenu *TextDoc::createStandardContextMenu()
|
2009-04-07 17:09:44 +00:00
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
QMenu *popup = QPlainTextEdit::createStandardContextMenu();
|
2013-04-06 19:06:49 +02:00
|
|
|
|
2011-03-06 23:29:42 +00:00
|
|
|
if (language != LANG_OCTAVE) {
|
2014-11-04 12:48:23 +08:00
|
|
|
App->fileSettings->addTo((QWidget *)popup);
|
2011-03-06 23:29:42 +00:00
|
|
|
}
|
2009-04-07 17:09:44 +00:00
|
|
|
return popup;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::load loads a text document
|
|
|
|
* \return true/false if the document was opened with success
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
bool TextDoc::load ()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2009-10-24 15:17:21 +00:00
|
|
|
QFile file (DocName);
|
2012-10-31 09:15:06 +01:00
|
|
|
if (!file.open (QIODevice::ReadOnly))
|
2006-03-28 06:10:52 +00:00
|
|
|
return false;
|
2009-10-24 15:17:21 +00:00
|
|
|
setLanguage (DocName);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2013-04-06 19:06:49 +02:00
|
|
|
QTextStream stream (&file);
|
2014-03-15 19:02:44 +01:00
|
|
|
insertPlainText(stream.read ());
|
|
|
|
document()->setModified(false);
|
2009-10-24 15:17:21 +00:00
|
|
|
slotSetChanged ();
|
|
|
|
file.close ();
|
|
|
|
lastSaved = QDateTime::currentDateTime ();
|
|
|
|
loadSettings ();
|
2009-10-06 16:54:44 +00:00
|
|
|
SimOpenDpl = simulation ? true : false;
|
2014-08-14 14:36:53 +04:00
|
|
|
refreshLanguage();
|
2006-03-28 06:10:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief TextDoc::save saves the current document and it settings
|
|
|
|
* \return true/false if the document was opened with success
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
int TextDoc::save ()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2009-10-24 15:17:21 +00:00
|
|
|
saveSettings ();
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
QFile file (DocName);
|
2012-10-31 09:15:06 +01:00
|
|
|
if (!file.open (QIODevice::WriteOnly))
|
2006-03-28 06:10:52 +00:00
|
|
|
return -1;
|
2009-10-24 15:17:21 +00:00
|
|
|
setLanguage (DocName);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
QTextStream stream (&file);
|
|
|
|
stream << toPlainText();
|
|
|
|
document()->setModified (false);
|
2009-10-24 15:17:21 +00:00
|
|
|
slotSetChanged ();
|
|
|
|
file.close ();
|
2008-03-25 14:49:15 +00:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
QFileInfo Info (DocName);
|
|
|
|
lastSaved = Info.lastModified ();
|
2014-03-13 09:59:24 +01:00
|
|
|
|
|
|
|
/// clear highlighted lines on save \see MessageDock::slotCursor()
|
|
|
|
QList<QTextEdit::ExtraSelection> extraSelections;
|
|
|
|
this->setExtraSelections(extraSelections);
|
2014-08-14 14:36:53 +04:00
|
|
|
refreshLanguage();
|
2014-03-13 09:59:24 +01:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::zoomBy increases/decreases the text font size.
|
|
|
|
* \param s font size scaling factor
|
|
|
|
* \return (required) final scale
|
|
|
|
*
|
|
|
|
* \fixme is the return value being saved on the saveSettings() ?
|
|
|
|
*/
|
2006-11-06 06:58:05 +00:00
|
|
|
float TextDoc::zoomBy(float s)
|
2006-04-10 06:12:35 +00:00
|
|
|
{
|
2013-04-06 19:06:49 +02:00
|
|
|
if(s == 2.0) {
|
2014-03-15 19:02:44 +01:00
|
|
|
QFont f = document()->defaultFont();
|
|
|
|
f.setPointSize(f.pointSize()*2);
|
|
|
|
document()->setDefaultFont(f);
|
2013-04-06 19:06:49 +02:00
|
|
|
}
|
|
|
|
else {
|
2014-03-15 19:02:44 +01:00
|
|
|
QFont f = document()->defaultFont();
|
|
|
|
f.setPointSize(f.pointSize()*s);
|
|
|
|
document()->setDefaultFont(f);
|
2013-04-06 19:06:49 +02:00
|
|
|
}
|
2006-04-10 06:12:35 +00:00
|
|
|
return Scale;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::showNoZoom resets the font scaling
|
|
|
|
*/
|
2006-04-18 06:03:52 +00:00
|
|
|
void TextDoc::showNoZoom()
|
|
|
|
{
|
2013-04-06 19:06:49 +02:00
|
|
|
TextFont = QFont("Courier New");
|
|
|
|
TextFont.setPointSize(QucsSettings.font.pointSize()-1);
|
|
|
|
TextFont.setStyleHint(QFont::Courier);
|
|
|
|
TextFont.setFixedPitch(true);
|
2014-03-15 19:02:44 +01:00
|
|
|
document()->setDefaultFont(TextFont);
|
2006-04-18 06:03:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::loadSimulationTime set SimTime member variable
|
|
|
|
* \param Time string with simulation time
|
|
|
|
* \return true if SimTime is set
|
|
|
|
*/
|
2006-04-10 06:12:35 +00:00
|
|
|
bool TextDoc::loadSimulationTime(QString& Time)
|
|
|
|
{
|
|
|
|
if(!SimTime.isEmpty()) {
|
|
|
|
Time = SimTime;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::commentSelected toggles the comment of selected text
|
|
|
|
* See also QucsApp::slotEditActivate
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::commentSelected ()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
QTextCursor cursor = this->textCursor();
|
|
|
|
|
|
|
|
if(!cursor.hasSelection())
|
|
|
|
return; // No selection available
|
|
|
|
|
|
|
|
// get range of selection
|
|
|
|
int start = cursor.selectionStart();
|
|
|
|
int end = cursor.selectionEnd();
|
|
|
|
|
|
|
|
cursor.setPosition(start);
|
|
|
|
int firstLine = cursor.blockNumber();
|
|
|
|
cursor.setPosition(end, QTextCursor::KeepAnchor);
|
|
|
|
int lastLine = cursor.blockNumber();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
// use comment string indicator depending on language
|
|
|
|
QString co;
|
2014-03-15 19:02:44 +01:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
switch (language) {
|
2014-02-26 21:55:31 +01:00
|
|
|
case LANG_VHDL:
|
2014-03-15 19:02:44 +01:00
|
|
|
co = "--";
|
2009-10-24 15:17:21 +00:00
|
|
|
break;
|
|
|
|
case LANG_VERILOG:
|
|
|
|
case LANG_VERILOGA:
|
2014-03-15 19:02:44 +01:00
|
|
|
co = "//";
|
2009-10-24 15:17:21 +00:00
|
|
|
break;
|
2011-03-05 13:02:36 +00:00
|
|
|
case LANG_OCTAVE:
|
2014-03-15 19:02:44 +01:00
|
|
|
co = "%";
|
2011-03-05 13:02:36 +00:00
|
|
|
break;
|
2009-10-24 15:17:21 +00:00
|
|
|
default:
|
2014-03-15 19:02:44 +01:00
|
|
|
co = "";
|
2009-10-24 15:17:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
QStringList newlines;
|
|
|
|
for (int i=firstLine; i<=lastLine; i++) {
|
|
|
|
QString line = document()->findBlockByLineNumber(i).text();
|
|
|
|
if (line.startsWith(co)){
|
|
|
|
// uncomment
|
|
|
|
line.remove(0,co.length());
|
|
|
|
newlines << line;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// comment
|
|
|
|
line = line.insert(0, co);
|
|
|
|
newlines << line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
insertPlainText(newlines.join("\n"));
|
2009-10-24 15:17:21 +00:00
|
|
|
}
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::insertSkeleton adds a basic skeleton for type of text file
|
|
|
|
*/
|
2009-10-24 15:17:21 +00:00
|
|
|
void TextDoc::insertSkeleton ()
|
|
|
|
{
|
|
|
|
if (language == LANG_VHDL)
|
2014-03-15 19:02:44 +01:00
|
|
|
appendPlainText("entity is\n port ( : in bit);\nend;\n"
|
2009-10-24 15:17:21 +00:00
|
|
|
"architecture of is\n signal : bit;\nbegin\n\nend;\n\n");
|
|
|
|
else if (language == LANG_VERILOG)
|
2014-03-15 19:02:44 +01:00
|
|
|
appendPlainText ("module ( );\ninput ;\noutput ;\nbegin\n\nend\n"
|
2009-10-24 15:17:21 +00:00
|
|
|
"endmodule\n\n");
|
2011-03-05 13:02:36 +00:00
|
|
|
else if (language == LANG_OCTAVE)
|
2014-03-15 19:02:44 +01:00
|
|
|
appendPlainText ("function = ( )\n"
|
2011-03-05 13:02:36 +00:00
|
|
|
"endfunction\n\n");
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2009-10-27 20:36:29 +00:00
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief TextDoc::getModuleName parse the module name ou of the text file contents
|
|
|
|
* \return the module name
|
|
|
|
*/
|
2009-10-27 20:36:29 +00:00
|
|
|
QString TextDoc::getModuleName (void)
|
|
|
|
{
|
|
|
|
switch (language) {
|
|
|
|
case LANG_VHDL:
|
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
VHDL_File_Info VInfo (toPlainText());
|
2009-10-27 20:36:29 +00:00
|
|
|
return VInfo.EntityName;
|
|
|
|
}
|
|
|
|
case LANG_VERILOG:
|
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
Verilog_File_Info VInfo (toPlainText());
|
2009-10-27 20:36:29 +00:00
|
|
|
return VInfo.ModuleName;
|
|
|
|
}
|
|
|
|
case LANG_VERILOGA:
|
|
|
|
{
|
2014-03-15 19:02:44 +01:00
|
|
|
VerilogA_File_Info VInfo (toPlainText());
|
2009-10-27 20:36:29 +00:00
|
|
|
return VInfo.ModuleName;
|
|
|
|
}
|
2011-03-05 13:02:36 +00:00
|
|
|
case LANG_OCTAVE:
|
|
|
|
{
|
|
|
|
QFileInfo Info (DocName);
|
|
|
|
return Info.baseName (true);
|
|
|
|
}
|
2009-10-27 20:36:29 +00:00
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
2014-03-15 19:02:44 +01:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief TextDoc::highlightCurrentLine mark the current line
|
|
|
|
*/
|
|
|
|
void TextDoc::highlightCurrentLine()
|
|
|
|
{
|
|
|
|
QList<QTextEdit::ExtraSelection> extraSelections;
|
|
|
|
|
|
|
|
if (!isReadOnly()) {
|
|
|
|
QTextEdit::ExtraSelection selection;
|
|
|
|
|
|
|
|
QColor lineColor = QColor(Qt::blue).lighter(195);
|
|
|
|
|
|
|
|
selection.format.setBackground(lineColor);
|
|
|
|
selection.format.setProperty(QTextFormat::FullWidthSelection, true);
|
|
|
|
selection.cursor = textCursor();
|
|
|
|
selection.cursor.clearSelection();
|
|
|
|
extraSelections.append(selection);
|
|
|
|
}
|
|
|
|
|
|
|
|
setExtraSelections(extraSelections);
|
|
|
|
}
|
2014-08-14 14:36:53 +04:00
|
|
|
|
|
|
|
void TextDoc::refreshLanguage()
|
|
|
|
{
|
|
|
|
this->setLanguage(DocName);
|
|
|
|
syntaxHighlight->setLanguage(language);
|
|
|
|
syntaxHighlight->setDocument(document());
|
|
|
|
}
|