2004-05-25 19:10:00 +00:00
|
|
|
/***************************************************************************
|
2005-11-28 07:17:35 +00:00
|
|
|
qucssettingsdialog.h
|
|
|
|
----------------------
|
2004-05-25 19:10:00 +00:00
|
|
|
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
|
2016-02-07 12:37:42 +01:00
|
|
|
copyright : (C) 2016 by Qucs Team (see AUTHORS file)
|
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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCSSETTINGSDIALOG_H
|
|
|
|
#define QUCSSETTINGSDIALOG_H
|
|
|
|
|
|
|
|
#include "qucs.h"
|
|
|
|
|
2013-06-01 16:21:50 +02:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QFont>
|
2023-01-17 13:27:12 +03:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionValidator>
|
2013-06-01 16:21:50 +02:00
|
|
|
#include <QVBoxLayout>
|
2004-11-21 17:47:19 +00:00
|
|
|
|
|
|
|
class QLineEdit;
|
2007-05-04 16:30:20 +00:00
|
|
|
class QCheckBox;
|
2013-06-01 16:21:50 +02:00
|
|
|
class QVBoxLayout;
|
2004-11-21 17:47:19 +00:00
|
|
|
class QPushButton;
|
2006-02-14 07:25:27 +00:00
|
|
|
class QComboBox;
|
2004-11-21 17:47:19 +00:00
|
|
|
class QIntValidator;
|
2005-11-28 07:17:35 +00:00
|
|
|
class QRegExpValidator;
|
2013-06-01 16:21:50 +02:00
|
|
|
class QStandardItemModel;
|
2014-11-04 10:36:05 +08:00
|
|
|
class QTableWidget;
|
2004-05-25 19:10:00 +00:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
class QucsSettingsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2004-05-25 19:10:00 +00:00
|
|
|
public:
|
2016-02-07 12:37:42 +01:00
|
|
|
QucsSettingsDialog(QucsApp *parent=0);
|
2013-09-09 01:45:17 +01:00
|
|
|
~QucsSettingsDialog();
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
|
|
private slots:
|
2013-09-09 01:45:17 +01:00
|
|
|
void slotOK();
|
|
|
|
void slotApply();
|
|
|
|
void slotFontDialog();
|
2022-03-12 11:45:02 +01:00
|
|
|
void slotAppFontDialog();
|
2024-02-09 20:40:20 +00:00
|
|
|
void slotTextFontDialog();
|
2013-09-09 01:45:17 +01:00
|
|
|
void slotBGColorDialog();
|
|
|
|
void slotDefaultValues();
|
2013-09-10 17:35:14 +01:00
|
|
|
void slotAddFileType();
|
|
|
|
void slotRemoveFileType();
|
2013-09-09 01:45:17 +01:00
|
|
|
void slotColorComment();
|
|
|
|
void slotColorString();
|
|
|
|
void slotColorInteger();
|
|
|
|
void slotColorReal();
|
|
|
|
void slotColorCharacter();
|
|
|
|
void slotColorDataType();
|
|
|
|
void slotColorAttribute();
|
|
|
|
void slotColorDirective();
|
|
|
|
void slotColorTask();
|
|
|
|
void slotTableClicked(int,int);
|
|
|
|
void slotPathTableClicked(int,int);
|
2014-05-18 23:14:16 +02:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
void slotHomeDirBrowse();
|
2014-05-18 23:14:16 +02:00
|
|
|
void slotAdmsXmlDirBrowse();
|
2014-05-18 23:47:12 +02:00
|
|
|
void slotAscoDirBrowse();
|
2014-05-18 23:14:16 +02:00
|
|
|
void slotOctaveDirBrowse();
|
2022-12-19 19:38:03 +03:00
|
|
|
void slotOpenVAFDirBrowse();
|
2024-03-20 09:26:11 +03:00
|
|
|
void slotRFLayoutDirBrowse();
|
2014-05-18 23:14:16 +02:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
void slotAddPath();
|
|
|
|
void slotAddPathWithSubFolders();
|
|
|
|
void slotRemovePath();
|
2016-02-06 19:21:42 +01:00
|
|
|
void slotPathSelectionChanged();
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
|
|
public:
|
2013-09-09 01:45:17 +01:00
|
|
|
QucsApp *App;
|
2004-05-25 19:10:00 +00:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
QFont Font;
|
2022-03-12 11:45:02 +01:00
|
|
|
QFont AppFont;
|
2024-02-09 20:40:20 +00:00
|
|
|
QFont TextFont;
|
2014-10-28 16:56:20 +08:00
|
|
|
QCheckBox *checkWiring, *checkLoadFromFutureVersions,
|
2022-11-24 16:30:10 +03:00
|
|
|
*checkAntiAliasing, *checkTextAntiAliasing,
|
|
|
|
*checkFullTraceNames;
|
2013-09-09 01:45:17 +01:00
|
|
|
QComboBox *LanguageCombo;
|
2022-03-12 16:22:13 +01:00
|
|
|
QComboBox *PanelIconsCombo, *CompIconsCombo;
|
2024-02-09 20:40:20 +00:00
|
|
|
QPushButton *FontButton, *AppFontButton, *TextFontButton, *BGColorButton;
|
2014-11-18 22:33:30 +01:00
|
|
|
QLineEdit *LargeFontSizeEdit, *undoNumEdit, *editorEdit, *Input_Suffix,
|
2022-12-19 19:38:03 +03:00
|
|
|
*Input_Program, *homeEdit, *admsXmlEdit, *ascoEdit, *octaveEdit,
|
2024-03-20 09:26:11 +03:00
|
|
|
*OpenVAFEdit, *RFLayoutEdit;
|
2013-09-10 17:35:14 +01:00
|
|
|
QTableWidget *fileTypesTableWidget, *pathsTableWidget;
|
2013-09-09 01:45:17 +01:00
|
|
|
QStandardItemModel *model;
|
|
|
|
QPushButton *ColorComment, *ColorString, *ColorInteger,
|
|
|
|
*ColorReal, *ColorCharacter, *ColorDataType, *ColorAttribute,
|
|
|
|
*ColorDirective, *ColorTask;
|
2016-02-06 19:21:42 +01:00
|
|
|
QPushButton *RemovePathButt;
|
2013-09-09 01:45:17 +01:00
|
|
|
|
|
|
|
QVBoxLayout *all;
|
2014-11-18 22:33:30 +01:00
|
|
|
QIntValidator *val50;
|
2013-09-09 01:45:17 +01:00
|
|
|
QIntValidator *val200;
|
2023-01-17 13:27:12 +03:00
|
|
|
QRegularExpression Expr;
|
|
|
|
QRegularExpressionValidator *Validator;
|
2013-09-09 01:45:17 +01:00
|
|
|
|
|
|
|
private:
|
2013-09-10 17:35:14 +01:00
|
|
|
QStringList currentPaths;
|
2016-02-06 19:21:42 +01:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
void makePathTable();
|
2004-11-21 17:47:19 +00:00
|
|
|
|
2004-05-25 19:10:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|