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
|
#ifndef KLOG_INPUTWIDGETS_MAINWINDOWINPUTQSO_H
#define KLOG_INPUTWIDGETS_MAINWINDOWINPUTQSO_H
/***************************************************************************
mainwindowinputqso.h - description
-------------------
begin : may 2021
copyright : (C) 2021 by Jaime Robles
email : jaime@robles.es
***************************************************************************/
/*****************************************************************************
* This file is part of KLog. *
* *
* KLog 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. *
* *
* KLog 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 KLog. If not, see <https://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
//
// This class implement the tab of the mainwindow that supports the QSL options
//
#include <QWidget>
#include <QtWidgets>
#include "../dataproxy_sqlite.h"
//#include "../locator.h"
#include "../utilities.h"
#include "../qso.h"
class MainWindowInputQSO : public QWidget
{
Q_OBJECT
friend class tst_MainWindowInputQSO;
public:
explicit MainWindowInputQSO(DataProxy_SQLite *dp, QWidget *parent = nullptr);
~MainWindowInputQSO();
void setDarkMode (const bool _dm);
void setPaletteRightName(const bool _ok);
void setPaletteRightQTH(const bool _ok);
void setPaletteRightDXLocator(const bool _ok);
QString getDXLocator();
void setDXLocator(const QString &_loc, bool _completing = false);
QString getName();
void setName(const QString &_st, bool _completing = false);
QString getQTH();
void setQTH(const QString &_st, bool _completing = false);
void setRSTToMode(const QString &_m, const bool _reading = true);
QString getRSTTX();
void setRSTTX(const QString &_st);
QString getRSTRX();
void setRSTRX(const QString &_st);
double getTXFreq();
void setTXFreq(const double _ft);
double getRXFreq();
void setRXFreq(const double _ft);
void setPropModeFromSat(const QString &_p);
double getRXPwr();
void setRXPwr(const double _pw);
void setModifying(const bool _m);
void receiveFocus();
void clear();
void cleanQRZCOM(const bool _dataFromQRZCOM);
void clearName();
void clearQTH();
void clearDXLocator();
QSO getQSOData(QSO _qso);
void setQSOData(const QSO &_qso);
signals:
void returnPressed();
void dxLocatorChanged(QString _loc);
void rxFreqChanged(double _f);
//void rxFreqChangedForSat(double _f);
//void txFreqBeingChanged(bool _f);
void txFreqChanged(double _f);
void handOverFocusSignal();
//void txFreqChangedForSat(double _f);
private slots:
void slotReturnPressed();
void slotLocatorTextChanged();
void slotFreqTXChanged (double _f);
void slotFreqRXChanged (double _f);
void slotSplitClicked();
//void slotPaletteChanged(QPalette _p);
private:
bool eventFilter(QObject *object, QEvent *event);
void createUI();
void setDefaultData();
bool getDarkMode();
void setSplitCheckBox();
void readDarkMode();
QLineEdit *rstTXLineEdit, *rstRXLineEdit, *qthLineEdit, *locatorLineEdit, *nameLineEdit;
QDoubleSpinBox *rxPowerSpinBox, *txFreqSpinBox, *rxFreqSpinBox;
QCheckBox *splitCheckBox;
//Locator *locator;
DataProxy_SQLite *dataProxy;
Utilities *util;
QPalette palRed, palBlack, palWhite; // To paint Text in red or black(normal)
bool rxFreqBeingAutoChanged, txFreqBeingAutoChanged, isSATPropagation;
QString propMode;
double freqTX, freqRX;
bool modify, completedWithPreviousName, completedWithPreviousQTH, completedWithPreviousLocator;
bool darkMode;
bool fillingQSO; // TRUE just when a QSO is being written in the UI from a qsoToEdit
};
#endif // MAINWINDOWINPUTQSO_H
|