mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
- Reset data list and initialization on single step. - Just add a log on new call log. - Remove updateView : it should not be needed as contains are updated automatically from its items. - Clean AbstractListProxy from LimitProxy implementation. - Avoid to reset left panel if not needed to not reload lists. - Fix missing objectName in history list view. Fix display on new call button.
100 lines
3.4 KiB
C++
100 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2022-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/>.
|
|
*/
|
|
|
|
#ifndef LIMIT_PROXY_H_
|
|
#define LIMIT_PROXY_H_
|
|
|
|
#include "SortFilterProxy.hpp"
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class LimitProxy : public QSortFilterProxyModel {
|
|
Q_OBJECT
|
|
public:
|
|
Q_PROPERTY(int count READ getCount NOTIFY countChanged)
|
|
Q_PROPERTY(int initialDisplayItems READ getInitialDisplayItems WRITE setInitialDisplayItems NOTIFY
|
|
initialDisplayItemsChanged)
|
|
Q_PROPERTY(int maxDisplayItems READ getMaxDisplayItems WRITE setMaxDisplayItems NOTIFY maxDisplayItemsChanged)
|
|
Q_PROPERTY(int displayItemsStep READ getDisplayItemsStep WRITE setDisplayItemsStep NOTIFY displayItemsStepChanged)
|
|
|
|
// Propagation
|
|
Q_PROPERTY(QString filterText READ getFilterText WRITE setFilterText NOTIFY filterTextChanged)
|
|
Q_PROPERTY(int filterType READ getFilterType WRITE setFilterType NOTIFY filterTypeChanged)
|
|
|
|
LimitProxy(QObject *parent = nullptr);
|
|
virtual ~LimitProxy();
|
|
virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
|
|
|
|
// Helper for setting the limit with sorted/filtered list
|
|
void setSourceModels(SortFilterProxy *firstList);
|
|
|
|
Q_INVOKABLE void displayMore();
|
|
Q_INVOKABLE QVariant getAt(const int &index) const;
|
|
virtual int getCount() const;
|
|
|
|
// Get the item following by what is shown from 2 lists
|
|
template <class A, class B, class C>
|
|
QSharedPointer<C> getItemAt(const int &atIndex) const {
|
|
return dynamic_cast<A *>(sourceModel())->template getItemAt<B, C>(atIndex);
|
|
}
|
|
|
|
template <class A>
|
|
inline A *getListModel() const {
|
|
auto model = dynamic_cast<SortFilterProxy *>(sourceModel());
|
|
if (model) return dynamic_cast<A *>(model->sourceModel());
|
|
else return nullptr;
|
|
}
|
|
|
|
static int getDisplayCount(int listCount, int maxCount);
|
|
int getDisplayCount(int listCount) const;
|
|
int getInitialDisplayItems() const;
|
|
void setInitialDisplayItems(int initialItems);
|
|
|
|
int getMaxDisplayItems() const;
|
|
void setMaxDisplayItems(int maxItems);
|
|
|
|
int getDisplayItemsStep() const;
|
|
void setDisplayItemsStep(int step);
|
|
|
|
//-------------------------------------------------------------
|
|
QString getFilterText() const;
|
|
void setFilterText(const QString &filter);
|
|
|
|
virtual int getFilterType() const;
|
|
virtual void setFilterType(int filterType);
|
|
//-------------------------------------------------------------
|
|
|
|
void onAdded();
|
|
void onRemoved();
|
|
|
|
int mInitialDisplayItems = -1;
|
|
int mMaxDisplayItems = -1;
|
|
int mDisplayItemsStep = 5;
|
|
|
|
signals:
|
|
void countChanged();
|
|
void initialDisplayItemsChanged();
|
|
void maxDisplayItemsChanged();
|
|
void displayItemsStepChanged();
|
|
//-----------------------------------------------------------------
|
|
void filterTypeChanged(int filterType);
|
|
void filterTextChanged();
|
|
};
|
|
|
|
#endif
|