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
|
// HamFax -- an application for sending and receiving amateur radio facsimiles
// Copyright (C) 2001 Christof Schmitt, DH1CS <cschmitt@users.sourceforge.net>
//
// 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.
//
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef CONFIG_HPP
#define CONFIG_HPP
#include <qobject.h>
#include <qmap.h>
#include <qstring.h>
class Config : public QObject {
Q_OBJECT
public:
Config(QObject* parent);
void readFile(void);
~Config(void);
bool getKeyPTT(void);
private:
typedef QMap<QString,QString> ValueMap;
ValueMap value;
QString fileName;
signals:
void PTCDevice(const QString& s);
void PTTDevice(const QString& s);
void DSPDevice(const QString& s);
void keyPTT(bool b);
void carrier(int c);
void deviation(int d);
void lpm(int l);
void aptStartFreq(int f);
void aptStartLength(int l);
void aptStopFreq(int f);
void aptStopLength(int l);
void phaseLines(int n);
void phaseInvert(bool b);
void useFM(bool b);
void autoScroll(bool b);
void color(bool b);
void toolTip(bool b);
void ptcSpeed(int s);
void filter(int);
public slots:
void setPTC(const QString& s);
void setPTT(const QString& s);
void setDSP(const QString& s);
void setKeyPTT(bool b);
void setCarrier(int c);
void setDeviation(int d);
void setLpm(int l);
void setAptStartFreq(int f);
void setAptStartLength(int l);
void setAptStopFreq(int f);
void setAptStopLength(int l);
void setPhaseLines(int n);
void setPhaseInvert(bool b);
void setPhaseInvert(int i);
void setUseFM(bool b);
void setUseFM(int i);
void setAutoScroll(bool b);
void setColor(bool b);
void setColor(int i);
void setToolTip(bool b);
void setPtcSpeed(int s);
void setFilter(int n);
};
#endif
|