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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
#ifndef KLOG_SEARCHWINDOW_H
#define KLOG_SEARCHWINDOW_H
/***************************************************************************
searchwindow.h - description
-------------------
begin : sept 2020
copyright : (C) 2020 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/>. *
* *
*****************************************************************************/
#include <QtWidgets>
#include <QWidget>
//#include <QTableView>
#include <QTreeView>
#include <QAction>
#include <QSqlQuery>
#include <QSqlRecord>
#include <QSqlRelationalDelegate>
#include <QDesktopServices>
#include "dataproxy_sqlite.h"
#include "searchmodel.h"
#include "awards.h"
//#include "elogclublog.h"
#include "utilities.h"
class SearchWindow : public QWidget
{
Q_OBJECT
public:
//explicit SearchWidget(Awards *awards, QWidget *parent = nullptr);
explicit SearchWindow(Awards *awards, QWidget *parent = nullptr);
~SearchWindow();
void createlogPanel(const int _currentLog);
void clear();
void refresh();
void selectAll();
void clearSelection();
void setStationCallsignInHeader(const bool _h);
void qslSentViaBureau(const int _qsoId); //Maybe this could be defined as private and call it with an action, if needed.
void qslRecViaBureau(const int _qsoId); //Maybe this could be defined as private and call it with an action, if needed.
void qslRecViaDirect(const int _qsoId);
bool isQSLReceived(const int _qsoId);
bool isQSLSent(const int _qsoId);
//void setProxyModel (const bool _p);
void sortColumn(const int _c);
void setFilterString(const QString &_st);
QList<int> getSelectedQSOs();
void setNeedingQSL(bool const _q);
void slotToolSearchQSL(const int actionQSL);
void setColors (const QColor &_newOne, const QColor &_needed, const QColor &_worked, const QColor &_confirmed, const QColor &_default);
signals:
void actionQSODoubleClicked(const int _qsoid);
void actionDeleteQSO(const int _qsoid);
void updateAwards();
void updateSearchText();
void updateSearchLineEdit();
void requestFocus();
void queryError(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery); // To alert about any failed query execution
private slots:
void slotDoubleClickLog(const QModelIndex & index);
void slotRighButtonFromLog(const QPoint& pos);
void slotQSLSentViaBureauFromLog();
void slotQSLSentViaDirectFromLog();
void slotQSLRecViaDirectFromLog();
void slotQSLRecViaBureauFromLog();
void slotQSLSentMarkAsRequested();
void slotQSLRecMarkAsRequested();
void slotQsoDeleteFromLog();
void slotQSOToEditFromLog();
void slotQueryErrorManagement(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery);
void slotCheckQRZCom();
void slotCheckDXHeatCom();
void slotQSLSentViaDirectMarkDXReqFromSearch();
void slotQSLSentViaBureauMarkDXReqFromSearch();
//void slotQSLRecMarkAsRequested();
void slotQSLRecViaDirectMarkReqFromSearch();
void slotQSLRecViaBureauMarkReqFromSearch();
private:
void createUI();
void createActionsCommon();
void createActions();
//void deleteQSO(const int _qsoID);
void rightButtonFromLogMenu(const int row);
void showMenuRightButtonFromLogCreateActions();
//void slotToolSearchQSL(const int actionQSL);
void searchToolNeededQSLToSend();
void setDefaultData();
void setColumnsToDX();
//void qslRecViaDirectMarkReq(const int _qsoId);
//void qslRecViaBureauMarkReq(const int _qsoId);
//void colorTheList();
bool qslingNeeded;
DataProxy_SQLite *dataProxy;
std::unique_ptr<SearchModel> searchModel; // Defined like this to send the same award instance
Awards *awards; // Reference to the Awards instance
//eLogClubLog *elogClublog;
//QTableView *logView;
QTreeView *treeView;
QLabel *logLabel;
QAction *delQSOFromLogAct;
QAction *qsoToEditFromLogAct;
QAction *qslSentViaBureauFromLogAct;
QAction *qslSentViaDirectFromLogAct;
QAction *qslRecViaBureauFromLogAct;
QAction *qslRecViaDirectFromLogAct;
QAction *checkQRZCOMFromLogAct;
QAction *checkDXHeatFromLogAct;
QAction *qslSentRequestedAct;
QAction *qslSentViaDirectMarkRcvReqFromSearchAct;
QAction *qslSentViaBureauMarkRcvReqFromSearchAct;
QAction *qslRecViaBureauMarkReqFromSearchAct;
QAction *qslRecViaDirectMarkReqFromSearchAct;
QAction *qslRecRequestedAct;
int currentLog;
Utilities *util;
bool showStationCallsignInHeader;
};
#endif // SEARCHWINDOW_H
|