mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
fix #LINQT-1285 fix call notif deletion fix #LINQT-1283 : reset views when switching tab or creating new call fix #LINQT-1287 pause logo on pause fix #LINQT-1281 clear vertical tabbar index if in settings
138 lines
4.6 KiB
C++
138 lines
4.6 KiB
C++
/*
|
|
* Copyright (c) 2010-2024 Belledonne Communications SARL.
|
|
*
|
|
* This file is part of linphone-desktop
|
|
* (see https://www.linphone.org).
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "MagicSearchProxy.hpp"
|
|
#include "MagicSearchList.hpp"
|
|
#include "core/friend/FriendGui.hpp"
|
|
|
|
MagicSearchProxy::MagicSearchProxy(QObject *parent) : SortFilterProxy(parent) {
|
|
mSourceFlags = (int)LinphoneEnums::MagicSearchSource::Friends | (int)LinphoneEnums::MagicSearchSource::LdapServers;
|
|
mAggregationFlag = LinphoneEnums::MagicSearchAggregation::Friend;
|
|
setSourceModel(new MagicSearchList());
|
|
sort(0);
|
|
connect(this, &MagicSearchProxy::forceUpdate, [this] {
|
|
auto magicSearchList = qobject_cast<MagicSearchList *>(sourceModel());
|
|
if (magicSearchList) emit magicSearchList->lSearch(mSearchText);
|
|
});
|
|
}
|
|
|
|
MagicSearchProxy::~MagicSearchProxy() {
|
|
setSourceModel(nullptr);
|
|
}
|
|
|
|
void MagicSearchProxy::setSourceModel(QAbstractItemModel *model) {
|
|
auto oldMagicSearchList = dynamic_cast<MagicSearchList *>(sourceModel());
|
|
if (oldMagicSearchList) {
|
|
disconnect(oldMagicSearchList);
|
|
}
|
|
auto newMagicSearchList = dynamic_cast<MagicSearchList *>(model);
|
|
if (newMagicSearchList) {
|
|
mList = MagicSearchList::create(newMagicSearchList);
|
|
connect(newMagicSearchList, &MagicSearchList::sourceFlagsChanged, this, &MagicSearchProxy::sourceFlagsChanged);
|
|
connect(newMagicSearchList, &MagicSearchList::aggregationFlagChanged, this,
|
|
&MagicSearchProxy::aggregationFlagChanged);
|
|
connect(newMagicSearchList, &MagicSearchList::friendCreated, this, [this](int index) {
|
|
auto proxyIndex = mapFromSource(sourceModel()->index(index, 0));
|
|
emit friendCreated(proxyIndex.row());
|
|
});
|
|
connect(newMagicSearchList, &MagicSearchList::initialized, this, [this, newMagicSearchList] {
|
|
emit newMagicSearchList->lSetSourceFlags(mSourceFlags);
|
|
emit newMagicSearchList->lSetAggregationFlag(mAggregationFlag);
|
|
});
|
|
}
|
|
QSortFilterProxyModel::setSourceModel(model);
|
|
}
|
|
|
|
int MagicSearchProxy::findFriendIndexByAddress(const QString &address) {
|
|
auto magicSearchList = qobject_cast<MagicSearchList *>(sourceModel());
|
|
if (magicSearchList)
|
|
return mapFromSource(magicSearchList->index(magicSearchList->findFriendIndexByAddress(address), 0)).row();
|
|
else return -1;
|
|
}
|
|
|
|
QString MagicSearchProxy::getSearchText() const {
|
|
return mSearchText;
|
|
}
|
|
|
|
void MagicSearchProxy::setSearchText(const QString &search) {
|
|
if (mSearchText != search) {
|
|
mSearchText = search;
|
|
mList->setSearch(mSearchText);
|
|
}
|
|
}
|
|
|
|
int MagicSearchProxy::getSourceFlags() const {
|
|
return mSourceFlags;
|
|
}
|
|
|
|
void MagicSearchProxy::setSourceFlags(int flags) {
|
|
if (flags != mSourceFlags) {
|
|
mSourceFlags = flags;
|
|
emit mList->lSetSourceFlags(flags);
|
|
}
|
|
}
|
|
|
|
bool MagicSearchProxy::showFavoritesOnly() const {
|
|
return mShowFavoritesOnly;
|
|
}
|
|
|
|
void MagicSearchProxy::setShowFavoritesOnly(bool show) {
|
|
if (mShowFavoritesOnly != show) {
|
|
mShowFavoritesOnly = show;
|
|
emit showFavoriteOnlyChanged();
|
|
}
|
|
}
|
|
|
|
LinphoneEnums::MagicSearchAggregation MagicSearchProxy::getAggregationFlag() const {
|
|
return mAggregationFlag;
|
|
}
|
|
|
|
void MagicSearchProxy::setAggregationFlag(LinphoneEnums::MagicSearchAggregation flag) {
|
|
if (flag != mAggregationFlag) {
|
|
mAggregationFlag = flag;
|
|
emit mList->lSetAggregationFlag(flag);
|
|
}
|
|
}
|
|
|
|
bool MagicSearchProxy::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
|
|
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
|
|
auto model = sourceModel()->data(index);
|
|
auto friendGui = model.value<FriendGui *>();
|
|
auto friendCore = friendGui->getCore();
|
|
if (friendCore) {
|
|
return !mShowFavoritesOnly || friendCore->getStarred();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool MagicSearchProxy::lessThan(const QModelIndex &left, const QModelIndex &right) const {
|
|
auto l = sourceModel()->data(left);
|
|
auto r = sourceModel()->data(right);
|
|
|
|
auto lIsFriend = l.value<FriendGui *>();
|
|
auto rIsFriend = r.value<FriendGui *>();
|
|
|
|
if (lIsFriend && rIsFriend) {
|
|
auto lName = lIsFriend->getCore()->getDisplayName().toLower();
|
|
auto rName = rIsFriend->getCore()->getDisplayName().toLower();
|
|
return lName < rName;
|
|
}
|
|
return true;
|
|
}
|