blob: 710f873fb59f5207e2b79fbfea0030b2da4a8143 [file] [log] [blame]
Edric Milaret5cbf2b62015-07-09 11:36:53 -04001/***************************************************************************
Edric Milaretbab169d2016-01-07 15:13:33 -05002 * Copyright (C) 2015-2016 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
29namespace Ui {
Edric Milaret80e0b212015-10-16 10:07:43 -040030 class CallUtilsDialog;
Edric Milaret5cbf2b62015-07-09 11:36:53 -040031}
32
Edric Milaret80e0b212015-10-16 10:07:43 -040033class NotCurrentProxyModel : public QSortFilterProxyModel
Edric Milaret5cbf2b62015-07-09 11:36:53 -040034{
35public:
Edric Milaret80e0b212015-10-16 10:07:43 -040036 NotCurrentProxyModel(QAbstractItemModel* parent) : QSortFilterProxyModel(parent)
Edric Milaret5cbf2b62015-07-09 11:36:53 -040037 {
38 setSourceModel(parent);
39 }
40 virtual bool filterAcceptsRow(int source_row, const QModelIndex& source_parent) const
41 {
Edric Milaret4ba5c822015-10-06 16:27:33 -040042 if (not sourceModel() || source_parent.isValid())
43 return false;
44 auto idx = sourceModel()->index(source_row,0,source_parent);
45 if (not idx.isValid())
46 return false;
Edric Milaret80e0b212015-10-16 10:07:43 -040047 auto call = RecentModel::instance().getActiveCall(idx);
48 return not call || not (call->state() == Call::State::CURRENT);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040049 }
50};
51
Edric Milaret80e0b212015-10-16 10:07:43 -040052class CallUtilsDialog : public QDialog
Edric Milaret5cbf2b62015-07-09 11:36:53 -040053{
54 Q_OBJECT
55
56public:
Edric Milaret80e0b212015-10-16 10:07:43 -040057 explicit CallUtilsDialog(QWidget* parent = 0);
58 ~CallUtilsDialog();
59
60 void setConfMode(bool active);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040061
62//UI SLOTS
63protected slots:
Edric Milaret80e0b212015-10-16 10:07:43 -040064 void showEvent(QShowEvent* event);
65 void closeEvent(QCloseEvent* event);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040066private slots:
Edric Milaret63c34b62016-01-15 11:52:47 -050067 void on_doTransferButton_clicked();
Edric Milaret80e0b212015-10-16 10:07:43 -040068 void on_contactView_doubleClicked(const QModelIndex& index);
Edric Milaret5cbf2b62015-07-09 11:36:53 -040069
70private:
Edric Milaret80e0b212015-10-16 10:07:43 -040071 Ui::CallUtilsDialog* ui;
72 bool confMode_;
73 SmartListDelegate* smartListDelegate_;
74 NotCurrentProxyModel* notCurrentProxyModel_;
Edric Milaret4ba5c822015-10-06 16:27:33 -040075
76 void removeProxyModel();
Edric Milaret5cbf2b62015-07-09 11:36:53 -040077};
78