2006-03-28 06:10:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
textdoc.h
|
|
|
|
-----------
|
|
|
|
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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TEXTDOC_H
|
|
|
|
#define TEXTDOC_H
|
|
|
|
|
2013-04-06 19:06:49 +02:00
|
|
|
|
|
|
|
#include <QTextEdit>
|
2013-11-26 17:28:48 +01:00
|
|
|
#include <Q3TextEdit>
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QFont>
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
#include "qucsdoc.h"
|
|
|
|
|
2006-04-21 05:58:21 +00:00
|
|
|
class SyntaxHighlighter;
|
|
|
|
|
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"
|
|
|
|
|
2009-10-27 20:36:29 +00:00
|
|
|
// device type flags
|
|
|
|
#define DEV_BJT 0x0001
|
|
|
|
#define DEV_MOS 0x0002
|
|
|
|
#define DEV_MASK_DEV 0x00FF
|
|
|
|
#define DEV_DIG 0x0100
|
|
|
|
#define DEV_ANA 0x0200
|
|
|
|
#define DEV_ALL 0x0300
|
|
|
|
#define DEV_MASK_TYP 0xFF00
|
|
|
|
#define DEV_DEF 0x0200 // default value
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2013-04-06 19:06:49 +02:00
|
|
|
class TextDoc : public QTextEdit, public QucsDoc {
|
2006-03-28 06:10:52 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2009-10-27 20:36:29 +00:00
|
|
|
TextDoc (QucsApp *, const QString&);
|
|
|
|
~TextDoc ();
|
|
|
|
|
|
|
|
void setName (const QString&);
|
|
|
|
bool load ();
|
|
|
|
int save ();
|
|
|
|
float zoomBy (float);
|
|
|
|
void showNoZoom ();
|
|
|
|
void becomeCurrent (bool);
|
|
|
|
bool loadSimulationTime (QString&);
|
2009-10-24 15:17:21 +00:00
|
|
|
void commentSelected ();
|
|
|
|
void insertSkeleton ();
|
|
|
|
void setLanguage (int);
|
|
|
|
void setLanguage (const QString&);
|
2009-10-27 20:36:29 +00:00
|
|
|
QString getModuleName (void);
|
2009-10-24 15:17:21 +00:00
|
|
|
|
2007-03-31 15:45:23 +00:00
|
|
|
QFont TextFont;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2008-08-06 19:14:04 +00:00
|
|
|
bool simulation; // simulation or module
|
|
|
|
QString Library; // library this document belongs to
|
|
|
|
QString Libraries; // libraries to be linked with
|
2009-10-27 20:36:29 +00:00
|
|
|
QString ShortDesc; // icon description
|
|
|
|
QString LongDesc; // component description
|
|
|
|
QString Icon; // icon file
|
|
|
|
bool recreate; // recreate output file
|
|
|
|
int devtype; // device type
|
|
|
|
|
2008-08-06 19:14:04 +00:00
|
|
|
bool SetChanged;
|
2009-10-27 20:36:29 +00:00
|
|
|
int language;
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2009-10-27 20:36:29 +00:00
|
|
|
bool loadSettings (void);
|
|
|
|
bool saveSettings (void);
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2013-04-06 19:06:49 +02:00
|
|
|
QMenu* createStandardContextMenu(const QPoint&);
|
2009-04-07 17:09:44 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
public slots:
|
2013-04-06 19:06:49 +02:00
|
|
|
void slotCursorPosChanged ();
|
2009-10-27 20:36:29 +00:00
|
|
|
void slotSetChanged ();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
private:
|
2009-10-27 20:36:29 +00:00
|
|
|
SyntaxHighlighter * syntaxHighlight;
|
2006-03-28 06:10:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|