mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
322 lines
10 KiB
C++
322 lines
10 KiB
C++
/***************************************************************************
|
|
qucssettingsdialog.cpp
|
|
------------------------
|
|
begin : Sun May 23 2004
|
|
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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
#include "qucssettingsdialog.h"
|
|
#include "main.h"
|
|
#include "qucsview.h"
|
|
|
|
#include <qwidget.h>
|
|
#include <qlabel.h>
|
|
#include <qhbox.h>
|
|
#include <qtabwidget.h>
|
|
#include <qlayout.h>
|
|
#include <qcolordialog.h>
|
|
#include <qfontdialog.h>
|
|
#include <qvalidator.h>
|
|
#include <qpushbutton.h>
|
|
#include <qlineedit.h>
|
|
#include <qlistview.h>
|
|
|
|
|
|
QucsSettingsDialog::QucsSettingsDialog(QucsApp *parent, const char *name)
|
|
: QDialog(parent, name, TRUE, Qt::WDestructiveClose)
|
|
{
|
|
App = parent;
|
|
setCaption(tr("Edit Qucs Properties"));
|
|
|
|
Expr.setPattern("[\\w_]+");
|
|
Validator = new QRegExpValidator(Expr, this);
|
|
|
|
all = new QVBoxLayout(this); // to provide the neccessary size
|
|
QTabWidget *t = new QTabWidget(this);
|
|
all->addWidget(t);
|
|
|
|
// ...........................................................
|
|
QWidget *Tab1 = new QWidget(t);
|
|
QGridLayout *gp = new QGridLayout(Tab1,6,2,5,5);
|
|
|
|
gp->addWidget(new QLabel(tr("Font (set after reload):"), Tab1), 0,0);
|
|
FontButton = new QPushButton(Tab1);
|
|
connect(FontButton, SIGNAL(clicked()), SLOT(slotFontDialog()));
|
|
gp->addWidget(FontButton,0,1);
|
|
|
|
gp->addWidget(new QLabel(tr("Document Background Color:"), Tab1) ,1,0);
|
|
BGColorButton = new QPushButton(" ", Tab1);
|
|
connect(BGColorButton, SIGNAL(clicked()), SLOT(slotBGColorDialog()));
|
|
gp->addWidget(BGColorButton,1,1);
|
|
|
|
gp->addWidget(new QLabel(tr("Language (set after reload):"), Tab1) ,2,0);
|
|
LanguageCombo = new QComboBox(Tab1);
|
|
LanguageCombo->insertItem(tr("system language"));
|
|
LanguageCombo->insertItem(tr("English")+" (en)");
|
|
LanguageCombo->insertItem(tr("German")+" (de)");
|
|
LanguageCombo->insertItem(tr("French")+" (fr)");
|
|
LanguageCombo->insertItem(tr("Spanish")+" (es)");
|
|
LanguageCombo->insertItem(tr("Italian")+" (it)");
|
|
LanguageCombo->insertItem(tr("Polish")+" (pl)");
|
|
LanguageCombo->insertItem(tr("Roumanian")+" (ro)");
|
|
LanguageCombo->insertItem(tr("Japanese")+" (jp)");
|
|
gp->addWidget(LanguageCombo,2,1);
|
|
|
|
val200 = new QIntValidator(0, 200, this);
|
|
gp->addWidget(new QLabel(tr("maximum undo operations:"), Tab1) ,3,0);
|
|
undoNumEdit = new QLineEdit(Tab1);
|
|
undoNumEdit->setValidator(val200);
|
|
gp->addWidget(undoNumEdit,3,1);
|
|
|
|
gp->addWidget(new QLabel(tr("text editor:"), Tab1) ,4,0);
|
|
editorEdit = new QLineEdit(Tab1);
|
|
gp->addWidget(editorEdit,4,1);
|
|
|
|
|
|
t->addTab(Tab1, tr("Settings"));
|
|
|
|
// ...........................................................
|
|
QWidget *Tab2 = new QWidget(t);
|
|
QGridLayout *gp2 = new QGridLayout(Tab2,5,3,3,3);
|
|
|
|
QLabel *l7 = new QLabel(
|
|
tr("Register filename extensions here in order to\nopen files with an appropriate program.")
|
|
, Tab2);
|
|
gp2->addMultiCellWidget(l7,0,0,0,2);
|
|
|
|
List_Suffix = new QListView(Tab2);
|
|
List_Suffix->addColumn(tr("Suffix"));
|
|
List_Suffix->addColumn(tr("Program"));
|
|
gp2->addMultiCellWidget(List_Suffix,1,4,0,0);
|
|
connect(List_Suffix, SIGNAL(clicked(QListViewItem*)),
|
|
SLOT(slotEditSuffix(QListViewItem*)));
|
|
|
|
// fill listview with already registered file extensions
|
|
QStringList::Iterator it = QucsSettings.FileTypes.begin();
|
|
while(it != QucsSettings.FileTypes.end()) {
|
|
new QListViewItem(List_Suffix,
|
|
(*it).section('/',0,0), (*it).section('/',1,1));
|
|
it++;
|
|
}
|
|
|
|
QLabel *l5 = new QLabel(tr("Suffix:"), Tab2);
|
|
gp2->addWidget(l5,1,1);
|
|
Input_Suffix = new QLineEdit(Tab2);
|
|
Input_Suffix->setValidator(Validator);
|
|
gp2->addWidget(Input_Suffix,1,2);
|
|
// connect(Input_Suffix, SIGNAL(returnPressed()), SLOT(slotGotoProgEdit()));
|
|
|
|
QLabel *l6 = new QLabel(tr("Program:"), Tab2);
|
|
gp2->addWidget(l6,2,1);
|
|
Input_Program = new QLineEdit(Tab2);
|
|
gp2->addWidget(Input_Program,2,2);
|
|
|
|
QHBox *h = new QHBox(Tab2);
|
|
h->setSpacing(3);
|
|
gp2->addMultiCellWidget(h,3,3,1,2);
|
|
|
|
QPushButton *AddButt = new QPushButton(tr("Set"), h);
|
|
connect(AddButt, SIGNAL(clicked()), SLOT(slotAdd()));
|
|
QPushButton *RemoveButt = new QPushButton(tr("Remove"), h);
|
|
connect(RemoveButt, SIGNAL(clicked()), SLOT(slotRemove()));
|
|
|
|
gp2->setRowStretch(4,5);
|
|
t->addTab(Tab2, tr("File Types"));
|
|
|
|
// ...........................................................
|
|
// buttons on the bottom of the dialog (independent of the TabWidget)
|
|
QHBox *Butts = new QHBox(this);
|
|
Butts->setSpacing(3);
|
|
Butts->setMargin(3);
|
|
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
|
|
|
|
Font = QucsSettings.font;
|
|
FontButton->setText(Font.toString());
|
|
BGColorButton->setPaletteBackgroundColor(
|
|
App->view->viewport()->paletteBackgroundColor());
|
|
undoNumEdit->setText(QString::number(QucsSettings.maxUndo));
|
|
editorEdit->setText(QucsSettings.Editor);
|
|
|
|
for(int z=LanguageCombo->count()-1; z>=0; z--)
|
|
if(LanguageCombo->text(z).section('(',1,1).remove(')') == QucsSettings.Language)
|
|
LanguageCombo->setCurrentItem(z);
|
|
|
|
resize(300, 200);
|
|
}
|
|
|
|
QucsSettingsDialog::~QucsSettingsDialog()
|
|
{
|
|
delete all;
|
|
delete val200;
|
|
delete Validator;
|
|
}
|
|
|
|
// -----------------------------------------------------------
|
|
void QucsSettingsDialog::slotEditSuffix(QListViewItem *Item)
|
|
{
|
|
if(Item) {
|
|
Input_Suffix->setText(Item->text(0));
|
|
Input_Program->setText(Item->text(1));
|
|
}
|
|
else {
|
|
Input_Suffix->setFocus();
|
|
Input_Suffix->setText("");
|
|
Input_Program->setText("");
|
|
}
|
|
}
|
|
|
|
// -----------------------------------------------------------
|
|
void QucsSettingsDialog::slotAdd()
|
|
{
|
|
QListViewItem *Item = List_Suffix->selectedItem();
|
|
if(Item) {
|
|
Item->setText(0, Input_Suffix->text());
|
|
Item->setText(1, Input_Program->text());
|
|
return;
|
|
}
|
|
|
|
|
|
for(Item = List_Suffix->firstChild(); Item!=0; Item = Item->itemBelow())
|
|
if(Item->text(0) == Input_Suffix->text()) {
|
|
QMessageBox::critical(this, tr("Error"),
|
|
tr("This suffix is already registered!"));
|
|
return;
|
|
}
|
|
|
|
List_Suffix->ensureItemVisible(
|
|
new QListViewItem(List_Suffix, List_Suffix->lastItem(),
|
|
Input_Suffix->text(), Input_Program->text()));
|
|
Input_Suffix->setFocus();
|
|
Input_Suffix->setText("");
|
|
Input_Program->setText("");
|
|
}
|
|
|
|
// -----------------------------------------------------------
|
|
void QucsSettingsDialog::slotRemove()
|
|
{
|
|
QListViewItem *Item = List_Suffix->selectedItem();
|
|
if(Item == 0) return;
|
|
|
|
List_Suffix->takeItem(Item); // remove from ListView
|
|
delete Item;
|
|
|
|
Input_Suffix->setText("");
|
|
Input_Program->setText("");
|
|
}
|
|
|
|
// -----------------------------------------------------------
|
|
void QucsSettingsDialog::slotOK()
|
|
{
|
|
slotApply();
|
|
accept();
|
|
}
|
|
|
|
// -----------------------------------------------------------
|
|
void QucsSettingsDialog::slotApply()
|
|
{
|
|
bool changed = false;
|
|
|
|
if(App->view->viewport()->paletteBackgroundColor() !=
|
|
BGColorButton->paletteBackgroundColor()) {
|
|
App->view->viewport()->setPaletteBackgroundColor(
|
|
BGColorButton->paletteBackgroundColor());
|
|
changed = true;
|
|
}
|
|
if(App->view->editText->paletteBackgroundColor() !=
|
|
BGColorButton->paletteBackgroundColor()) {
|
|
App->view->editText->setPaletteBackgroundColor(
|
|
BGColorButton->paletteBackgroundColor());
|
|
changed = true;
|
|
}
|
|
|
|
if(savingFont != Font) {
|
|
savingFont = Font;
|
|
// App->setFont(Font);
|
|
// App->ContentMenu->setFont(Font);
|
|
changed = true;
|
|
}
|
|
|
|
QucsSettings.Language =
|
|
LanguageCombo->currentText().section('(',1,1).remove(')');
|
|
|
|
bool ok;
|
|
if(QucsSettings.maxUndo != undoNumEdit->text().toUInt(&ok)) {
|
|
QucsSettings.maxUndo = undoNumEdit->text().toInt(&ok);
|
|
changed = true;
|
|
}
|
|
if(QucsSettings.Editor != editorEdit->text()) {
|
|
QucsSettings.Editor = editorEdit->text();
|
|
changed = true;
|
|
}
|
|
|
|
QListViewItem *Item;
|
|
QucsSettings.FileTypes.clear();
|
|
for(Item = List_Suffix->firstChild(); Item!=0; Item = Item->itemBelow())
|
|
QucsSettings.FileTypes.append(Item->text(0)+"/"+Item->text(1));
|
|
|
|
|
|
saveApplSettings(App); // also sets the small and large font
|
|
if(changed)
|
|
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()
|
|
{
|
|
Font = QFont("Helvetica", 12);
|
|
FontButton->setText(Font.toString());
|
|
LanguageCombo->setCurrentItem(0);
|
|
BGColorButton->setPaletteBackgroundColor(QColor(255,250,225));
|
|
|
|
undoNumEdit->setText("20");
|
|
editorEdit->setText(QucsSettings.BinDir + "qucsedit");
|
|
}
|