mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
91 lines
2.6 KiB
C++
91 lines
2.6 KiB
C++
/***************************************************************************
|
|
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
|
|
|
|
#include <QMainWindow>
|
|
#include <QDir>
|
|
#include <QFont>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include <QTextEdit>
|
|
#include <QCloseEvent>
|
|
#include <QListWidgetItem>
|
|
#include <QVBoxLayout>
|
|
#include <QComboBox>
|
|
|
|
#include "symbolwidget.h"
|
|
|
|
#include "../qucs/extsimkernels/spicecompat.h"
|
|
|
|
|
|
// Application settings.
|
|
struct tQucsSettings {
|
|
int DefaultSimulator;
|
|
int x, y, dx, dy; // position and size of main window
|
|
QFont font; // font
|
|
QString LangDir; // translation directory
|
|
QString LibDir; // library directory
|
|
QString Language;
|
|
QDir QucsWorkDir; // Qucs user directory where user works (usually same as QucsWorkDir
|
|
QDir QucsHomeDir; // Qucs user directory where all projects are located
|
|
};
|
|
|
|
extern tQucsSettings QucsSettings;
|
|
extern QDir UserLibDir;
|
|
extern QDir SysLibDir;
|
|
|
|
class QucsLib : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
QucsLib();
|
|
~QucsLib();
|
|
|
|
QListWidget *CompList;
|
|
QComboBox *Library;
|
|
|
|
private slots:
|
|
void slotAbout();
|
|
void slotAboutQt();
|
|
void slotQuit();
|
|
void slotHelp();
|
|
void slotCopyToClipBoard();
|
|
void slotShowModel();
|
|
void slotSelectLibrary(int);
|
|
void slotSearchComponent(const QString &);
|
|
void slotSearchClear();
|
|
void slotShowComponent(QListWidgetItem*);
|
|
void slotManageLib();
|
|
|
|
private:
|
|
void closeEvent(QCloseEvent*);
|
|
void putLibrariesIntoCombobox();
|
|
// bool getSection(QString, QString &, QString &);
|
|
|
|
QMenu *fileMenu, *helpMenu;
|
|
|
|
int UserLibCount;
|
|
int libCurIdx;
|
|
SymbolWidget *Symbol;
|
|
QTextEdit *CompDescr;
|
|
QVBoxLayout *all;
|
|
QLineEdit *CompSearch;
|
|
};
|
|
|
|
#endif /* QUCSLIB_H */
|