qucs_s/qucs/dialogs/qucssettingsdialog.h

119 lines
3.6 KiB
C
Raw Normal View History

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
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"
#include <QDialog>
#include <QFont>
2023-01-17 13:27:12 +03:00
#include <QRegularExpression>
#include <QRegularExpressionValidator>
#include <QVBoxLayout>
2004-11-21 17:47:19 +00:00
class QLineEdit;
class QCheckBox;
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;
class QStandardItemModel;
class QTableWidget;
2004-05-25 19:10:00 +00:00
class QucsSettingsDialog : public QDialog
{
Q_OBJECT
2004-05-25 19:10:00 +00:00
public:
QucsSettingsDialog(QucsApp *parent=0);
~QucsSettingsDialog();
2004-05-25 19:10:00 +00:00
private slots:
void slotOK();
void slotApply();
void slotFontDialog();
void slotAppFontDialog();
void slotTextFontDialog();
void slotBGColorDialog();
void slotDefaultValues();
void slotAddFileType();
void slotRemoveFileType();
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);
void slotHomeDirBrowse();
void slotAdmsXmlDirBrowse();
void slotAscoDirBrowse();
void slotOctaveDirBrowse();
2022-12-19 19:38:03 +03:00
void slotOpenVAFDirBrowse();
2024-03-20 09:26:11 +03:00
void slotRFLayoutDirBrowse();
void slotAddPath();
void slotAddPathWithSubFolders();
void slotRemovePath();
void slotPathSelectionChanged();
2004-05-25 19:10:00 +00:00
public:
QucsApp *App;
2004-05-25 19:10:00 +00:00
QFont Font;
QFont AppFont;
QFont TextFont;
QCheckBox *checkWiring, *checkLoadFromFutureVersions,
*checkAntiAliasing, *checkTextAntiAliasing,
*checkFullTraceNames;
QComboBox *LanguageCombo;
QComboBox *PanelIconsCombo, *CompIconsCombo;
QPushButton *FontButton, *AppFontButton, *TextFontButton, *BGColorButton;
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;
QTableWidget *fileTypesTableWidget, *pathsTableWidget;
QStandardItemModel *model;
QPushButton *ColorComment, *ColorString, *ColorInteger,
*ColorReal, *ColorCharacter, *ColorDataType, *ColorAttribute,
*ColorDirective, *ColorTask;
QPushButton *RemovePathButt;
QVBoxLayout *all;
QIntValidator *val50;
QIntValidator *val200;
2023-01-17 13:27:12 +03:00
QRegularExpression Expr;
QRegularExpressionValidator *Validator;
private:
QStringList currentPaths;
private:
void makePathTable();
2004-11-21 17:47:19 +00:00
2004-05-25 19:10:00 +00:00
};
#endif