qucs_s/qucs/qucsdoc.h

65 lines
2.2 KiB
C
Raw Normal View History

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
#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 {
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() {};
virtual void showNoZoom() {};
2003-10-15 21:32:36 +00:00
static QString fileSuffix (const QString&);
QString fileSuffix (void);
static QString fileBase (const QString&);
QString fileBase (void);
2003-10-15 21:32:36 +00:00
QString DocName;
2004-03-28 19:51:04 +00:00
QString DataSet; // name of the default dataset
2003-10-28 11:44:24 +00:00
QString DataDisplay; // name of the default data display
QString Script;
2006-04-10 06:12:35 +00:00
QString SimTime; // used for VHDL simulation, but stored in datadisplay
2006-04-18 06:03:52 +00:00
QDateTime lastSaved;
2003-10-15 21:32:36 +00:00
2006-04-10 06:12:35 +00:00
float Scale;
2006-03-28 06:10:52 +00:00
QucsApp *App;
bool DocChanged;
bool SimOpenDpl; // open data display after simulation ?
bool SimRunScript; // run script after simulation ?
int showBias; // -1=no, 0=calculation running, >0=show DC bias points
2006-03-28 06:10:52 +00:00
bool GridOn;
2006-04-18 06:03:52 +00:00
int tmpPosX, tmpPosY;
2003-10-15 21:32:36 +00:00
};
#endif