File: logwindow.h

package info (click to toggle)
klog 2.4.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 12,228 kB
  • sloc: cpp: 51,678; makefile: 15
file content (176 lines) | stat: -rw-r--r-- 6,648 bytes parent folder | download | duplicates (2)
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#ifndef KLOG_LOGWINDOW_H
#define KLOG_LOGWINDOW_H

/***************************************************************************
                          logwindow.h  -  description
                             -------------------
    begin                : sept 2011
    copyright            : (C) 2011 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 <QAction>
#include <QSqlQuery>
#include <QSqlRecord>
#include <QSqlRelationalDelegate>
#include <QDesktopServices>
#include "dataproxy_sqlite.h"
#include "logmodel.h"
#include "awards.h"
#include "utilities.h"

class LogWindow : public  QWidget
{
    Q_OBJECT
    friend class tst_LogWindow;

public:
    LogWindow(Awards *awards, QWidget *parent = nullptr);
    ~LogWindow();
    void createlogPanel(const int _currentLog);
    void clear();
    void refresh();
    void setCurrentLog(const int _currentLog);

    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 setColumns(const QStringList &_columns);

signals:
    void actionQSODoubleClicked(const int _qsoid);
    void actionDeleteQSO(const int _qsoid);
    void updateAwards();
    void updateSearchText();   
    //void qsoFound(const QStringList _qs); // Each: QString with format: Fieldname:value
    void queryError(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery); // To alert about any failed query execution
    //void clearError();
    void deleteTheseQSOs(QList<int> _qsos);
    void exportToADIFTheseQSOs(QList<int> _qsos);
    void uploadToQRZcomTheseQSOs(QList<int> _qsos);

private slots:

    void slotDoubleClickLog(const QModelIndex & index);
    void slotRighButtonFromLog(const QPoint& pos);
    void slotQSLSentViaBureauFromLog();
    void slotQSLSentViaDirectFromLog();
    void slotQSLRecViaDirectFromLog();
    void slotQSLRecViaBureauFromLog();
    void slotQsoDeleteFromLog();
    void slotQSOToEditFromLog();
    void slotQueryErrorManagement(QString functionFailed, QString errorCodeS, QString nativeError, QString failedQuery);
    void slotCheckQRZCom();
    void slotCheckDXHeatCom();

    void slotQSOsDeselectAll();
    void slotQSOsSelectAll();
    void slotQSOsDeleteFromLog();
    void slotQSOsExportFromLog();
    void slotQSOsUploadToLoTWFromLog();
    void slotQSOsUploadToClubLogFromLog();
    void slotQSOsUploadToEQSLFromLog();
    void slotMultipleQSLSentViaBureauFromLog();
    void slotMultipleQSLSentViaDirectFromLog();
    void slotMultipleQSLRecViaBureauFromLog();
    void slotMultipleQSLRecViaDirectFromLog();
    void slotQSOsQRZUploadFromLog();
    void slotOnSectionMoved(int logicalIndex, int oldVisualIndex, int newVisualIndex);

private:    
    void createUI();
    void createActionsCommon();
    void createActions();
    void retoreColumsOrder();
    void deleteQSO(const int _qsoID);
    void rightButtonFromLogMenu(const int trow);
    void rightButtonMultipleFromLogMenu();
    void showMenuRightButtonFromLogCreateActions();
    void showColumn(const QString &_columnName);

    void setDefaultData();
    void setColumnsOfLog(const QStringList &_columns);
    QStringList getOrderedVisibleHeaders() const;


    DataProxy_SQLite *dataProxy;
    LogModel *logModel;
    //QItemSelectionModel *selectionModel;
    Awards *awards;
    //DXCCStatusWidget *dxccStatusWidget;
    //eLogClubLog *elogClublog;

    QTableView *logView;
    QLabel *logLabel;

    QAction *delQSOFromLogAct;
    QAction *qsoToEditFromLogAct;
    QAction *qslSentViaBureauFromLogAct;
    QAction *qslSentViaDirectFromLogAct;
    QAction *qslRecViaBureauFromLogAct;
    QAction *qslRecViaDirectFromLogAct;
    QAction *checkQRZCOMFromLogAct;
    QAction *checkDXHeatFromLogAct;

    //Multiple selection actions
    QAction *multipleDeselectAll;
    QAction *multipleSelectAll;
    QAction *multipleDelQSOsFromLogAct;
    QAction *multipleExportToADIFFromLogAct;
    QAction *multipleQueueForLoTWFromLogAct;
    QAction *multipleQueueForClubLogFromLogAct;
    QAction *multipleQueueForQRZCOMFromLogAct;
    QAction *multipleQueueForEQSLFromLogAct;
    QAction *multipleQslSentViaBureauFromLogAct;
    QAction *multipleQslSentViaDirectFromLogAct;
    QAction *multipleQslRecViaBureauFromLogAct;
    QAction *multipleQslRecViaDirectFromLogAct;
    //QAction *moveToAnotherLog; // MOves the selected QSOs to another log.

    int currentLog;

    Utilities *util;
    QStringList columns;
   //LogViewSortFilterProxyModel *proxyModel;
   //bool sortingThroughProxyModel;
};
/*
class ItemDelegate: public QStyledItemDelegate
{
    Q_OBJECT

public:
    ItemDelegate(QWidget *parent=nullptr){}

    QString displayText(const QVariant &value, const QLocale &locale) const;

    //QString displayText (const QVariant &value);
};
*/
#endif // LOGWINDOW_H