qucs_s/qucs/paintings/arrowdialog.cpp
Krasilnikov Sergei 05177da97b working with qt6
2023-01-17 13:27:12 +03:00

159 lines
5.0 KiB
C++

/***************************************************************************
arrowdialog.cpp
-----------------
begin : Fri Nov 28 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. *
* *
***************************************************************************/
#include "arrowdialog.h"
#include <QLabel>
#include <QValidator>
#include <QColorDialog>
#include <QLineEdit>
#include <QPushButton>
#include <QComboBox>
#include <QWidget>
#include <QHBoxLayout>
#include "misc.h"
ArrowDialog::ArrowDialog(QWidget *parent, const char *name)
: QDialog(parent)
{
Q_UNUSED(name);
setWindowTitle(tr("Edit Arrow Properties"));
val100 = new QIntValidator(0, 100, this);
all = new QGridLayout(this);
all->setContentsMargins(3,3,3,3);
all->addWidget(new QLabel(tr("Head Length: "), this), 0,0);
HeadLength = new QLineEdit(this);
HeadLength->setValidator(val100);
HeadLength->setMaximumWidth(35);
HeadLength->setText("10");
all->addWidget(HeadLength, 0,1);
all->addWidget(new QLabel(tr(" Head Width: "), this), 0,2);
HeadWidth = new QLineEdit(this);
HeadWidth->setValidator(val100);
HeadWidth->setMaximumWidth(35);
HeadWidth->setText("10");
all->addWidget(HeadWidth, 0,3);
all->addWidget(new QLabel(tr("Line color: "), this), 1,0);
ColorButt = new QPushButton(" ",this);
misc::setPickerColor(ColorButt,QColor(0,0,0));
connect(ColorButt, SIGNAL(clicked()), SLOT(slotSetColor()));
all->addWidget(ColorButt, 1,1);
all->addWidget(new QLabel(tr(" Line Width: "), this), 1,2);
LineWidth = new QLineEdit(this);
LineWidth->setValidator(val100);
LineWidth->setMaximumWidth(35);
LineWidth->setText("0");
all->addWidget(LineWidth, 1,3);
all->addWidget(new QLabel(tr("Line style: "), this), 2,0);
StyleBox = new QComboBox(this);
StyleBox->addItem(tr("solid line"));
StyleBox->addItem(tr("dash line"));
StyleBox->addItem(tr("dot line"));
StyleBox->addItem(tr("dash dot line"));
StyleBox->addItem(tr("dash dot dot line"));
connect(StyleBox, SIGNAL(activated(int)), SLOT(slotSetStyle(int)));
LineStyle = Qt::SolidLine;
all->addWidget(StyleBox, 2,1,1,3);
all->addWidget(new QLabel(tr("Arrow head: "), this), 3,0);
ArrowStyleBox = new QComboBox(this);
ArrowStyleBox->addItem(tr("two lines"));
ArrowStyleBox->addItem(tr("filled"));
all->addWidget(ArrowStyleBox, 3,1,1,3);
QWidget *h1 = new QWidget(this);
QHBoxLayout *h1Layout = new QHBoxLayout();
QPushButton *ButtOK = new QPushButton(tr("OK"));
h1Layout->addWidget(ButtOK);
connect(ButtOK, SIGNAL(clicked()), SLOT(accept()));
QPushButton *ButtCancel = new QPushButton(tr("Cancel"));
h1Layout->addWidget(ButtCancel);
connect(ButtCancel, SIGNAL(clicked()), SLOT(reject()));
h1->setLayout(h1Layout);
all->addWidget(h1, 4,0);
ButtOK->setFocus();
}
ArrowDialog::~ArrowDialog()
{
delete all;
delete val100;
}
// --------------------------------------------------------------------------
void ArrowDialog::slotSetColor()
{
QColor c = QColorDialog::getColor(misc::getWidgetBackgroundColor(ColorButt),this);
if(c.isValid()) {
misc::setPickerColor(ColorButt,c);
}
}
// --------------------------------------------------------------------------
void ArrowDialog::slotSetStyle(int index)
{
switch(index) {
case 0 : LineStyle = Qt::SolidLine;
break;
case 1 : LineStyle = Qt::DashLine;
break;
case 2 : LineStyle = Qt::DotLine;
break;
case 3 : LineStyle = Qt::DashDotLine;
break;
case 4 : LineStyle = Qt::DashDotDotLine;
break;
default: ;
}
}
// --------------------------------------------------------------------------
void ArrowDialog::SetComboBox(Qt::PenStyle _Style)
{
LineStyle = _Style;
switch(_Style) {
case Qt::SolidLine : StyleBox->setCurrentIndex(0);
break;
case Qt::DashLine : StyleBox->setCurrentIndex(1);
break;
case Qt::DotLine : StyleBox->setCurrentIndex(2);
break;
case Qt::DashDotLine : StyleBox->setCurrentIndex(3);
break;
case Qt::DashDotDotLine : StyleBox->setCurrentIndex(4);
break;
default: ;
}
}