qucs_s/qucs/textdoc.cpp

551 lines
14 KiB
C++
Raw Normal View History

2006-03-28 06:10:52 +00:00
/***************************************************************************
textdoc.cpp
-------------
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
#include <QtGui>
2013-04-06 19:06:49 +02:00
#include <QtCore>
2006-03-28 06:10:52 +00:00
#include "main.h"
#include "qucs.h"
#include "textdoc.h"
#include "syntax.h"
#include "components/vhdlfile.h"
#include "components/verilogfile.h"
#include "components/vafile.h"
2006-03-28 06:10:52 +00: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
{
TextFont = QFont("Courier New");
TextFont.setPointSize(QucsSettings.font.pointSize()-1);
TextFont.setStyleHint(QFont::Courier);
TextFont.setFixedPitch(true);
document()->setDefaultFont(TextFont);
simulation = true;
Library = "";
Libraries = "";
SetChanged = false;
devtype = DEV_DEF;
2006-05-05 06:00:05 +00:00
tmpPosX = tmpPosY = 1; // set to 1 to trigger line highlighting
Scale = (float)TextFont.pointSize();
2013-04-06 19:06:49 +02:00
//TODO (not supported) setUndoDepth(QucsSettings.maxUndo);
setLanguage (Name_);
QFileInfo Info (Name_);
2013-04-06 19:06:49 +02:00
2006-03-28 06:10:52 +00:00
if(App) {
2013-04-06 19:06:49 +02:00
if(Name_.isEmpty()) {
App->DocumentTab->addTab(this, QPixmap(empty_xpm), QObject::tr("untitled"));
}
else {
App->DocumentTab->addTab(this, QPixmap(empty_xpm), Info.fileName());
}
App->DocumentTab->setCurrentPage(App->DocumentTab->indexOf(this));
2006-03-28 06:10:52 +00:00
viewport()->setFocus();
2006-04-10 06:12:35 +00:00
2013-04-06 19:06:49 +02:00
setWordWrapMode(QTextOption::NoWrap);
2006-04-10 06:12:35 +00:00
setPaletteBackgroundColor(QucsSettings.BGColor);
connect(this, SIGNAL(textChanged()), SLOT(slotSetChanged()));
2013-04-06 19:06:49 +02:00
connect(this, SIGNAL(cursorPositionChanged()),
SLOT(slotCursorPosChanged()));
2006-04-10 06:12:35 +00:00
syntaxHighlight = new SyntaxHighlighter(this);
2013-04-06 19:06:49 +02:00
syntaxHighlight->setLanguage(language);
syntaxHighlight->setDocument(document());
connect(this, SIGNAL(cursorPositionChanged()), this, SLOT(highlightCurrentLine()));
highlightCurrentLine();
2006-03-28 06:10:52 +00: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
}
/*!
* \brief TextDoc::setLanguage(const QString&)
* \param FileName Text document file name
* Extract the file name suffix and assing a language_type to it.
*/
void TextDoc::setLanguage (const QString& FileName)
{
QFileInfo Info (FileName);
QString ext = Info.extension (false);
if (ext == "vhd" || ext == "vhdl")
setLanguage (LANG_VHDL);
else if (ext == "v")
setLanguage (LANG_VERILOG);
else if (ext == "va")
setLanguage (LANG_VERILOGA);
else if (ext == "m" || ext == "oct")
setLanguage (LANG_OCTAVE);
else
setLanguage (LANG_NONE);
}
/*!
* \brief TextDoc::setLanguage(int)
* \param lang is a language_type
* Assing value to text document object language variable
*/
void TextDoc::setLanguage (int lang)
{
language = lang;
}
/*!
* \brief TextDoc::saveSettings saves the text document settings .cfg
* \return true/false if settings file opened with success
*/
bool TextDoc::saveSettings (void)
{
QFile file (DocName + ".cfg");
if (!file.open (QIODevice::WriteOnly))
return false;
QTextStream stream (&file);
stream << "Textfile settings file, Qucs " PACKAGE_VERSION "\n"
<< "Simulation=" << simulation << "\n"
<< "Duration=" << SimTime << "\n"
<< "Module=" << (!simulation) << "\n"
<< "Library=" << Library << "\n"
<< "Libraries=" << Libraries << "\n"
<< "ShortDesc=" << ShortDesc << "\n"
<< "LongDesc=" << LongDesc << "\n"
<< "Icon=" << Icon << "\n"
<< "Recreate=" << recreate << "\n"
<< "DeviceType=" << devtype << "\n";
file.close ();
SetChanged = false;
return true;
}
/*!
* \brief TextDoc::loadSettings loads the text document settings
* \return true/false if settings file opened with success
*/
bool TextDoc::loadSettings (void)
{
QFile file (DocName + ".cfg");
if (!file.open (QIODevice::ReadOnly))
return false;
QTextStream stream (&file);
QString Line, Setting;
bool ok;
while (!stream.atEnd ()) {
Line = stream.readLine ();
Setting = Line.section ('=', 0, 0);
Line = Line.section ('=', 1).stripWhiteSpace ();
if (Setting == "Simulation") {
simulation = Line.toInt (&ok);
} else if (Setting == "Duration") {
SimTime = Line;
} else if (Setting == "Module") {
} else if (Setting == "Library") {
Library = Line;
} else if (Setting == "Libraries") {
Libraries = Line;
} 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);
}
}
file.close ();
return true;
}
/*!
* \brief TextDoc::setName sets the text file name on its tab
* \param Name_ text file name to be set
*/
void TextDoc::setName (const QString& Name_)
2006-03-28 06:10:52 +00:00
{
DocName = Name_;
setLanguage (DocName);
2006-03-28 06:10:52 +00:00
QFileInfo Info (DocName);
2006-03-28 06:10:52 +00:00
if (App)
App->DocumentTab->setTabLabel (this, Info.fileName ());
2006-03-28 06:10:52 +00:00
DataSet = Info.baseName (true) + ".dat";
DataDisplay = Info.baseName (true) + ".dpl";
if(Info.extension(false) == "m" || Info.extension(false) == "oct")
SimTime = "1";
2006-03-28 06:10:52 +00:00
}
/*!
* \brief TextDoc::becomeCurrent sets text document as current
*
* \detail Make sure the menu options are adjusted.
*/
void TextDoc::becomeCurrent (bool)
2006-03-28 06:10:52 +00:00
{
2013-04-06 19:06:49 +02:00
slotCursorPosChanged();
viewport()->setFocus ();
if (document()->isUndoAvailable())
App->undo->setEnabled (true);
else
App->undo->setEnabled (false);
if (document()->isRedoAvailable ())
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 (
tr("Edit Text Symbol\n\nEdits the symbol for this text document"));
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 (
tr("Verilog module\n\nInserts the skeleton of a Verilog module"));
2014-02-26 21:55:31 +01:00
App->buildModule->setEnabled(true);
}
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"));
}
App->simulate->setEnabled (true);
App->editActivate->setEnabled (true);
2006-03-28 06:10:52 +00: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;
}
/*!
* \brief TextDoc::slotSetChanged togles tab icon to indicate unsaved changes
*/
2006-03-28 06:10:52 +00:00
void TextDoc::slotSetChanged()
{
if((document()->isModified() && !DocChanged) || SetChanged) {
App->DocumentTab->setTabIconSet(this, QPixmap(smallsave_xpm));
DocChanged = true;
2006-03-28 06:10:52 +00:00
}
else if((!document()->isModified() && DocChanged)) {
2006-03-28 06:10:52 +00:00
App->DocumentTab->setTabIconSet(this, QPixmap(empty_xpm));
DocChanged = false;
}
App->undo->setEnabled(document()->isUndoAvailable());
App->redo->setEnabled(document()->isRedoAvailable());
2006-04-28 06:04:44 +00: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()
{
QMenu *popup = QPlainTextEdit::createStandardContextMenu();
2013-04-06 19:06:49 +02:00
if (language != LANG_OCTAVE) {
App->fileSettings->addTo(popup);
}
return popup;
}
/*!
* \brief TextDoc::load loads a text document
* \return true/false if the document was opened with success
*/
bool TextDoc::load ()
2006-03-28 06:10:52 +00:00
{
QFile file (DocName);
if (!file.open (QIODevice::ReadOnly))
2006-03-28 06:10:52 +00:00
return false;
setLanguage (DocName);
2006-03-28 06:10:52 +00:00
2013-04-06 19:06:49 +02:00
QTextStream stream (&file);
insertPlainText(stream.read ());
document()->setModified(false);
slotSetChanged ();
file.close ();
lastSaved = QDateTime::currentDateTime ();
loadSettings ();
SimOpenDpl = simulation ? true : false;
refreshLanguage();
2006-03-28 06:10:52 +00:00
return true;
}
/*!
* \brief TextDoc::save saves the current document and it settings
* \return true/false if the document was opened with success
*/
int TextDoc::save ()
2006-03-28 06:10:52 +00:00
{
saveSettings ();
QFile file (DocName);
if (!file.open (QIODevice::WriteOnly))
2006-03-28 06:10:52 +00:00
return -1;
setLanguage (DocName);
2006-03-28 06:10:52 +00:00
QTextStream stream (&file);
stream << toPlainText();
document()->setModified (false);
slotSetChanged ();
file.close ();
QFileInfo Info (DocName);
lastSaved = Info.lastModified ();
/// clear highlighted lines on save \see MessageDock::slotCursor()
QList<QTextEdit::ExtraSelection> extraSelections;
this->setExtraSelections(extraSelections);
refreshLanguage();
2006-03-28 06:10:52 +00:00
return 0;
}
/*!
* \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) {
QFont f = document()->defaultFont();
f.setPointSize(f.pointSize()*2);
document()->setDefaultFont(f);
2013-04-06 19:06:49 +02:00
}
else {
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;
}
/*!
* \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);
document()->setDefaultFont(TextFont);
2006-04-18 06:03:52 +00: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;
}
/*!
* \brief TextDoc::commentSelected toggles the comment of selected text
* See also QucsApp::slotEditActivate
*/
void TextDoc::commentSelected ()
2006-03-28 06:10:52 +00: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
// use comment string indicator depending on language
QString co;
switch (language) {
2014-02-26 21:55:31 +01:00
case LANG_VHDL:
co = "--";
break;
case LANG_VERILOG:
case LANG_VERILOGA:
co = "//";
break;
case LANG_OCTAVE:
co = "%";
break;
default:
co = "";
break;
}
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"));
}
/*!
* \brief TextDoc::insertSkeleton adds a basic skeleton for type of text file
*/
void TextDoc::insertSkeleton ()
{
if (language == LANG_VHDL)
appendPlainText("entity is\n port ( : in bit);\nend;\n"
"architecture of is\n signal : bit;\nbegin\n\nend;\n\n");
else if (language == LANG_VERILOG)
appendPlainText ("module ( );\ninput ;\noutput ;\nbegin\n\nend\n"
"endmodule\n\n");
else if (language == LANG_OCTAVE)
appendPlainText ("function = ( )\n"
"endfunction\n\n");
2006-03-28 06:10:52 +00:00
}
/*!
* \brief TextDoc::getModuleName parse the module name ou of the text file contents
* \return the module name
*/
QString TextDoc::getModuleName (void)
{
switch (language) {
case LANG_VHDL:
{
VHDL_File_Info VInfo (toPlainText());
return VInfo.EntityName;
}
case LANG_VERILOG:
{
Verilog_File_Info VInfo (toPlainText());
return VInfo.ModuleName;
}
case LANG_VERILOGA:
{
VerilogA_File_Info VInfo (toPlainText());
return VInfo.ModuleName;
}
case LANG_OCTAVE:
{
QFileInfo Info (DocName);
return Info.baseName (true);
}
default:
return "";
}
}
/*!
* \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);
}
void TextDoc::refreshLanguage()
{
this->setLanguage(DocName);
syntaxHighlight->setLanguage(language);
syntaxHighlight->setDocument(document());
}