2006-03-28 06:10:52 +00:00
|
|
|
/***************************************************************************
|
|
|
|
textdoc.h
|
|
|
|
-----------
|
2014-03-15 19:02:44 +01:00
|
|
|
Copyright (C) 2006 by Michael Margraf <michael.margraf@alumni.tu-berlin.de>
|
|
|
|
Copyright (C) 2014 by Guilherme Brondani Torri <guitorri@gmail.com>
|
|
|
|
|
2006-03-28 06:10:52 +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 TEXTDOC_H
|
|
|
|
#define TEXTDOC_H
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
#include <QPlainTextEdit>
|
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"
|
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \file textdoc.h
|
|
|
|
* \brief Definition of the TextDoc class.
|
|
|
|
*/
|
|
|
|
|
2006-04-21 05:58:21 +00:00
|
|
|
class SyntaxHighlighter;
|
2014-11-30 01:57:11 +08:00
|
|
|
class QString;
|
2006-04-21 05:58:21 +00:00
|
|
|
|
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
|
|
|
|
2014-03-15 19:02:44 +01:00
|
|
|
/*!
|
|
|
|
* \brief The TextDoc class definition
|
|
|
|
*/
|
|
|
|
class TextDoc : public QPlainTextEdit, public QucsDoc {
|
2006-03-28 06:10:52 +00:00
|
|
|
Q_OBJECT
|
2014-03-15 19:02:44 +01:00
|
|
|
public:
|
2009-10-27 20:36:29 +00:00
|
|
|
TextDoc (QucsApp *, const QString&);
|
|
|
|
~TextDoc ();
|
|
|
|
|
|
|
|
void setName (const QString&);
|
|
|
|
bool load ();
|
|
|
|
int save ();
|
2024-02-07 23:11:01 +00:00
|
|
|
virtual float zoomBy (float zoom) override;
|
|
|
|
virtual void showNoZoom () override;
|
2009-10-27 20:36:29 +00:00
|
|
|
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
|
|
|
|
2024-02-07 23:11:01 +00:00
|
|
|
virtual void wheelEvent(QWheelEvent* event) override;
|
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);
|
2014-08-14 14:36:53 +04:00
|
|
|
void refreshLanguage(void);
|
2008-08-06 19:14:04 +00:00
|
|
|
|
2014-10-28 14:14:04 +08:00
|
|
|
QMenu* createStandardContextMenu();
|
2009-04-07 17:09:44 +00:00
|
|
|
|
2014-12-10 16:44:17 +08:00
|
|
|
signals:
|
2024-03-25 09:26:17 +03:00
|
|
|
void signalCursorPosChanged(int, int, QString);
|
2015-01-12 21:33:21 +08:00
|
|
|
void signalFileChanged(bool);
|
2014-12-10 16:47:32 +08:00
|
|
|
void signalUndoState(bool);
|
|
|
|
void signalRedoState(bool);
|
2014-12-10 16:44:17 +08:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
public slots:
|
2014-11-20 02:27:40 +08:00
|
|
|
void search(const QString &str, bool CaseSensitive, bool wordOnly, bool backward);
|
|
|
|
void replace(const QString &str, const QString &str2, bool needConfirmed,
|
|
|
|
bool CaseSensitive, bool wordOnly, bool backward);
|
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;
|
2014-03-15 19:02:44 +01:00
|
|
|
|
|
|
|
private slots:
|
2014-11-30 01:57:11 +08:00
|
|
|
void highlightCurrentLine();
|
|
|
|
bool baseSearch(const QString &, bool, bool, bool);
|
2006-03-28 06:10:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|