qucs_s/qucs-lib/qucslib.h

91 lines
2.6 KiB
C
Raw Normal View History

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>
#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
#include "../qucs/extsimkernels/spicecompat.h"
2005-05-30 06:19:42 +00:00
// Application settings.
struct tQucsSettings {
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;
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;
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);
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;
int libCurIdx;
2005-05-30 06:19:42 +00:00
SymbolWidget *Symbol;
2013-02-23 09:29:48 +01:00
QTextEdit *CompDescr;
QVBoxLayout *all;
QLineEdit *CompSearch;
2005-05-30 06:19:42 +00:00
};
#endif /* QUCSLIB_H */