2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
2005-08-15 06:04:52 +00:00
|
|
|
qucsdoc.h
|
|
|
|
-----------
|
2003-10-15 21:32:36 +00:00
|
|
|
begin : Wed Sep 3 2003
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-12 12:35:04 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-10-15 21:32:36 +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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCSDOC_H
|
|
|
|
#define QUCSDOC_H
|
|
|
|
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QString>
|
|
|
|
#include <QDateTime>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
class QucsApp;
|
2006-04-10 06:12:35 +00:00
|
|
|
class QPrinter;
|
2006-07-24 06:12:23 +00:00
|
|
|
class QPainter;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
class QucsDoc {
|
2024-11-08 12:46:57 +01:00
|
|
|
public:
|
2004-06-21 08:22:13 +00:00
|
|
|
QucsDoc(QucsApp*, const QString&);
|
2006-03-28 06:10:52 +00:00
|
|
|
virtual ~QucsDoc() {};
|
2003-11-03 10:27:28 +00:00
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
virtual void setName(const QString&) {};
|
|
|
|
virtual bool load() { return true; };
|
|
|
|
virtual int save() { return 0; };
|
2006-07-24 06:12:23 +00:00
|
|
|
virtual void print(QPrinter*, QPainter*, bool, bool) {};
|
2006-04-18 06:03:52 +00:00
|
|
|
virtual void becomeCurrent(bool) {};
|
2006-11-06 06:58:05 +00:00
|
|
|
virtual float zoomBy(float) { return 1.0; };
|
2006-04-18 06:03:52 +00:00
|
|
|
virtual void showAll() {};
|
2023-10-17 21:29:39 +03:00
|
|
|
virtual void zoomToSelection() {};
|
2006-04-18 06:03:52 +00:00
|
|
|
virtual void showNoZoom() {};
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
static QString fileSuffix (const QString&);
|
|
|
|
QString fileSuffix (void);
|
|
|
|
static QString fileBase (const QString&);
|
|
|
|
QString fileBase (void);
|
|
|
|
|
2024-11-08 12:46:57 +01:00
|
|
|
float getScale() const { return a_Scale; }
|
|
|
|
bool getDocChanged() const { return a_DocChanged; }
|
|
|
|
void setDocChanged(bool value) { a_DocChanged = value; }
|
|
|
|
bool getSimOpenDpl() const { return a_SimOpenDpl; }
|
|
|
|
void setSimOpenDpl(bool value) { a_SimOpenDpl = value; }
|
|
|
|
bool getSimRunScript() const { return a_SimRunScript; }
|
|
|
|
void setSimRunScript(bool value) { a_SimRunScript = value; }
|
|
|
|
bool getGridOn() const { return a_GridOn; }
|
|
|
|
void setGridOn(bool value) { a_GridOn = value; }
|
|
|
|
QucsApp* getApp() const { return a_App; }
|
|
|
|
int getShowBias() const { return a_showBias; }
|
|
|
|
void setShowBias(int value) { a_showBias = value; }
|
|
|
|
QString getDocName() const { return a_DocName; }
|
|
|
|
void setDocName(const QString& value) { a_DocName = value; }
|
|
|
|
QString getDataSet() const { return a_DataSet; }
|
|
|
|
void setDataSet(const QString& value) { a_DataSet = value; }
|
|
|
|
QString getDataDisplay() const { return a_DataDisplay; }
|
|
|
|
void setDataDisplay(const QString& value) { a_DataDisplay = value; }
|
|
|
|
QString getScript() const { return a_Script; }
|
|
|
|
void setScript(const QString& value) { a_Script = value; }
|
|
|
|
QString getSimTime() const { return a_SimTime; }
|
|
|
|
void setSimTime(const QString& value) { a_SimTime = value; }
|
|
|
|
QDateTime getLastSaved() const { return a_lastSaved; }
|
|
|
|
void setLastSaved(const QDateTime& value) { a_lastSaved = value; }
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2024-11-08 12:46:57 +01:00
|
|
|
protected:
|
|
|
|
QString a_DocName;
|
|
|
|
QString a_DataSet; // name of the default dataset
|
|
|
|
QString a_DataDisplay; // name of the default data display
|
|
|
|
QString a_Script;
|
|
|
|
QString a_SimTime; // used for VHDL simulation, but stored in datadisplay
|
|
|
|
QDateTime a_lastSaved;
|
|
|
|
|
|
|
|
float a_Scale;
|
|
|
|
QucsApp* a_App;
|
|
|
|
bool a_DocChanged;
|
|
|
|
bool a_SimOpenDpl; // open data display after simulation ?
|
|
|
|
bool a_SimRunScript; // run script after simulation ?
|
|
|
|
int a_showBias; // -1=no, 0=calculation running, >0=show DC bias points
|
|
|
|
bool a_GridOn;
|
|
|
|
int a_tmpPosX;
|
|
|
|
int a_tmpPosY;
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|