qucs_s/qucs/dialogs/qucssettingsdialog.cpp

182 lines
5.8 KiB
C++
Raw Normal View History

2004-05-25 19:10:00 +00:00
/***************************************************************************
qucssettingsdialog.cpp - description
-------------------
begin : Sun May 23 2004
copyright : (C) 2003 by Michael Margraf
2004-06-12 12:35:04 +00:00
email : michael.margraf@alumni.tu-berlin.de
2004-05-25 19:10:00 +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 "qucssettingsdialog.h"
#include "../main.h"
#include <qwidget.h>
#include <qlabel.h>
#include <qhbox.h>
#include <qtabwidget.h>
#include <qlayout.h>
#include <qcolordialog.h>
#include <qfontdialog.h>
2004-06-12 12:35:04 +00:00
#include <qvalidator.h>
2004-05-25 19:10:00 +00:00
QucsSettingsDialog::QucsSettingsDialog(QucsApp *parent,
const char *name)
: QDialog(parent, name, TRUE, Qt::WDestructiveClose)
{
App = parent;
setCaption(tr("Edit Qucs Properties"));
QVBoxLayout *all = new QVBoxLayout(this); // to provide the neccessary size
QTabWidget *t = new QTabWidget(this);
all->addWidget(t);
// ...........................................................
QWidget *Tab1 = new QWidget(t);
2004-06-12 12:35:04 +00:00
QGridLayout *gp = new QGridLayout(Tab1,3,2,5,5);
2004-05-25 19:10:00 +00:00
QLabel *l1 = new QLabel(tr("Font (set after reload):"), Tab1);
gp->addWidget(l1,0,0);
FontButton = new QPushButton(Tab1);
connect(FontButton, SIGNAL(clicked()), SLOT(slotFontDialog()));
gp->addWidget(FontButton,0,1);
QLabel *l2 = new QLabel(tr("Document Background Color:"), Tab1);
gp->addWidget(l2,1,0);
BGColorButton = new QPushButton(" ", Tab1);
connect(BGColorButton, SIGNAL(clicked()), SLOT(slotBGColorDialog()));
gp->addWidget(BGColorButton,1,1);
2004-06-12 12:35:04 +00:00
QLabel *l3 = new QLabel(tr("maximum undo operations:"), Tab1);
gp->addWidget(l3,2,0);
undoNumEdit = new QLineEdit(Tab1);
undoNumEdit->setValidator(new QIntValidator(0, 200, undoNumEdit));
gp->addWidget(undoNumEdit,2,1);
2004-05-25 19:10:00 +00:00
t->addTab(Tab1, tr("Design"));
// ...........................................................
/* QWidget *Tab2 = new QWidget(t);
QGridLayout *gp2 = new QGridLayout(Tab2,3,2,5,5);
Check_GridOn = new QCheckBox(tr("show Grid"),Tab2);
QLabel *l3 = new QLabel(tr("horizontal Grid:"), Tab2);
gp2->addWidget(l3,1,0);
Input_GridX = new QLineEdit(Tab2);
gp2->addWidget(Input_GridX,1,1);
QLabel *l4 = new QLabel(tr("vertical Grid:"), Tab2);
gp2->addWidget(l4,2,0);
Input_GridY = new QLineEdit(Tab2);
gp2->addWidget(Input_GridY,2,1);
t->addTab(Tab2, tr("Grid"));
*/
// ...........................................................
// buttons on the bottom of the dialog (independent of the TabWidget)
QHBox *Butts = new QHBox(this);
Butts->setSpacing(5);
Butts->setMargin(5);
all->addWidget(Butts);
QPushButton *OkButt = new QPushButton(tr("OK"), Butts);
connect(OkButt, SIGNAL(clicked()), SLOT(slotOK()));
QPushButton *ApplyButt = new QPushButton(tr("Apply"), Butts);
connect(ApplyButt, SIGNAL(clicked()), SLOT(slotApply()));
QPushButton *CancelButt = new QPushButton(tr("Cancel"), Butts);
connect(CancelButt, SIGNAL(clicked()), SLOT(reject()));
QPushButton *DefaultButt = new QPushButton(tr("Default Values"), Butts);
connect(DefaultButt, SIGNAL(clicked()), SLOT(slotDefaultValues()));
OkButt->setDefault(true);
// ...........................................................
// fill the fields with the Qucs-Properties
2004-05-29 13:05:04 +00:00
Font = QucsSettings.font;
2004-05-25 19:10:00 +00:00
FontButton->setText(Font.toString());
BGColorButton->setPaletteBackgroundColor(
App->view->viewport()->paletteBackgroundColor());
2004-06-12 12:35:04 +00:00
undoNumEdit->setText(QString::number(QucsSettings.maxUndo));
2004-05-25 19:10:00 +00:00
}
QucsSettingsDialog::~QucsSettingsDialog()
{
}
// -----------------------------------------------------------
void QucsSettingsDialog::slotOK()
{
slotApply();
accept();
}
// -----------------------------------------------------------
void QucsSettingsDialog::slotApply()
{
bool changed = false;
if(App->view->viewport()->paletteBackgroundColor() !=
2004-05-29 13:05:04 +00:00
BGColorButton->paletteBackgroundColor()) {
2004-05-25 19:10:00 +00:00
App->view->viewport()->setPaletteBackgroundColor(
BGColorButton->paletteBackgroundColor());
changed = true;
}
2004-06-12 12:35:04 +00:00
if(savingFont != Font) {
savingFont = Font;
2004-05-29 13:05:04 +00:00
// App->setFont(Font);
// App->ContentMenu->setFont(Font);
changed = true;
}
2004-06-12 12:35:04 +00:00
bool ok;
if(QucsSettings.maxUndo != undoNumEdit->text().toUInt(&ok)) {
QucsSettings.maxUndo = undoNumEdit->text().toInt(&ok);
changed = true;
}
2004-05-25 19:10:00 +00:00
if(changed) {
2004-05-29 13:05:04 +00:00
saveApplSettings(App); // also sets the small and large font
2004-05-25 19:10:00 +00:00
App->repaint();
}
}
// -----------------------------------------------------------
void QucsSettingsDialog::slotFontDialog()
{
bool ok;
QFont tmpFont = QFontDialog::getFont(&ok, Font, this);
if(ok) {
Font = tmpFont;
FontButton->setText(Font.toString());
}
}
// -----------------------------------------------------------
void QucsSettingsDialog::slotBGColorDialog()
{
QColor c = QColorDialog::getColor(
BGColorButton->paletteBackgroundColor(), this);
if(c.isValid())
BGColorButton->setPaletteBackgroundColor(c);
}
// -----------------------------------------------------------
void QucsSettingsDialog::slotDefaultValues()
{
2004-05-29 13:05:04 +00:00
Font = QFont("Helvetica", 12);
2004-05-25 19:10:00 +00:00
FontButton->setText(Font.toString());
BGColorButton->setPaletteBackgroundColor(QColor(255,250,225));
}