mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/***************************************************************************
|
|
textboxdialog.h
|
|
-----------------
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 TEXTBOXDIALOG_H
|
|
#define TEXTBOXDIALOG_H
|
|
|
|
#include "components/component.h"
|
|
#include <QtGui>
|
|
#include <QtWidgets>
|
|
|
|
|
|
/*!
|
|
\file textboxdialog.h
|
|
\brief Implementation of the TextBoxDialog class
|
|
*/
|
|
|
|
/*!
|
|
* \brief The TextBoxDialog class is responsible for editing a single
|
|
* text entry of a generic component.
|
|
*/
|
|
class TextBoxDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
private:
|
|
|
|
Component* comp;
|
|
QTextEdit* edtCode;
|
|
QPushButton *btnOK;
|
|
QPushButton *btnApply;
|
|
QPushButton *btnCancel;
|
|
|
|
public:
|
|
explicit TextBoxDialog(const char* window_title, Component *pc, QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
private slots:
|
|
void slotApply();
|
|
void slotOK();
|
|
void slotCancel();
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // CUSTOMSIMDIALOG_H
|