qucs_s/qucs/paintings/filldialog.cpp

173 lines
5.7 KiB
C++
Raw Normal View History

2004-05-20 17:27:41 +00:00
/***************************************************************************
filldialog.cpp - description
-------------------
begin : Thu May 20 2004
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-05-20 17:27:41 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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 "filldialog.h"
2013-05-30 11:54:54 +02:00
#include <QLabel>
#include <QValidator>
#include <QColorDialog>
#include <QTabWidget>
#include <QLineEdit>
#include <QPushButton>
#include <QComboBox>
#include <QCheckBox>
#include <QGridLayout>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QWidget>
2004-05-20 17:27:41 +00:00
#include "misc.h"
2004-06-16 17:41:33 +00:00
FillDialog::FillDialog(const QString& _Caption, bool show, QWidget *parent)
: QDialog(parent)
2004-05-20 17:27:41 +00:00
{
setWindowTitle(_Caption);
2004-05-20 17:27:41 +00:00
all = new QVBoxLayout(this); // to provide the necessary size
2004-06-16 17:41:33 +00:00
QTabWidget *t = new QTabWidget(this);
all->addWidget(t);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
// ...........................................................
QWidget *Tab1 = new QWidget(t);
QGridLayout *gp1 = new QGridLayout(Tab1);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
gp1->addWidget(new QLabel(tr("Line Width: "), Tab1), 0,0);
2004-11-21 17:47:19 +00:00
val100 = new QIntValidator(0,100, this);
2004-06-16 17:41:33 +00:00
LineWidth = new QLineEdit(Tab1);
2004-11-21 17:47:19 +00:00
LineWidth->setValidator(val100);
2004-05-20 17:27:41 +00:00
LineWidth->setMaximumWidth(35);
LineWidth->setText("0");
2004-06-16 17:41:33 +00:00
gp1->addWidget(LineWidth, 0,1);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
gp1->addWidget(new QLabel(tr("Line Color: "), Tab1), 1,0);
ColorButt = new QPushButton(" ",Tab1);
misc::setPickerColor(ColorButt,QColor(0,0,0));
2004-06-16 17:41:33 +00:00
connect(ColorButt, SIGNAL(clicked()), SLOT(slotSetColor()));
gp1->addWidget(ColorButt, 1,1);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
gp1->addWidget(new QLabel(tr("Line Style: "), Tab1), 2,0);
StyleBox = new QComboBox(Tab1);
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"));
2004-06-16 17:41:33 +00:00
gp1->addWidget(StyleBox, 2,1);
t->addTab(Tab1, tr("Line Style"));
// ...........................................................
if(show) {
QWidget *Tab2 = new QWidget(t);
QGridLayout *gp2 = new QGridLayout(Tab2);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
CheckFilled = new QCheckBox(tr("enable filling"),Tab2);
connect(CheckFilled, SIGNAL(toggled(bool)), SLOT(slotCheckFilled(bool)));
2022-09-12 15:03:16 +03:00
gp2->addWidget(CheckFilled, 0, 0);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
FillLabel1 = new QLabel(tr("Fill Color: "), Tab2);
2022-09-12 15:03:16 +03:00
gp2->addWidget(FillLabel1,1,0);
2004-06-16 17:41:33 +00:00
FillColorButt = new QPushButton(" ", Tab2);
misc::setPickerColor(FillColorButt,QColor(0,0,0));
2004-05-20 17:27:41 +00:00
connect(FillColorButt, SIGNAL(clicked()), SLOT(slotSetFillColor()));
2022-09-12 15:03:16 +03:00
gp2->addWidget(FillColorButt,1,1);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
FillLabel2 = new QLabel(tr("Fill Style: "), Tab2);
2022-09-12 15:03:16 +03:00
gp2->addWidget(FillLabel2,2,0);
2004-06-16 17:41:33 +00:00
FillStyleBox = new QComboBox(Tab2);
FillStyleBox->addItem(tr("no filling"));
FillStyleBox->addItem(tr("solid"));
FillStyleBox->addItem(tr("dense 1 (densest)"));
FillStyleBox->addItem(tr("dense 2"));
FillStyleBox->addItem(tr("dense 3"));
FillStyleBox->addItem(tr("dense 4"));
FillStyleBox->addItem(tr("dense 5"));
FillStyleBox->addItem(tr("dense 6"));
FillStyleBox->addItem(tr("dense 7 (least dense)"));
FillStyleBox->addItem(tr("horizontal line"));
FillStyleBox->addItem(tr("vertical line"));
FillStyleBox->addItem(tr("crossed lines"));
FillStyleBox->addItem(tr("hatched backwards"));
FillStyleBox->addItem(tr("hatched forwards"));
FillStyleBox->addItem(tr("diagonal crossed"));
2022-09-12 15:03:16 +03:00
gp2->addWidget(FillStyleBox,2,1);
2004-06-16 17:41:33 +00:00
t->addTab(Tab2, tr("Filling Style"));
}
// ...........................................................
2013-05-30 11:54:54 +02:00
QWidget *Butts = new QWidget(this);
QHBoxLayout *ButtsLayout = new QHBoxLayout();
ButtsLayout->setSpacing(5);
2023-01-17 13:27:12 +03:00
ButtsLayout->setContentsMargins(5,5,5,5);
2004-06-16 17:41:33 +00:00
2013-05-30 11:54:54 +02:00
QPushButton *ButtOK = new QPushButton(tr("OK"));
ButtsLayout->addWidget(ButtOK);
2004-06-16 17:41:33 +00:00
connect(ButtOK, SIGNAL(clicked()), SLOT(accept()));
QPushButton *ButtCancel = new QPushButton(tr("Cancel"),Butts);
2013-05-30 11:54:54 +02:00
ButtsLayout->addWidget(ButtCancel);
2004-06-16 17:41:33 +00:00
connect(ButtCancel, SIGNAL(clicked()), SLOT(reject()));
2013-05-30 11:54:54 +02:00
Butts->setLayout(ButtsLayout);
all->addWidget(Butts);
2004-05-20 17:27:41 +00:00
2004-06-16 17:41:33 +00:00
ButtOK->setDefault(true);
// ButtOK->setFocus();
2004-05-20 17:27:41 +00:00
}
FillDialog::~FillDialog()
{
2004-11-21 17:47:19 +00:00
delete all;
delete val100;
2004-05-20 17:27:41 +00:00
}
// --------------------------------------------------------------------------
void FillDialog::slotSetColor()
{
QColor c = QColorDialog::getColor(misc::getWidgetBackgroundColor(ColorButt),this);
if(c.isValid()) misc::setPickerColor(ColorButt,c);
2004-05-20 17:27:41 +00:00
}
// --------------------------------------------------------------------------
void FillDialog::slotSetFillColor()
{
QColor c =
QColorDialog::getColor(misc::getWidgetBackgroundColor(FillColorButt), this);
if (c.isValid()) misc::setPickerColor(FillColorButt,c);
2004-05-20 17:27:41 +00:00
}
2004-06-16 17:41:33 +00:00
// --------------------------------------------------------------------------
void FillDialog::slotCheckFilled(bool on)
{
if(on) {
FillLabel1->setEnabled(true);
FillColorButt->setEnabled(true);
FillLabel2->setEnabled(true);
FillStyleBox->setEnabled(true);
}
else {
FillLabel1->setEnabled(false);
FillColorButt->setEnabled(false);
FillLabel2->setEnabled(false);
FillStyleBox->setEnabled(false);
}
}