2005-05-30 06:19:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
qucslib.h
|
|
|
|
-----------
|
|
|
|
begin : Sat May 28 2005
|
|
|
|
copyright : (C) 2005 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 QUCSLIB_H
|
|
|
|
#define QUCSLIB_H
|
|
|
|
|
2013-06-03 18:51:27 +02:00
|
|
|
#include <QMainWindow>
|
2013-02-23 09:29:48 +01:00
|
|
|
#include <QDir>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QTextEdit>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QCloseEvent>
|
2013-02-23 09:29:48 +01:00
|
|
|
#include <QListWidgetItem>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QComboBox>
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2013-02-23 09:29:48 +01:00
|
|
|
#include "symbolwidget.h"
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2016-05-05 19:28:56 +03:00
|
|
|
#include "../qucs/extsimkernels/spicecompat.h"
|
|
|
|
|
2005-05-30 06:19:42 +00:00
|
|
|
|
|
|
|
// Application settings.
|
|
|
|
struct tQucsSettings {
|
2016-05-05 19:28:56 +03:00
|
|
|
int DefaultSimulator;
|
2005-05-30 06:19:42 +00:00
|
|
|
int x, y, dx, dy; // position and size of main window
|
|
|
|
QFont font; // font
|
|
|
|
QString LangDir; // translation directory
|
|
|
|
QString LibDir; // library directory
|
2006-02-14 07:25:27 +00:00
|
|
|
QString Language;
|
2013-07-01 23:43:49 +02:00
|
|
|
QDir QucsWorkDir; // Qucs user directory where user works (usually same as QucsWorkDir
|
|
|
|
QDir QucsHomeDir; // Qucs user directory where all projects are located
|
2005-05-30 06:19:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern tQucsSettings QucsSettings;
|
2006-06-09 05:58:31 +00:00
|
|
|
extern QDir UserLibDir;
|
2016-11-17 22:09:34 +01:00
|
|
|
extern QDir SysLibDir;
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2013-06-03 18:51:27 +02:00
|
|
|
class QucsLib : public QMainWindow {
|
2005-05-30 06:19:42 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
QucsLib();
|
2013-06-03 18:51:27 +02:00
|
|
|
~QucsLib();
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2013-06-03 18:51:27 +02:00
|
|
|
QListWidget *CompList;
|
2005-06-23 06:06:40 +00:00
|
|
|
QComboBox *Library;
|
|
|
|
|
2005-05-30 06:19:42 +00:00
|
|
|
private slots:
|
|
|
|
void slotAbout();
|
2022-02-14 22:41:02 +01:00
|
|
|
void slotAboutQt();
|
2005-05-30 06:19:42 +00:00
|
|
|
void slotQuit();
|
|
|
|
void slotHelp();
|
|
|
|
void slotCopyToClipBoard();
|
|
|
|
void slotShowModel();
|
|
|
|
void slotSelectLibrary(int);
|
2015-07-07 23:30:07 +02:00
|
|
|
void slotSearchComponent(const QString &);
|
|
|
|
void slotSearchClear();
|
2013-02-23 09:29:48 +01:00
|
|
|
void slotShowComponent(QListWidgetItem*);
|
2013-05-26 16:41:38 +02:00
|
|
|
void slotManageLib();
|
2005-05-30 06:19:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void closeEvent(QCloseEvent*);
|
2006-06-12 06:07:21 +00:00
|
|
|
void putLibrariesIntoCombobox();
|
2014-01-31 16:59:40 +00:00
|
|
|
// bool getSection(QString, QString &, QString &);
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2013-05-26 16:41:38 +02:00
|
|
|
QMenu *fileMenu, *helpMenu;
|
|
|
|
|
2006-06-06 06:14:17 +00:00
|
|
|
int UserLibCount;
|
2015-07-07 23:30:07 +02:00
|
|
|
int libCurIdx;
|
2005-05-30 06:19:42 +00:00
|
|
|
SymbolWidget *Symbol;
|
2013-02-23 09:29:48 +01:00
|
|
|
QTextEdit *CompDescr;
|
|
|
|
QVBoxLayout *all;
|
2015-07-07 23:30:07 +02:00
|
|
|
QLineEdit *CompSearch;
|
2005-05-30 06:19:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* QUCSLIB_H */
|