mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/***************************************************************************
|
|
componentdialog.h - description
|
|
-------------------
|
|
begin : Tue Sep 9 2003
|
|
copyright : (C) 2003 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 COMPONENTDIALOG_H
|
|
#define COMPONENTDIALOG_H
|
|
|
|
#include "component.h"
|
|
|
|
#include <qlabel.h>
|
|
#include <qdialog.h>
|
|
#include <qlistview.h>
|
|
#include <qlineedit.h>
|
|
#include <qcheckbox.h>
|
|
#include <qregexp.h>
|
|
#include <qcombobox.h>
|
|
#include <qpushbutton.h>
|
|
|
|
|
|
/**
|
|
*@author Michael Margraf
|
|
*/
|
|
|
|
class ComponentDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
ComponentDialog(Component *c, QWidget *parent=0, const char *name=0);
|
|
~ComponentDialog();
|
|
|
|
private slots:
|
|
void slotButtOK();
|
|
void slotButtCancel();
|
|
void slotSelectProperty(QListViewItem *item);
|
|
void slotApplyInput();
|
|
void slotApplyState(int State);
|
|
void slotBrowseFile();
|
|
void slotApplyChange(const QString& Text);
|
|
void slotApplyProperty();
|
|
void slotApplyPropName();
|
|
|
|
void slotButtAdd();
|
|
void slotButtRem();
|
|
|
|
private:
|
|
QRegExp Expr;
|
|
QListView *prop;
|
|
QLineEdit *edit, *NameEdit;
|
|
QComboBox *ComboEdit;
|
|
QLabel *Name, *Description;
|
|
QPushButton *BrowseButt, *ButtAdd, *ButtRem;
|
|
QCheckBox *disp;
|
|
Component *Comp;
|
|
bool changed, transfered;
|
|
};
|
|
|
|
#endif
|