1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* File: Configuration.h
*
* Author: Jacob Dekel
* Created on: Aug 7, 2009
*
* Copyright (c) 2009-2013 Jacob Dekel
* $Id$
*
* This object manages the Hercules configuration
*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#include "ConfigFile.h"
#include "HerculesStudio.h"
#include "ConfigurationEditor.h"
#include "DevicesWidget.h"
#include "ui_Configuration.h"
#include <QSyntaxHighlighter>
#include <QtWidgets/QDialog>
struct ConfigTableEntry
{
std::string keyword;
void (*populator)(Ui::ConfigurationClass *, const ConfigLine *, ConfigurationEditor::Direction dir);
};
class Configuration : public QDialog
{
Q_OBJECT
public:
Configuration(ConfigFile* confignFile, bool newConfig = false, QWidget *parent = 0);
virtual ~Configuration();
class DoubleDigitSpinBox : public QSpinBox
{
public:
DoubleDigitSpinBox(QWidget * parent = 0, bool appendPlus=false);
protected:
virtual int valueFromText(const QString& text) const;
virtual QString textFromValue(int value) const;
private:
bool mAppendPlus;
};
class HexSpinBox : public QSpinBox
{
public:
HexSpinBox(QWidget * parent = 0);
virtual QString textFromValue(int value) const;
protected:
virtual int valueFromText(const QString& text) const;
QValidator::State validate(QString & input, int & pos) const;
};
protected:
virtual void resizeEvent ( QResizeEvent * event );
private:
Ui::ConfigurationClass ui;
DevicesWidget * mDevWgt;
QPlainTextEdit * mFreeEdit;
QSyntaxHighlighter * mSyntaxHighlighter;
QWidget * mParent;
ConfigFile * mConfigFile;
bool mNewConfig;
bool mChanged; // text changed since last validation
bool mTimerSet; // validation timer was set
int mCurrTab;
int mLastSys; // updated by blockCountChanged()
static struct ConfigTableEntry mConfigTable[];
friend class ConfigHighlight;
void initilize();
void populate(ConfigurationEditor::Direction);
void handleHighlight(const ConfigLine& configLine, QTextCursor& cursor, QTextCharFormat& format);
signals:
void OKSignal();
private slots:
void okPressed();
void cancelPressed();
void autoMountBrowsePressed();
void autoScsiMountChanged();
void cpuPrioChanged(int);
void devPrioChanged(int);
void hercPrioChanged(int);
void todPrioChanged(int);
void ecpSvmChanged(int);
void httpPortChanged(int);
void httpRootBrowsePressed();
void modPathBrowsePressed();
void tabChanged(int);
void blockCountChangedSlot();
};
class ConfigHighlight : public QSyntaxHighlighter
{
Q_OBJECT
public:
ConfigHighlight(QWidget * parent);
protected:
void highlightBlock(const QString &text);
private:
QDialog mDummyConfig;
Ui::ConfigurationClass mDummyUi;
QColor mGreen;
QColor mRed;
QColor mBlack;
QColor mBlue;
QColor mGray;
};
#endif // CONFIGURATION_H
|