blob: 0ab44910d296b0a3aa10ac65cf99fda8557bfdc3 [file] [log] [blame]
Edric Milaret5cbf2b62015-07-09 11:36:53 -04001/***************************************************************************
Anthony LĂ©onard2fde81d2017-04-17 10:06:55 -04002 * Copyright (C) 2015-2017 by Savoir-faire Linux *
Edric Milaret5cbf2b62015-07-09 11:36:53 -04003 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
Edric Milaret5f316da2015-09-28 11:57:42 -040019#pragma once
Edric Milaret5cbf2b62015-07-09 11:36:53 -040020
21#include <QDialog>
22#include <QSortFilterProxyModel>
23
24#include "callmodel.h"
Edric Milaret80e0b212015-10-16 10:07:43 -040025#include "recentmodel.h"
26
27#include "smartlistdelegate.h"
Edric Milaret5cbf2b62015-07-09 11:36:53 -040028
Andreas Traczyke0a60b52018-07-10 18:16:15 -040029#include <ciso646>
30
Nicolas Jager0a9fc602016-03-11 18:35:42 -050031class QPropertyAnimation;
32class QGraphicsOpacityEffect;
33
Edric Milaret5cbf2b62015-07-09 11:36:53 -040034namespace Ui {
Edric Milaret80e0b212015-10-16 10:07:43 -040035 class CallUtilsDialog;
Edric Milaret5cbf2b62015-07-09 11:36:53 -040036}
37
Edric Milaret80e0b212015-10-16 10:07:43 -040038class NotCurrentProxyModel : public QSortFilterProxyModel
Edric Milaret5cbf2b62015-07-09 11:36:53 -040039{
40public:
Edric Milaret74474f52016-05-16 13:36:23 -040041 explicit NotCurrentProxyModel(QAbstractItemModel* parent) : QSortFilterProxyModel(parent)
Edric Milaret5cbf2b62015-07-09 11:36:53 -040042 {
43 setSourceModel(parent);
44 }
45 virtual bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const
46 {
Edric Milaret4ba5c822015-10-06 16:27:33 -040047 if (not sourceModel() || source_parent.isValid())
48 return false;
49 auto idx = sourceModel()->index(source_row,0,source_parent);
50 if (not idx.isValid())
51 return false;
Edric Milaret80e0b212015-10-16 10:07:43 -040052 auto call = RecentModel::instance().getActiveCall(idx);
53 return not call || not (call->state() == Call::State::CURRENT);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040054 }
55};
56
Edric Milaret80e0b212015-10-16 10:07:43 -040057class CallUtilsDialog : public QDialog
Edric Milaret5cbf2b62015-07-09 11:36:53 -040058{
59 Q_OBJECT
60
61public:
Edric Milaret80e0b212015-10-16 10:07:43 -040062 explicit CallUtilsDialog(QWidget* parent = 0);
63 ~CallUtilsDialog();
64
65 void setConfMode(bool active);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040066
Nicolas Jager0a9fc602016-03-11 18:35:42 -050067protected:
68 void enterEvent(QEvent* event);
69 void leaveEvent(QEvent* event);
70
Edric Milaret5cbf2b62015-07-09 11:36:53 -040071//UI SLOTS
72protected slots:
Edric Milaret80e0b212015-10-16 10:07:43 -040073 void showEvent(QShowEvent* event);
74 void closeEvent(QCloseEvent* event);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040075private slots:
Edric Milaret63c34b62016-01-15 11:52:47 -050076 void on_doTransferButton_clicked();
Edric Milaret80e0b212015-10-16 10:07:43 -040077 void on_contactView_doubleClicked(const QModelIndex& index);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040078
79private:
Edric Milaret80e0b212015-10-16 10:07:43 -040080 Ui::CallUtilsDialog* ui;
81 bool confMode_;
82 SmartListDelegate* smartListDelegate_;
83 NotCurrentProxyModel* notCurrentProxyModel_;
Nicolas Jager0a9fc602016-03-11 18:35:42 -050084 QPixmap* spikeMask_;
85 QPropertyAnimation* fadeAnim_;
86 constexpr static int fadeOverlayTime_ = 250; //msec
87 QGraphicsOpacityEffect* effect_;
Edric Milaret4ba5c822015-10-06 16:27:33 -040088
89 void removeProxyModel();
Nicolas Jager0a9fc602016-03-11 18:35:42 -050090
91signals:
92 void isVisible(bool visible);
93
Edric Milaret5cbf2b62015-07-09 11:36:53 -040094};
95