qucs_s/qucs/textdoc.cpp

439 lines
12 KiB
C++
Raw Normal View History

2006-03-28 06:10:52 +00:00
/***************************************************************************
textdoc.cpp
-------------
begin : Sat Mar 11 2006
copyright : (C) 2006 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* 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
2013-04-06 19:06:49 +02:00
TextDoc::TextDoc(QucsApp *App_, const QString& Name_) : QucsDoc(App_, Name_), QTextEdit()
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);
setFont(TextFont);
2013-04-06 19:06:49 +02:00
//Removed, otherwise zoomIn/Out does not work setCurrentFont(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);
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
}
// ---------------------------------------------------
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);
}
// ---------------------------------------------------
void TextDoc::setLanguage (int lang)
{
language = lang;
}
// ---------------------------------------------------
bool TextDoc::saveSettings (void)
{
QFile file (DocName + ".cfg");
if (!file.open (QIODevice::WriteOnly))
return false;
Q3TextStream 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;
}
// ---------------------------------------------------
bool TextDoc::loadSettings (void)
{
QFile file (DocName + ".cfg");
if (!file.open (QIODevice::ReadOnly))
return false;
Q3TextStream 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;
}
2006-03-28 06:10:52 +00:00
// ---------------------------------------------------
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
}
// ---------------------------------------------------
void TextDoc::becomeCurrent (bool)
2006-03-28 06:10:52 +00:00
{
2006-04-10 06:12:35 +00:00
int x, y;
2013-04-06 19:06:49 +02:00
slotCursorPosChanged();
viewport()->setFocus ();
if (isUndoAvailable ())
App->undo->setEnabled (true);
else
App->undo->setEnabled (false);
if (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"));
}
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
}
2006-04-18 06:03:52 +00:00
// ---------------------------------------------------
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();
// TODO This seems to be difficult; maybe http://pepper.troll.no/s60prereleases/doc/widgets-codeeditor.html
//if(tmpPosX > x)
//TODO clearParagraphBackground(tmpPosX);
//else
//for(int z=tmpPosX; z<x; z++)
//TODO clearParagraphBackground(z);
//if(tmpPosX != x)
//TODO setParagraphBackgroundColor(x, QColor(240, 240, 255));
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;
}
2006-03-28 06:10:52 +00:00
// ---------------------------------------------------
void TextDoc::slotSetChanged()
{
if((isModified() && !DocChanged) || SetChanged) {
App->DocumentTab->setTabIconSet(this, QPixmap(smallsave_xpm));
DocChanged = true;
2006-03-28 06:10:52 +00:00
}
else if((!isModified() && DocChanged)) {
2006-03-28 06:10:52 +00:00
App->DocumentTab->setTabIconSet(this, QPixmap(empty_xpm));
DocChanged = false;
}
2006-05-08 06:13:04 +00:00
App->undo->setEnabled(isUndoAvailable());
App->redo->setEnabled(isRedoAvailable());
2006-04-28 06:04:44 +00:00
}
// ---------------------------------------------------
2013-04-06 19:06:49 +02:00
QMenu *TextDoc::createStandardContextMenu( const QPoint &pos )
{
2013-04-06 19:06:49 +02:00
QMenu *popup = QTextEdit::createStandardContextMenu(pos);
if (language != LANG_OCTAVE) {
App->fileSettings->addTo(popup);
}
return popup;
}
2006-03-28 06:10:52 +00:00
// ---------------------------------------------------
bool TextDoc::load ()
2006-03-28 06:10:52 +00:00
{
2013-04-06 19:06:49 +02: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);
setText (stream.read ());
setModified (false);
slotSetChanged ();
file.close ();
lastSaved = QDateTime::currentDateTime ();
loadSettings ();
SimOpenDpl = simulation ? true : false;
2006-03-28 06:10:52 +00:00
return true;
}
// ---------------------------------------------------
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
Q3TextStream stream (&file);
stream << text ();
setModified (false);
slotSetChanged ();
file.close ();
QFileInfo Info (DocName);
lastSaved = Info.lastModified ();
2006-03-28 06:10:52 +00:00
return 0;
}
2006-04-10 06:12:35 +00:00
// ---------------------------------------------------
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) {
this->zoomIn(2);
}
else {
this->zoomOut(2);
}
2006-04-10 06:12:35 +00:00
return Scale;
}
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);
setFont(TextFont);
2006-04-18 06:03:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ---------------------------------------------------
bool TextDoc::loadSimulationTime(QString& Time)
{
if(!SimTime.isEmpty()) {
Time = SimTime;
return true;
}
return false;
}
2006-03-28 06:10:52 +00:00
// ---------------------------------------------------
void TextDoc::commentSelected ()
2006-03-28 06:10:52 +00:00
{
QString s = selectedText ();
if (s.isEmpty ())
2006-04-18 06:03:52 +00:00
return;
2006-03-28 06:10:52 +00:00
// use comment string indicator depending on language
QString co;
int cl;
switch (language) {
case LANG_VHDL:
co = "--"; cl = 2;
break;
case LANG_VERILOG:
case LANG_VERILOGA:
co = "//"; cl = 2;
break;
case LANG_OCTAVE:
co = "%"; cl = 1;
break;
default:
co = ""; cl = 0;
break;
}
if (s.left (cl) == co)
s.remove (0, cl);
2006-04-18 06:03:52 +00:00
else
s = co + s;
2006-04-18 06:03:52 +00:00
for (int i = s.length () - cl; i >= 0; i--)
if (s.at (i) == '\n') {
if (s.mid (i+1, cl) == co)
s.remove(i+1, cl);
2006-04-18 06:03:52 +00:00
else
s.insert (i+1, co);
2006-03-28 06:10:52 +00:00
}
insert (s);
}
// ---------------------------------------------------
void TextDoc::insertSkeleton ()
{
if (language == LANG_VHDL)
insert ("entity is\n port ( : in bit);\nend;\n"
"architecture of is\n signal : bit;\nbegin\n\nend;\n\n");
else if (language == LANG_VERILOG)
insert ("module ( );\ninput ;\noutput ;\nbegin\n\nend\n"
"endmodule\n\n");
else if (language == LANG_OCTAVE)
insert ("function = ( )\n"
"endfunction\n\n");
2006-03-28 06:10:52 +00:00
}
// ---------------------------------------------------
QString TextDoc::getModuleName (void)
{
switch (language) {
case LANG_VHDL:
{
VHDL_File_Info VInfo (text ());
return VInfo.EntityName;
}
case LANG_VERILOG:
{
Verilog_File_Info VInfo (text ());
return VInfo.ModuleName;
}
case LANG_VERILOGA:
{
VerilogA_File_Info VInfo (text ());
return VInfo.ModuleName;
}
case LANG_OCTAVE:
{
QFileInfo Info (DocName);
return Info.baseName (true);
}
default:
return "";
}
}