qucs_s/qucs/dialogs/labeldialog.h
Krasilnikov Sergei 05177da97b working with qt6
2023-01-17 13:27:12 +03:00

59 lines
1.7 KiB
C++

/***************************************************************************
labeldialog.h
---------------
begin : Thu Dec 09 2004
copyright : (C) 2004 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 LABELDIALOG_H
#define LABELDIALOG_H
#include <QDialog>
#include <QRegularExpression>
#include <QRegularExpressionValidator>
#include <QGridLayout>
#include <QLabel>
class QLabel;
class QLineEdit;
class QPushButton;
class QGridLayout;
class QRegExpValidator;
class WireLabel;
class LabelDialog : public QDialog {
Q_OBJECT
public:
LabelDialog(WireLabel*, QWidget *parent=0);
~LabelDialog();
QLineEdit *NodeName, *InitValue;
private slots:
void slotExtend();
void slotOk();
void slotCancel();
private:
QPushButton *ButtonOk, *ButtonCancel, *ButtonMore;
QGridLayout *gbox;
QRegularExpressionValidator *Validator1, *Validator2;
QRegularExpression Expr1, Expr2;
QLabel *Label2;
WireLabel *pLabel;
};
#endif