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.h>
|
2006-04-18 06:03:52 +00:00
|
|
|
#include <qdatetime.h>
|
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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
extern const char *smallsave_xpm[];// icon for unsaved files (diskette)
|
|
|
|
extern const char *empty_xpm[]; // provides same height than "smallsave_xpm"
|
2005-09-12 12:01:40 +00:00
|
|
|
|
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-04-10 06:12:35 +00:00
|
|
|
virtual float zoom(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
|
|
|
|
|
|
|
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
|
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 ?
|
|
|
|
int showBias; // -1=no, 0=calculation running, >0=show DC bias points
|
|
|
|
bool GridOn;
|
2006-04-18 06:03:52 +00:00
|
|
|
int tmpPosX, tmpPosY;
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|