mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
from stefan
git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@856 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
parent
0f9ff7cf6d
commit
0990e98ae0
@ -318,7 +318,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>VHDL files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>VHDL Dateien</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -54,6 +54,30 @@ Schematic::Schematic(QucsApp *App_, const QString& Name_)
|
||||
{
|
||||
symbolMode = false;
|
||||
|
||||
// ...........................................................
|
||||
GridX = GridY = 10;
|
||||
ViewX1=ViewY1=0;
|
||||
ViewX2=ViewY2=800;
|
||||
UsedX1 = UsedY1 = INT_MAX;
|
||||
UsedX2 = UsedY2 = INT_MIN;
|
||||
|
||||
tmpPosX = tmpPosY = -100;
|
||||
tmpUsedX1 = tmpUsedY1 = tmpViewX1 = tmpViewY1 = -200;
|
||||
tmpUsedX2 = tmpUsedY2 = tmpViewX2 = tmpViewY2 = 200;
|
||||
tmpScale = 1.0;
|
||||
|
||||
DocComps.setAutoDelete(true);
|
||||
DocWires.setAutoDelete(true);
|
||||
DocNodes.setAutoDelete(true);
|
||||
DocDiags.setAutoDelete(true);
|
||||
DocPaints.setAutoDelete(true);
|
||||
SymbolPaints.setAutoDelete(true);
|
||||
|
||||
UndoStack.setAutoDelete(true);
|
||||
UndoSymbol.setAutoDelete(true);
|
||||
// The 'i' means state for being unchanged.
|
||||
UndoStack.append(new QString(" i\n</>\n</>\n</>\n</>\n"));
|
||||
|
||||
QFileInfo Info(Name_);
|
||||
if(App) {
|
||||
if(Name_.isEmpty())
|
||||
@ -81,7 +105,8 @@ Schematic::Schematic(QucsApp *App_, const QString& Name_)
|
||||
connect(verticalScrollBar(),
|
||||
SIGNAL(nextLine()), SLOT(slotScrollDown()));
|
||||
|
||||
// ...........................................................
|
||||
// ...........................................................
|
||||
|
||||
// to repair some strange scrolling artefacts
|
||||
connect(this, SIGNAL(horizontalSliderReleased()),
|
||||
viewport(), SLOT(update()));
|
||||
@ -91,31 +116,7 @@ Schematic::Schematic(QucsApp *App_, const QString& Name_)
|
||||
// to prevent user from editing something that he doesn't see
|
||||
connect(this, SIGNAL(horizontalSliderPressed()), App, SLOT(slotHideEdit()));
|
||||
connect(this, SIGNAL(verticalSliderPressed()), App, SLOT(slotHideEdit()));
|
||||
} // of "if(App)"
|
||||
|
||||
// ...........................................................
|
||||
GridX = GridY = 10;
|
||||
ViewX1=ViewY1=0;
|
||||
ViewX2=ViewY2=800;
|
||||
UsedX1 = UsedY1 = INT_MAX;
|
||||
UsedX2 = UsedY2 = INT_MIN;
|
||||
|
||||
tmpPosX = tmpPosY = -100;
|
||||
tmpUsedX1 = tmpUsedY1 = tmpViewX1 = tmpViewY1 = -200;
|
||||
tmpUsedX2 = tmpUsedY2 = tmpViewX2 = tmpViewY2 = 200;
|
||||
tmpScale = 1.0;
|
||||
|
||||
DocComps.setAutoDelete(true);
|
||||
DocWires.setAutoDelete(true);
|
||||
DocNodes.setAutoDelete(true);
|
||||
DocDiags.setAutoDelete(true);
|
||||
DocPaints.setAutoDelete(true);
|
||||
SymbolPaints.setAutoDelete(true);
|
||||
|
||||
UndoStack.setAutoDelete(true);
|
||||
UndoSymbol.setAutoDelete(true);
|
||||
// The 'i' means state for being unchanged.
|
||||
UndoStack.append(new QString(" i\n</>\n</>\n</>\n</>\n"));
|
||||
} // of "if(App)"
|
||||
}
|
||||
|
||||
Schematic::~Schematic()
|
||||
|
@ -35,6 +35,12 @@
|
||||
|
||||
TextDoc::TextDoc(QucsApp *App_, const QString& Name_) : QucsDoc(App_, Name_)
|
||||
{
|
||||
tmpPosX = tmpPosY = 0;
|
||||
Scale = (float)QucsSettings.font.pointSize();
|
||||
|
||||
undoIsAvailable = redoIsAvailable = false;
|
||||
setUndoDepth(QucsSettings.maxUndo);
|
||||
|
||||
QFileInfo Info(Name_);
|
||||
if(App) {
|
||||
if(Name_.isEmpty())
|
||||
@ -57,12 +63,6 @@ TextDoc::TextDoc(QucsApp *App_, const QString& Name_) : QucsDoc(App_, Name_)
|
||||
|
||||
syntaxHighlight = new SyntaxHighlighter(this);
|
||||
}
|
||||
|
||||
tmpPosX = tmpPosY = 0;
|
||||
Scale = (float)QucsSettings.font.pointSize();
|
||||
|
||||
undoIsAvailable = redoIsAvailable = false;
|
||||
setUndoDepth(QucsSettings.maxUndo);
|
||||
}
|
||||
|
||||
TextDoc::~TextDoc()
|
||||
|
Loading…
x
Reference in New Issue
Block a user