mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-04-19 14:55:54 -04:00
Merge 1720a94a80c9b67df8fc2bbace114912bd10738d into 1d1138d0cb941845632cc4a8f74336818d63bcc4
This commit is contained in:
commit
82705ac367
File diff suppressed because it is too large
Load Diff
@ -24,7 +24,8 @@
|
||||
#include "gui/gxs/RsGxsUpdateBroadcastPage.h"
|
||||
#include "util/FontSizeHandler.h"
|
||||
|
||||
#include <retroshare/rsidentity.h>
|
||||
#include "retroshare/rsidentity.h"
|
||||
#include "IdentityListModel.h"
|
||||
|
||||
#include <QTimer>
|
||||
|
||||
@ -35,7 +36,11 @@ class IdDialog;
|
||||
}
|
||||
|
||||
class UIStateHelper;
|
||||
class QStyledItemDelegate;
|
||||
class QTreeWidgetItem;
|
||||
class RsIdentityListModel;
|
||||
class IdListSortFilterProxyModel;
|
||||
class QItemSelection;
|
||||
|
||||
class IdDialog : public MainPage
|
||||
{
|
||||
@ -59,6 +64,7 @@ protected:
|
||||
void loadIdentity(RsGxsIdGroup id_data);
|
||||
|
||||
void loadCircles(const std::list<RsGroupMetaData>& circle_metas);
|
||||
void updateIdListRequest();
|
||||
|
||||
//void requestCircleGroupData(const RsGxsCircleId& circle_id);
|
||||
bool getItemCircleId(QTreeWidgetItem *item,RsGxsCircleId& id) ;
|
||||
@ -67,13 +73,13 @@ protected:
|
||||
|
||||
|
||||
private slots:
|
||||
void updateIdList();
|
||||
void updateCircles();
|
||||
|
||||
void createExternalCircle();
|
||||
void updateIdList();
|
||||
void updateCircles();
|
||||
void createExternalCircle();
|
||||
void showEditExistingCircle();
|
||||
void updateCirclesDisplay();
|
||||
void toggleAutoBanIdentities(bool b);
|
||||
void sortColumn(int col,Qt::SortOrder so);
|
||||
|
||||
void acceptCircleSubscription() ;
|
||||
void cancelCircleSubscription() ;
|
||||
@ -87,17 +93,20 @@ private slots:
|
||||
void removeIdentity();
|
||||
void editIdentity();
|
||||
void chatIdentity();
|
||||
void chatIdentityItem(QTreeWidgetItem* item);
|
||||
void sendMsg();
|
||||
void chatIdentityItem(const QModelIndex &indx);
|
||||
void chatIdentity(const RsGxsId& toGxsId);
|
||||
void sendMsg();
|
||||
void copyRetroshareLink();
|
||||
void on_closeInfoFrameButton_Invite_clicked();
|
||||
|
||||
void updateSelection();
|
||||
void updateSelection(const QItemSelection &new_sel, const QItemSelection &old_sel);
|
||||
|
||||
void modifyReputation();
|
||||
|
||||
/** Create the context popup menu and it's submenus */
|
||||
void IdListCustomPopupMenu( QPoint point );
|
||||
void headerContextMenuRequested(QPoint);
|
||||
void toggleColumnVisible();
|
||||
|
||||
void CircleListCustomPopupMenu(QPoint point) ;
|
||||
#ifdef SUSPENDED
|
||||
@ -118,7 +127,12 @@ private:
|
||||
void processSettings(bool load);
|
||||
QString createUsageString(const RsIdentityUsage& u) const;
|
||||
|
||||
void requestIdData(std::list<RsGxsGroupId> &ids);
|
||||
void saveExpandedPathsAndSelection_idTreeView(std::set<QStringList> &expanded, std::set<QStringList> &selected);
|
||||
void restoreExpandedPathsAndSelection_idTreeView(const std::set<QStringList>& expanded, const std::set<QStringList>& selelected);
|
||||
void recursSaveExpandedItems_idTreeView(const QModelIndex& index, const QStringList& parent_path, std::set<QStringList>& expanded, std::set<QStringList>& selected);
|
||||
void recursRestoreExpandedItems_idTreeView(const QModelIndex& index,const QStringList& parent_path,const std::set<QStringList>& expanded,const std::set<QStringList>& selected);
|
||||
|
||||
void requestIdData(std::list<RsGxsGroupId> &ids);
|
||||
bool fillIdListItem(const RsGxsIdGroup& data, QTreeWidgetItem *&item, const RsPgpId &ownPgpId, int accept);
|
||||
void insertIdList(uint32_t token);
|
||||
void filterIds();
|
||||
@ -135,20 +149,32 @@ private:
|
||||
private:
|
||||
UIStateHelper *mStateHelper;
|
||||
|
||||
QTreeWidgetItem *contactsItem;
|
||||
QTreeWidgetItem *allItem;
|
||||
QTreeWidgetItem *ownItem;
|
||||
QTreeWidgetItem *mExternalBelongingCircleItem;
|
||||
QTreeWidgetItem *mExternalOtherCircleItem;
|
||||
QTreeWidgetItem *mMyCircleItem;
|
||||
RsGxsUpdateBroadcastBase *mCirclesBroadcastBase ;
|
||||
|
||||
void saveExpandedCircleItems(std::vector<bool> &expanded_root_items, std::set<RsGxsCircleId>& expanded_circle_items) const;
|
||||
int mLastSortColumn;
|
||||
Qt::SortOrder mLastSortOrder;
|
||||
|
||||
void saveExpandedCircleItems(std::vector<bool> &expanded_root_items, std::set<RsGxsCircleId>& expanded_circle_items) const;
|
||||
void restoreExpandedCircleItems(const std::vector<bool>& expanded_root_items,const std::set<RsGxsCircleId>& expanded_circle_items);
|
||||
|
||||
RsGxsGroupId mId;
|
||||
void applyWhileKeepingTree(std::function<void()> predicate);
|
||||
|
||||
RsGxsId getSelectedIdentity() const;
|
||||
std::list<RsGxsId> getSelectedIdentities() const;
|
||||
|
||||
RsGxsGroupId mId;
|
||||
RsGxsGroupId mIdToNavigate;
|
||||
int filter;
|
||||
bool mColumnSizeAlreadySet; // remembers if we already did some size set. If not, automatically stretch to content.
|
||||
|
||||
QStyledItemDelegate *mElidedLabelDelegate;
|
||||
QStyledItemDelegate *mReputationDelegate;
|
||||
|
||||
RsIdentityListModel *mIdListModel;
|
||||
IdListSortFilterProxyModel *mProxyModel;
|
||||
|
||||
void handleEvent_main_thread(std::shared_ptr<const RsEvent> event);
|
||||
RsEventsHandlerId_t mEventHandlerId_identity;
|
||||
|
@ -91,7 +91,7 @@
|
||||
<widget class="QLabel" name="titleBarLabel">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>12</pointsize>
|
||||
<pointsize>12</pointsize>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
@ -127,7 +127,7 @@
|
||||
<enum>Qt::NoFocus</enum>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<iconset resource="../images.qrc">
|
||||
<normaloff>:/icons/help_64.png</normaloff>:/icons/help_64.png</iconset>
|
||||
</property>
|
||||
<property name="checkable">
|
||||
@ -173,7 +173,11 @@
|
||||
<number>1</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="LineEditClear" name="filterLineEdit"/>
|
||||
<widget class="LineEditClear" name="filterLineEdit">
|
||||
<property name="placeholderText">
|
||||
<string>Search...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="toolButton_New">
|
||||
@ -211,7 +215,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="RSTreeWidget" name="idTreeWidget">
|
||||
<widget class="QTreeView" name="idTreeWidget">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||||
<horstretch>0</horstretch>
|
||||
@ -236,39 +240,9 @@
|
||||
<property name="sortingEnabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<attribute name="headerStretchLastSection">
|
||||
<bool>false</bool>
|
||||
<attribute name="headerCascadingSectionResizes">
|
||||
<bool>true</bool>
|
||||
</attribute>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Persons</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Identity ID</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string>Owned by</string>
|
||||
</property>
|
||||
</column>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Votes</string>
|
||||
</property>
|
||||
<property name="textAlignment">
|
||||
<set>AlignLeading|AlignVCenter</set>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/flag-green.png</normaloff>:/icons/flag-green.png</iconset>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
@ -296,8 +270,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>513</width>
|
||||
<height>764</height>
|
||||
<width>535</width>
|
||||
<height>784</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_3">
|
||||
@ -1080,11 +1054,6 @@ border-image: url(:/images/closepressed.png)
|
||||
<extends>QComboBox</extends>
|
||||
<header>gui/common/RSComboBox.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>RSTreeWidget</class>
|
||||
<extends>QTreeWidget</extends>
|
||||
<header>gui/common/RSTreeWidget.h</header>
|
||||
</customwidget>
|
||||
<customwidget>
|
||||
<class>ElidedLabel</class>
|
||||
<extends>QLabel</extends>
|
||||
@ -1101,8 +1070,8 @@ border-image: url(:/images/closepressed.png)
|
||||
<tabstop>idTreeWidget</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../icons.qrc"/>
|
||||
<include location="../images.qrc"/>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
968
retroshare-gui/src/gui/Identity/IdentityListModel.cpp
Normal file
968
retroshare-gui/src/gui/Identity/IdentityListModel.cpp
Normal file
@ -0,0 +1,968 @@
|
||||
/*******************************************************************************
|
||||
* retroshare-gui/src/gui/msgs/RsFriendListModel.cpp *
|
||||
* *
|
||||
* Copyright 2019 by Cyril Soler <csoler@users.sourceforge.net> *
|
||||
* *
|
||||
* This program is free software: you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Affero General Public License *
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||
* *
|
||||
*******************************************************************************/
|
||||
|
||||
#include <list>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDateTime>
|
||||
#include <QFontMetrics>
|
||||
#include <QModelIndex>
|
||||
#include <QTreeView>
|
||||
#include <QPainter>
|
||||
#include <QIcon>
|
||||
|
||||
#include "gui/common/AvatarDefs.h"
|
||||
#include "util/qtthreadsutils.h"
|
||||
#include "util/HandleRichText.h"
|
||||
#include "util/DateTime.h"
|
||||
#include "gui/gxs/GxsIdDetails.h"
|
||||
#include "retroshare/rsexpr.h"
|
||||
|
||||
#include "IdentityListModel.h"
|
||||
|
||||
//#define DEBUG_MODEL
|
||||
//#define DEBUG_MODEL_INDEX
|
||||
|
||||
std::ostream& operator<<(std::ostream& o, const QModelIndex& i);// defined elsewhere
|
||||
|
||||
const QString RsIdentityListModel::FilterString("filtered");
|
||||
|
||||
const uint32_t MAX_INTERNAL_DATA_UPDATE_DELAY = 300 ; // re-update the internal data every 5 mins. Should properly cover sleep/wake-up changes.
|
||||
const uint32_t MAX_NODE_UPDATE_DELAY = 10 ; // re-update the internal data every 5 mins. Should properly cover sleep/wake-up changes.
|
||||
|
||||
static const uint32_t ID_DETAILS_UPDATE_DELAY = 5; // update each node every 5 secs.
|
||||
|
||||
RsIdentityListModel::RsIdentityListModel(QObject *parent)
|
||||
: QAbstractItemModel(parent)
|
||||
, mLastInternalDataUpdate(0), mLastNodeUpdate(0)
|
||||
{
|
||||
mFontSize = QApplication::font().pointSize();
|
||||
|
||||
mFilterStrings.clear();
|
||||
mIdentityUpdateTimer = new QTimer();
|
||||
connect(mIdentityUpdateTimer,SIGNAL(timeout()),this,SLOT(timerUpdate()));
|
||||
}
|
||||
|
||||
void RsIdentityListModel::timerUpdate()
|
||||
{
|
||||
emit dataChanged(index(0,0,QModelIndex()),index(2,0,QModelIndex()));
|
||||
}
|
||||
RsIdentityListModel::EntryIndex::EntryIndex()
|
||||
: type(ENTRY_TYPE_INVALID),category_index(0),identity_index(0)
|
||||
{
|
||||
}
|
||||
|
||||
// The index encodes the whole hierarchy of parents. This allows to very efficiently compute indices of the parent of an index.
|
||||
//
|
||||
// On 32 bits and 64 bits architectures the format is the following:
|
||||
//
|
||||
// 0x [2 bits] 00000 [24 bits] [2 bits]
|
||||
// | | |
|
||||
// | | +-------------- type (0=top level, 1=category, 2=identity)
|
||||
// | +----------------------- identity index
|
||||
// +-------------------------------------- category index
|
||||
//
|
||||
|
||||
bool RsIdentityListModel::convertIndexToInternalId(const EntryIndex& e,quintptr& id)
|
||||
{
|
||||
// the internal id is set to the place in the table of items. We simply shift to allow 0 to mean something special.
|
||||
|
||||
if(e.type == ENTRY_TYPE_INVALID)
|
||||
{
|
||||
RsErr() << "ERROR: asked for the internal id of an invalid EntryIndex" ;
|
||||
id = 0;
|
||||
return true;
|
||||
}
|
||||
if(bool(e.identity_index >> 24))
|
||||
{
|
||||
RsErr() << "Cannot encode more than 2^24 identities. Somthing's wrong. e.identity_index = " << std::hex << e.identity_index << std::dec ;
|
||||
id = 0;
|
||||
return false;
|
||||
}
|
||||
|
||||
id = ((0x3 & (uint32_t)e.category_index) << 30) + ((uint32_t)e.identity_index << 2) + (0x3 & (uint32_t)e.type);
|
||||
|
||||
return true;
|
||||
}
|
||||
bool RsIdentityListModel::convertInternalIdToIndex(quintptr ref,EntryIndex& e)
|
||||
{
|
||||
// Compatible with ref=0 since it will cause type=TOP_LEVEL
|
||||
|
||||
e.type = static_cast<RsIdentityListModel::EntryType>((ref >> 0) & 0x3) ;// 2 bits
|
||||
e.identity_index = (ref >> 2) & 0xffffff;// 24 bits
|
||||
e.category_index = (ref >> 30) & 0x3 ;// 2 bits
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static QIcon createAvatar(const QPixmap &avatar, const QPixmap &overlay)
|
||||
{
|
||||
int avatarWidth = avatar.width();
|
||||
int avatarHeight = avatar.height();
|
||||
|
||||
QPixmap pixmap(avatar);
|
||||
|
||||
int overlaySize = (avatarWidth > avatarHeight) ? (avatarWidth/2.5) : (avatarHeight/2.5);
|
||||
int overlayX = avatarWidth - overlaySize;
|
||||
int overlayY = avatarHeight - overlaySize;
|
||||
|
||||
QPainter painter(&pixmap);
|
||||
painter.drawPixmap(overlayX, overlayY, overlaySize, overlaySize, overlay);
|
||||
|
||||
QIcon icon;
|
||||
icon.addPixmap(pixmap);
|
||||
return icon;
|
||||
}
|
||||
|
||||
void RsIdentityListModel::preMods()
|
||||
{
|
||||
emit layoutAboutToBeChanged();
|
||||
}
|
||||
void RsIdentityListModel::postMods()
|
||||
{
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(rowCount()-1,columnCount()-1,(void*)NULL));
|
||||
emit layoutChanged();
|
||||
}
|
||||
|
||||
int RsIdentityListModel::rowCount(const QModelIndex& parent) const
|
||||
{
|
||||
if(parent.column() >= COLUMN_THREAD_NB_COLUMNS)
|
||||
return 0;
|
||||
|
||||
EntryIndex index;
|
||||
|
||||
if(!parent.isValid() || !convertInternalIdToIndex(parent.internalId(),index))
|
||||
return mCategories.size();
|
||||
|
||||
switch(index.type)
|
||||
{
|
||||
case ENTRY_TYPE_CATEGORY: return mCategories[index.category_index].child_identity_indices.size();
|
||||
case ENTRY_TYPE_TOP_LEVEL: return mCategories.size();
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
int RsIdentityListModel::columnCount(const QModelIndex &/*parent*/) const
|
||||
{
|
||||
return COLUMN_THREAD_NB_COLUMNS ;
|
||||
}
|
||||
|
||||
bool RsIdentityListModel::hasChildren(const QModelIndex &parent) const
|
||||
{
|
||||
if(!parent.isValid())
|
||||
return true;
|
||||
|
||||
EntryIndex parent_index ;
|
||||
convertInternalIdToIndex(parent.internalId(),parent_index);
|
||||
|
||||
if(parent_index.type == ENTRY_TYPE_TOP_LEVEL)
|
||||
return true;
|
||||
|
||||
if(parent_index.type == ENTRY_TYPE_IDENTITY)
|
||||
return false;
|
||||
|
||||
if(parent_index.type == ENTRY_TYPE_CATEGORY)
|
||||
return !mCategories[parent_index.category_index].child_identity_indices.empty();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
RsIdentityListModel::EntryIndex RsIdentityListModel::EntryIndex::parent() const
|
||||
{
|
||||
EntryIndex i(*this);
|
||||
|
||||
switch(type)
|
||||
{
|
||||
case ENTRY_TYPE_CATEGORY: i.type = ENTRY_TYPE_TOP_LEVEL;
|
||||
i.category_index = 0;
|
||||
i.identity_index = 0;
|
||||
break;
|
||||
|
||||
case ENTRY_TYPE_IDENTITY: i.type = ENTRY_TYPE_CATEGORY;
|
||||
i.identity_index = 0;
|
||||
break;
|
||||
case ENTRY_TYPE_TOP_LEVEL:
|
||||
std::cerr << "ERROR: calling parent() on entryindex with no parent!" << std::endl;
|
||||
|
||||
default:
|
||||
//Can be when request root index.
|
||||
break;
|
||||
}
|
||||
|
||||
return i;
|
||||
}
|
||||
|
||||
RsIdentityListModel::EntryIndex RsIdentityListModel::EntryIndex::child(int row) const
|
||||
{
|
||||
EntryIndex i;
|
||||
|
||||
switch(type)
|
||||
{
|
||||
case ENTRY_TYPE_TOP_LEVEL:
|
||||
i.type = ENTRY_TYPE_CATEGORY;
|
||||
i.category_index = row;
|
||||
i.identity_index = 0;
|
||||
|
||||
break;
|
||||
|
||||
case ENTRY_TYPE_CATEGORY: i.type = ENTRY_TYPE_IDENTITY;
|
||||
i.category_index = category_index;
|
||||
i.identity_index = row;
|
||||
break;
|
||||
|
||||
case ENTRY_TYPE_IDENTITY: i = EntryIndex();
|
||||
std::cerr << "ERROR: calling child() on entryindex with no children!" << std::endl;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return i;
|
||||
|
||||
}
|
||||
uint32_t RsIdentityListModel::EntryIndex::parentRow() const
|
||||
{
|
||||
switch(type)
|
||||
{
|
||||
default:
|
||||
case ENTRY_TYPE_TOP_LEVEL: return -1;
|
||||
case ENTRY_TYPE_CATEGORY : return -1;
|
||||
case ENTRY_TYPE_IDENTITY : return category_index;
|
||||
}
|
||||
}
|
||||
|
||||
QModelIndex RsIdentityListModel::index(int row, int column, const QModelIndex& parent) const
|
||||
{
|
||||
if(row < 0 || column < 0 || column >= columnCount(parent) || row >= rowCount(parent))
|
||||
return QModelIndex();
|
||||
|
||||
EntryIndex parent_index ;
|
||||
convertInternalIdToIndex(parent.internalId(),parent_index);
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
RsDbg() << "Index row=" << row << " col=" << column << " parent=" << parent << std::endl;
|
||||
#endif
|
||||
|
||||
quintptr ref;
|
||||
EntryIndex new_index = parent_index.child(row);
|
||||
convertIndexToInternalId(new_index,ref);
|
||||
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
RsDbg() << " returning " << createIndex(row,column,ref) << std::endl;
|
||||
#endif
|
||||
|
||||
return createIndex(row,column,ref);
|
||||
}
|
||||
|
||||
QModelIndex RsIdentityListModel::parent(const QModelIndex& index) const
|
||||
{
|
||||
if(!index.isValid())
|
||||
return QModelIndex();
|
||||
|
||||
EntryIndex I ;
|
||||
convertInternalIdToIndex(index.internalId(),I);
|
||||
|
||||
EntryIndex p = I.parent();
|
||||
|
||||
if(p.type == ENTRY_TYPE_TOP_LEVEL)
|
||||
return QModelIndex();
|
||||
|
||||
quintptr i;
|
||||
convertIndexToInternalId(p,i);
|
||||
|
||||
return createIndex(I.parentRow(),0,i);
|
||||
}
|
||||
|
||||
Qt::ItemFlags RsIdentityListModel::flags(const QModelIndex& index) const
|
||||
{
|
||||
if (!index.isValid())
|
||||
return Qt::ItemFlags();
|
||||
|
||||
return QAbstractItemModel::flags(index);
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::headerData(int section, Qt::Orientation /*orientation*/, int role) const
|
||||
{
|
||||
if(role == Qt::DisplayRole)
|
||||
switch(section)
|
||||
{
|
||||
case COLUMN_THREAD_NAME: return tr("Name");
|
||||
case COLUMN_THREAD_ID: return tr("Id");
|
||||
case COLUMN_THREAD_REPUTATION: return QVariant();
|
||||
case COLUMN_THREAD_OWNER_ID: return tr("Owner Id");
|
||||
case COLUMN_THREAD_OWNER_NAME: return tr("Owner");
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
if(role == Qt::DecorationRole && section == COLUMN_THREAD_REPUTATION)
|
||||
return QIcon(":/icons/flag-green.png");
|
||||
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::data(const QModelIndex &index, int role) const
|
||||
{
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << "calling data(" << index << ") role=" << role << std::endl;
|
||||
#endif
|
||||
|
||||
if(!index.isValid())
|
||||
return QVariant();
|
||||
|
||||
quintptr ref = (index.isValid())?index.internalId():0 ;
|
||||
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << "data(" << index << ")" ;
|
||||
#endif
|
||||
|
||||
if(!ref)
|
||||
{
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << " [empty]" << std::endl;
|
||||
#endif
|
||||
return QVariant() ;
|
||||
}
|
||||
|
||||
EntryIndex entry;
|
||||
|
||||
if(!convertInternalIdToIndex(ref,entry))
|
||||
{
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << "Bad pointer: " << (void*)ref << std::endl;
|
||||
#endif
|
||||
return QVariant() ;
|
||||
}
|
||||
|
||||
switch(role)
|
||||
{
|
||||
case Qt::SizeHintRole: return sizeHintRole(entry,index.column()) ;
|
||||
case Qt::DisplayRole: return displayRole(entry,index.column()) ;
|
||||
case Qt::FontRole: return fontRole(entry,index.column()) ;
|
||||
case Qt::ForegroundRole: return foregroundRole(entry,index.column()) ;
|
||||
case Qt::DecorationRole: return decorationRole(entry,index.column()) ;
|
||||
|
||||
case FilterRole: return filterRole(entry,index.column()) ;
|
||||
case SortRole: return sortRole(entry,index.column()) ;
|
||||
case TreePathRole: return treePathRole(entry,index.column()) ;
|
||||
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
|
||||
bool RsIdentityListModel::passesFilter(const EntryIndex& e,int /*column*/) const
|
||||
{
|
||||
QString s ;
|
||||
|
||||
if(mFilterStrings.empty() || e.type != ENTRY_TYPE_IDENTITY)
|
||||
return true;
|
||||
|
||||
auto passes_strings = [&](const QString& s) -> bool {
|
||||
bool res = true;
|
||||
|
||||
for(auto iter(mFilterStrings.begin()); iter != mFilterStrings.end(); ++iter)
|
||||
res = res && s.contains(*iter,Qt::CaseInsensitive);
|
||||
|
||||
return res;
|
||||
};
|
||||
|
||||
if((mFilterType & FilterType::FILTER_TYPE_ID) && passes_strings(displayRole(e,COLUMN_THREAD_ID ).toString())) return true;
|
||||
if((mFilterType & FilterType::FILTER_TYPE_NAME) && passes_strings(displayRole(e,COLUMN_THREAD_NAME ).toString())) return true;
|
||||
if((mFilterType & FilterType::FILTER_TYPE_OWNER_ID) && passes_strings(displayRole(e,COLUMN_THREAD_OWNER_ID ).toString())) return true;
|
||||
if((mFilterType & FilterType::FILTER_TYPE_OWNER_NAME) && passes_strings(displayRole(e,COLUMN_THREAD_OWNER_NAME).toString())) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::filterRole(const EntryIndex& e,int column) const
|
||||
{
|
||||
if(passesFilter(e,column))
|
||||
return QVariant(FilterString);
|
||||
|
||||
return QVariant(QString());
|
||||
}
|
||||
|
||||
uint32_t RsIdentityListModel::updateFilterStatus(ForumModelIndex /*i*/,int /*column*/,const QStringList& /*strings*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void RsIdentityListModel::setFilter(uint8_t filter_type, const QStringList& strings)
|
||||
{
|
||||
#ifdef DEBUG_MODEL
|
||||
std::cerr << "Setting filter to filter_type=" << int(filter_type) << " and strings to " ;
|
||||
foreach(const QString& str,strings)
|
||||
std::cerr << "\"" << str.toStdString() << "\" " ;
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
|
||||
preMods();
|
||||
|
||||
mFilterType = filter_type;
|
||||
mFilterStrings = strings;
|
||||
|
||||
postMods();
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::toolTipRole(const EntryIndex& fmpe,int /*column*/) const
|
||||
{
|
||||
switch(fmpe.type)
|
||||
{
|
||||
case ENTRY_TYPE_IDENTITY:
|
||||
{
|
||||
auto id_info = getIdentityInfo(fmpe);
|
||||
|
||||
if(!id_info)
|
||||
return QVariant();
|
||||
|
||||
if(id_info->flags & RS_IDENTITY_FLAGS_IS_DEPRECATED)
|
||||
return QVariant( tr("\nThis identity has a insecure fingerprint (It's probably quite old).\nYou should get rid of it now and use a new one.\nThese identities are not supported anymore.") ) ;
|
||||
|
||||
if(rsIdentity->isOwnId(id_info->id))
|
||||
return QVariant(tr("This identity is owned by you"));
|
||||
|
||||
if(id_info->owner.isNull())
|
||||
return QVariant("Anonymous identity");
|
||||
else
|
||||
{
|
||||
RsPeerDetails dd;
|
||||
if(rsPeers->getGPGDetails(id_info->owner,dd))
|
||||
return QVariant(tr("Identity owned by profile")+" \""+ QString::fromUtf8(dd.name.c_str()) +"\" ("+QString::fromStdString(id_info->owner.toStdString()));
|
||||
else
|
||||
return QVariant(tr("Identity possibly owned by unknown profile")+" \""+ QString::fromUtf8(dd.name.c_str()) +"\" ("+QString::fromStdString(id_info->owner.toStdString()));
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
case ENTRY_TYPE_CATEGORY: ; // fallthrough
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::sizeHintRole(const EntryIndex& e,int col) const
|
||||
{
|
||||
float x_factor = QFontMetricsF(QApplication::font()).height()/14.0f ;
|
||||
float y_factor = QFontMetricsF(QApplication::font()).height()/14.0f ;
|
||||
|
||||
if(e.type == ENTRY_TYPE_IDENTITY)
|
||||
y_factor *= 1.0;
|
||||
|
||||
if(e.type == ENTRY_TYPE_CATEGORY)
|
||||
y_factor *= 1.5;
|
||||
|
||||
std::cerr << "sizeHintRole()" << std::endl;
|
||||
switch(col)
|
||||
{
|
||||
default:
|
||||
case COLUMN_THREAD_REPUTATION: return QVariant( QSize(x_factor * 14 , y_factor*14*1.1f ));
|
||||
|
||||
case COLUMN_THREAD_NAME:
|
||||
case COLUMN_THREAD_ID:
|
||||
case COLUMN_THREAD_OWNER_NAME:
|
||||
case COLUMN_THREAD_OWNER_ID: return QFontMetricsF(QApplication::font()).boundingRect(displayRole(e,col).toString()).size();
|
||||
}
|
||||
}
|
||||
|
||||
QString RsIdentityListModel::indexIdentifier(QModelIndex index)
|
||||
{
|
||||
quintptr ref = (index.isValid())?index.internalId():0 ;
|
||||
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << "data(" << index << ")" ;
|
||||
#endif
|
||||
|
||||
if(!ref)
|
||||
{
|
||||
#ifdef DEBUG_MESSAGE_MODEL
|
||||
std::cerr << " [empty]" << std::endl;
|
||||
#endif
|
||||
return QString();
|
||||
}
|
||||
|
||||
EntryIndex entry;
|
||||
if(!convertInternalIdToIndex(ref,entry))
|
||||
return QString();
|
||||
|
||||
return treePathRole(entry,0).toString();
|
||||
}
|
||||
QVariant RsIdentityListModel::treePathRole(const EntryIndex& entry,int /*column*/) const
|
||||
{
|
||||
if(entry.type == ENTRY_TYPE_CATEGORY)
|
||||
return QString::number((int)entry.category_index);
|
||||
else
|
||||
return QString::fromStdString(mIdentities[mCategories[entry.category_index].child_identity_indices[entry.identity_index]].id.toStdString());
|
||||
}
|
||||
QVariant RsIdentityListModel::sortRole(const EntryIndex& entry,int column) const
|
||||
{
|
||||
switch(column)
|
||||
{
|
||||
case COLUMN_THREAD_REPUTATION: return decorationRole(entry,column);
|
||||
|
||||
case COLUMN_THREAD_ID:
|
||||
case COLUMN_THREAD_OWNER_ID:
|
||||
case COLUMN_THREAD_OWNER_NAME:
|
||||
case COLUMN_THREAD_NAME: [[__fallthrough__]];
|
||||
default:
|
||||
return displayRole(entry,column);
|
||||
}
|
||||
}
|
||||
|
||||
QModelIndex RsIdentityListModel::getIndexOfIdentity(const RsGxsId& id) const
|
||||
{
|
||||
for(uint i=0;i<mCategories.size();++i)
|
||||
for(uint j=0;j<mCategories[i].child_identity_indices.size();++j)
|
||||
if(mIdentities[mCategories[i].child_identity_indices[j]].id == id)
|
||||
{
|
||||
EntryIndex e;
|
||||
e.category_index = i;
|
||||
e.identity_index = j;
|
||||
e.type = ENTRY_TYPE_IDENTITY;
|
||||
quintptr idx;
|
||||
convertIndexToInternalId(e,idx);
|
||||
|
||||
return createIndex(j,0,idx);
|
||||
}
|
||||
return QModelIndex();
|
||||
}
|
||||
|
||||
QModelIndex RsIdentityListModel::getIndexOfCategory(Category id) const
|
||||
{
|
||||
EntryIndex e;
|
||||
e.category_index = id;
|
||||
e.type = ENTRY_TYPE_CATEGORY;
|
||||
|
||||
quintptr idx;
|
||||
convertIndexToInternalId(e,idx);
|
||||
|
||||
return createIndex((int)id,0,idx);
|
||||
}
|
||||
QVariant RsIdentityListModel::foregroundRole(const EntryIndex& e, int /*col*/) const
|
||||
{
|
||||
auto it = getIdentityInfo(e);
|
||||
if(!it)
|
||||
return QVariant();
|
||||
|
||||
if(it->flags & RS_IDENTITY_FLAGS_IS_DEPRECATED)
|
||||
return QVariant(QColor(Qt::red));
|
||||
|
||||
return QVariant();
|
||||
}
|
||||
QVariant RsIdentityListModel::fontRole(const EntryIndex& e, int /*col*/) const
|
||||
{
|
||||
QFont f;
|
||||
f.setPointSize(mFontSize);
|
||||
|
||||
auto it = getIdentityInfo(e);
|
||||
|
||||
if(it)
|
||||
{
|
||||
RsGxsId id(it->id);
|
||||
|
||||
if(rsIdentity->isOwnId(id))
|
||||
f.setBold(true);
|
||||
}
|
||||
|
||||
return QVariant(f);
|
||||
}
|
||||
void RsIdentityListModel::setFontSize(int s)
|
||||
{
|
||||
if(s != mFontSize)
|
||||
{
|
||||
mFontSize = s;
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL));
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
std::cerr << " font role " << e.type << ", (" << (int)e.group_index << ","<< (int)e.profile_index << ","<< (int)e.node_index << ") col="<< col<<": " << std::endl;
|
||||
#endif
|
||||
|
||||
#ifdef TODO
|
||||
int status = onlineRole(e,col).toInt();
|
||||
|
||||
switch (status)
|
||||
{
|
||||
case RS_STATUS_INACTIVE:
|
||||
{
|
||||
QFont font ;
|
||||
QTreeView* myParent = dynamic_cast<QTreeView*>(QAbstractItemModel::parent());
|
||||
if (myParent)
|
||||
font = myParent->font();
|
||||
|
||||
font.setBold(true);
|
||||
|
||||
return QVariant(font);
|
||||
}
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
#endif
|
||||
|
||||
QVariant RsIdentityListModel::displayRole(const EntryIndex& e, int col) const
|
||||
{
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
std::cerr << " Display role " << e.type << ", (" << (int)e.group_index << ","<< (int)e.profile_index << ","<< (int)e.node_index << ") col="<< col<<": ";
|
||||
#endif
|
||||
|
||||
switch(e.type)
|
||||
{
|
||||
case ENTRY_TYPE_CATEGORY:
|
||||
{
|
||||
const HierarchicalCategoryInformation *cat = getCategoryInfo(e);
|
||||
|
||||
if(!cat)
|
||||
return QVariant();
|
||||
|
||||
switch(col)
|
||||
{
|
||||
case COLUMN_THREAD_NAME:
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
std::cerr << group->group_info.name.c_str() ;
|
||||
#endif
|
||||
|
||||
if(!cat->child_identity_indices.empty())
|
||||
return QVariant(cat->category_name+" (" + QString::number(cat->child_identity_indices.size()) + ")");
|
||||
else
|
||||
return QVariant(cat->category_name);
|
||||
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case ENTRY_TYPE_IDENTITY:
|
||||
{
|
||||
const HierarchicalIdentityInformation *idinfo = getIdentityInfo(e);
|
||||
const QString loading_string = "["+tr("Loading...")+"]";
|
||||
|
||||
#ifdef DEBUG_MODEL_INDEX
|
||||
std::cerr << profile->profile_info.name.c_str() ;
|
||||
#endif
|
||||
if(col == COLUMN_THREAD_ID) return QVariant(QString::fromStdString(idinfo->id.toStdString()) );
|
||||
if(col == COLUMN_THREAD_REPUTATION) return QVariant();
|
||||
|
||||
if(idinfo->nickname.empty())
|
||||
return loading_string;
|
||||
|
||||
switch(col)
|
||||
{
|
||||
case COLUMN_THREAD_NAME: return QVariant(QString::fromUtf8(idinfo->nickname.c_str()));
|
||||
case COLUMN_THREAD_OWNER_NAME: if(idinfo->owner.isNull())
|
||||
return QVariant();
|
||||
else
|
||||
return QVariant(QString::fromStdString(rsPeers->getGPGName(idinfo->owner)) );
|
||||
|
||||
case COLUMN_THREAD_OWNER_ID: if(idinfo->owner.isNull())
|
||||
return QVariant();
|
||||
else
|
||||
return QVariant(QString::fromStdString(idinfo->owner.toStdString()) );
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default: //ENTRY_TYPE
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
|
||||
// This function makes sure that the internal data gets updated. They are situations where the notification system cannot
|
||||
// send the information about changes, such as when the computer is put on sleep.
|
||||
|
||||
void RsIdentityListModel::checkInternalData(bool force)
|
||||
{
|
||||
rstime_t now = time(NULL);
|
||||
|
||||
if( (mLastInternalDataUpdate + MAX_INTERNAL_DATA_UPDATE_DELAY < now) || force)
|
||||
updateIdentityList();
|
||||
}
|
||||
|
||||
const RsIdentityListModel::HierarchicalCategoryInformation *RsIdentityListModel::getCategoryInfo(const EntryIndex& e) const
|
||||
{
|
||||
if(e.category_index >= mCategories.size())
|
||||
return NULL ;
|
||||
else
|
||||
return &mCategories[e.category_index];
|
||||
}
|
||||
|
||||
const RsIdentityListModel::HierarchicalIdentityInformation *RsIdentityListModel::getIdentityInfo(const EntryIndex& e) const
|
||||
{
|
||||
// First look into the relevant group, then for the correct profile in this group.
|
||||
|
||||
if(e.type != ENTRY_TYPE_IDENTITY)
|
||||
return nullptr ;
|
||||
|
||||
if(e.category_index >= mCategories.size())
|
||||
return nullptr ;
|
||||
|
||||
if(e.identity_index < mCategories[e.category_index].child_identity_indices.size())
|
||||
{
|
||||
auto& it(mIdentities[mCategories[e.category_index].child_identity_indices[e.identity_index]]);
|
||||
rstime_t now = time(nullptr);
|
||||
|
||||
if(now > it.last_update_TS + ID_DETAILS_UPDATE_DELAY)
|
||||
{
|
||||
RsIdentityDetails det;
|
||||
if(rsIdentity->getIdDetails(it.id,det))
|
||||
{
|
||||
it.nickname = det.mNickname;
|
||||
it.owner = det.mPgpId;
|
||||
it.flags = det.mFlags;
|
||||
it.last_update_TS = now;
|
||||
}
|
||||
}
|
||||
return ⁢
|
||||
}
|
||||
else
|
||||
{
|
||||
RsErr() << "Inconsistent identity index!" ;
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
QVariant RsIdentityListModel::decorationRole(const EntryIndex& entry,int col) const
|
||||
{
|
||||
switch(entry.type)
|
||||
{
|
||||
case ENTRY_TYPE_CATEGORY:
|
||||
return QVariant();
|
||||
|
||||
case ENTRY_TYPE_IDENTITY:
|
||||
{
|
||||
const HierarchicalIdentityInformation *hn = getIdentityInfo(entry);
|
||||
|
||||
if(!hn)
|
||||
return QVariant();
|
||||
|
||||
if(col == COLUMN_THREAD_REPUTATION)
|
||||
return QVariant( static_cast<uint8_t>(rsReputations->overallReputationLevel(hn->id)) );
|
||||
else if(col == COLUMN_THREAD_NAME)
|
||||
{
|
||||
QPixmap sslAvatar;
|
||||
RsIdentityDetails details ;
|
||||
|
||||
if(!rsIdentity->getIdDetails(hn->id, details))
|
||||
{
|
||||
mIdentityUpdateTimer->stop();
|
||||
mIdentityUpdateTimer->setSingleShot(true);
|
||||
mIdentityUpdateTimer->start(500);
|
||||
return QVariant();
|
||||
}
|
||||
else if(details.mAvatar.mSize == 0 || !GxsIdDetails::loadPixmapFromData(details.mAvatar.mData, details.mAvatar.mSize, sslAvatar,GxsIdDetails::LARGE))
|
||||
return QVariant(QIcon(GxsIdDetails::makeDefaultIcon(hn->id,GxsIdDetails::SMALL)));
|
||||
else
|
||||
return QVariant(QIcon(sslAvatar));
|
||||
}
|
||||
else
|
||||
return QVariant();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
return QVariant();
|
||||
}
|
||||
}
|
||||
|
||||
void RsIdentityListModel::clear()
|
||||
{
|
||||
preMods();
|
||||
|
||||
mIdentities.clear();
|
||||
mCategories.clear();
|
||||
|
||||
mCategories.resize(3);
|
||||
mCategories[0].category_name = tr("My own identities");
|
||||
mCategories[1].category_name = tr("My contacts");
|
||||
mCategories[2].category_name = tr("All");
|
||||
|
||||
postMods();
|
||||
|
||||
emit friendListChanged();
|
||||
}
|
||||
|
||||
|
||||
void RsIdentityListModel::debug_dump() const
|
||||
{
|
||||
std::cerr << "==== IdentityListModel Debug dump ====" << std::endl;
|
||||
|
||||
std::cerr << "Invalid index : " << QModelIndex() << std::endl;
|
||||
|
||||
EntryIndex top_level;
|
||||
top_level.type = ENTRY_TYPE_TOP_LEVEL;
|
||||
quintptr id;
|
||||
convertIndexToInternalId(top_level,id);
|
||||
|
||||
std::cerr << "Top level index: " << createIndex(0,0,id) << std::endl;
|
||||
EntryIndex tei;
|
||||
convertInternalIdToIndex(0,tei);
|
||||
std::cerr << "Top level entry index: " << tei << std::endl;
|
||||
|
||||
for(uint32_t j=0;j<mCategories.size();++j)
|
||||
{
|
||||
std::cerr << mCategories[j].category_name.toStdString() << " (" << mCategories[j].child_identity_indices.size() << ")" << std::endl;
|
||||
const auto& hg(mCategories[j].child_identity_indices);
|
||||
|
||||
for(uint32_t i=0;i<hg.size();++i)
|
||||
{
|
||||
auto idx = getIndexOfIdentity(mIdentities[hg[i]].id);
|
||||
auto parent = idx.parent();
|
||||
EntryIndex index;
|
||||
EntryIndex index_parent;
|
||||
convertInternalIdToIndex(idx.internalId(),index);
|
||||
convertInternalIdToIndex(parent.internalId(),index_parent);
|
||||
std::cerr << " " << mIdentities[hg[i]].id << " index = " << idx << " parent = " << idx.parent() << " EntryIndex: " << index << " Parent index: " << index_parent << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
std::cerr << "====================================" << std::endl;
|
||||
}
|
||||
|
||||
|
||||
RsGxsId RsIdentityListModel::getIdentity(const QModelIndex& i) const
|
||||
{
|
||||
if(!i.isValid())
|
||||
return RsGxsId();
|
||||
|
||||
EntryIndex e;
|
||||
if(!convertInternalIdToIndex(i.internalId(),e) || e.type != ENTRY_TYPE_IDENTITY)
|
||||
return RsGxsId();
|
||||
|
||||
const HierarchicalIdentityInformation *gnode = getIdentityInfo(e);
|
||||
|
||||
if(gnode)
|
||||
return gnode->id;
|
||||
else
|
||||
return RsGxsId();
|
||||
}
|
||||
|
||||
RsIdentityListModel::EntryType RsIdentityListModel::getType(const QModelIndex& i) const
|
||||
{
|
||||
if(!i.isValid())
|
||||
return ENTRY_TYPE_TOP_LEVEL;
|
||||
|
||||
EntryIndex e;
|
||||
if(!convertInternalIdToIndex(i.internalId(),e))
|
||||
return ENTRY_TYPE_TOP_LEVEL;
|
||||
|
||||
return e.type;
|
||||
}
|
||||
|
||||
int RsIdentityListModel::getCategory(const QModelIndex& i) const
|
||||
{
|
||||
if(!i.isValid())
|
||||
return CATEGORY_ALL;
|
||||
|
||||
EntryIndex e;
|
||||
if(!convertInternalIdToIndex(i.internalId(),e))
|
||||
return CATEGORY_ALL;
|
||||
|
||||
return e.category_index;
|
||||
}
|
||||
void RsIdentityListModel::setIdentities(const std::list<RsGroupMetaData>& identities_meta)
|
||||
{
|
||||
preMods();
|
||||
beginResetModel();
|
||||
clear();
|
||||
|
||||
for(auto id:identities_meta)
|
||||
{
|
||||
HierarchicalIdentityInformation idinfo;
|
||||
idinfo.id = RsGxsId(id.mGroupId);
|
||||
idinfo.last_update_TS = 0;// forces update
|
||||
|
||||
if(rsIdentity->isOwnId(idinfo.id))
|
||||
mCategories[CATEGORY_OWN].child_identity_indices.push_back(mIdentities.size());
|
||||
else if(rsIdentity->isARegularContact(RsGxsId(id.mGroupId)))
|
||||
mCategories[CATEGORY_CTS].child_identity_indices.push_back(mIdentities.size());
|
||||
else
|
||||
mCategories[CATEGORY_ALL].child_identity_indices.push_back(mIdentities.size());
|
||||
|
||||
mIdentities.push_back(idinfo);
|
||||
}
|
||||
|
||||
if (mCategories.size()>0)
|
||||
{
|
||||
beginInsertRows(QModelIndex(),0,mCategories.size()-1);
|
||||
endInsertRows();
|
||||
}
|
||||
|
||||
endResetModel();
|
||||
postMods();
|
||||
|
||||
mLastInternalDataUpdate = time(NULL);
|
||||
|
||||
}
|
||||
|
||||
void RsIdentityListModel::updateIdentityList()
|
||||
{
|
||||
std::cerr << "Updating identity list" << std::endl;
|
||||
|
||||
std::list<RsGroupMetaData> ids ;
|
||||
|
||||
if(!rsIdentity->getIdentitiesSummaries(ids))
|
||||
{
|
||||
std::cerr << __PRETTY_FUNCTION__ << " failed to retrieve identity metadata." << std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
setIdentities(ids) ;
|
||||
|
||||
debug_dump();
|
||||
}
|
||||
|
||||
|
||||
|
||||
void RsIdentityListModel::collapseItem(const QModelIndex& index)
|
||||
{
|
||||
if(getType(index) != ENTRY_TYPE_CATEGORY)
|
||||
return;
|
||||
|
||||
EntryIndex entry;
|
||||
|
||||
if(!convertInternalIdToIndex(index.internalId(),entry))
|
||||
return;
|
||||
|
||||
mExpandedCategories[entry.category_index] = false;
|
||||
|
||||
// apparently we cannot be subtle here.
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL));
|
||||
}
|
||||
|
||||
void RsIdentityListModel::expandItem(const QModelIndex& index)
|
||||
{
|
||||
if(getType(index) != ENTRY_TYPE_CATEGORY)
|
||||
return;
|
||||
|
||||
EntryIndex entry;
|
||||
|
||||
if(!convertInternalIdToIndex(index.internalId(),entry))
|
||||
return;
|
||||
|
||||
mExpandedCategories[entry.category_index] = true;
|
||||
|
||||
// apparently we cannot be subtle here.
|
||||
emit dataChanged(createIndex(0,0,(void*)NULL), createIndex(mCategories.size()-1,columnCount()-1,(void*)NULL));
|
||||
}
|
||||
|
||||
|
||||
|
252
retroshare-gui/src/gui/Identity/IdentityListModel.h
Normal file
252
retroshare-gui/src/gui/Identity/IdentityListModel.h
Normal file
@ -0,0 +1,252 @@
|
||||
/*******************************************************************************
|
||||
* retroshare-gui/src/gui/msgs/RsFriendListModel.h *
|
||||
* *
|
||||
* Copyright 2019 by Cyril Soler <csoler@users.sourceforge.net> *
|
||||
* *
|
||||
* This program is free software: you can redistribute it and/or modify *
|
||||
* it under the terms of the GNU Affero 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 Affero General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Affero General Public License *
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
||||
* *
|
||||
*******************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QModelIndex>
|
||||
#include <QColor>
|
||||
|
||||
#include "retroshare/rsstatus.h"
|
||||
#include "retroshare/rsmsgs.h"
|
||||
#include "retroshare/rspeers.h"
|
||||
#include "retroshare/rsidentity.h"
|
||||
|
||||
typedef uint32_t ForumModelIndex;
|
||||
|
||||
// This class is the item model used by Qt to display the information
|
||||
|
||||
class QTimer;
|
||||
|
||||
class RsIdentityListModel : public QAbstractItemModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit RsIdentityListModel(QObject *parent = NULL);
|
||||
~RsIdentityListModel(){}
|
||||
|
||||
enum Columns {
|
||||
COLUMN_THREAD_NAME = 0x00,
|
||||
COLUMN_THREAD_ID = 0x01,
|
||||
COLUMN_THREAD_OWNER_NAME = 0x02,
|
||||
COLUMN_THREAD_OWNER_ID = 0x03,
|
||||
COLUMN_THREAD_REPUTATION = 0x04,
|
||||
COLUMN_THREAD_NB_COLUMNS = 0x05
|
||||
};
|
||||
|
||||
enum Roles{ SortRole = Qt::UserRole+1,
|
||||
StatusRole = Qt::UserRole+2,
|
||||
UnreadRole = Qt::UserRole+3,
|
||||
FilterRole = Qt::UserRole+4,
|
||||
TreePathRole = Qt::UserRole+5,
|
||||
};
|
||||
|
||||
enum FilterType{ FILTER_TYPE_NONE = 0x00,
|
||||
FILTER_TYPE_ID = 0x01,
|
||||
FILTER_TYPE_NAME = 0x02,
|
||||
FILTER_TYPE_OWNER_NAME = 0x04,
|
||||
FILTER_TYPE_OWNER_ID = 0x08
|
||||
};
|
||||
|
||||
enum EntryType{ ENTRY_TYPE_TOP_LEVEL = 0x00,
|
||||
ENTRY_TYPE_CATEGORY = 0x01,
|
||||
ENTRY_TYPE_IDENTITY = 0x02,
|
||||
ENTRY_TYPE_INVALID = 0x03
|
||||
};
|
||||
|
||||
enum Category{ CATEGORY_OWN = 0x00,
|
||||
CATEGORY_CTS = 0x01,
|
||||
CATEGORY_ALL = 0x02
|
||||
};
|
||||
|
||||
struct HierarchicalCategoryInformation
|
||||
{
|
||||
QString category_name;
|
||||
std::vector<uint32_t> child_identity_indices; // index in the array of hierarchical profiles
|
||||
};
|
||||
|
||||
// This stores all the info that is useful avoiding a call to the more expensive getIdDetails()
|
||||
//
|
||||
struct HierarchicalIdentityInformation
|
||||
{
|
||||
rstime_t last_update_TS;
|
||||
RsGxsId id;
|
||||
RsPgpId owner;
|
||||
uint32_t flags;
|
||||
std::string nickname;
|
||||
};
|
||||
|
||||
// This structure encodes the position of a node in the hierarchy. The type tells which of the index fields are valid.
|
||||
|
||||
struct EntryIndex
|
||||
{
|
||||
public:
|
||||
EntryIndex();
|
||||
|
||||
EntryType type; // type of the entry (group,profile,location)
|
||||
|
||||
friend std::ostream& operator<<(std::ostream& o, const EntryIndex& e)
|
||||
{
|
||||
o << "[" ;
|
||||
switch(e.type)
|
||||
{
|
||||
case RsIdentityListModel::ENTRY_TYPE_INVALID: o << "Invalid," ; break;
|
||||
case RsIdentityListModel::ENTRY_TYPE_CATEGORY: o << "Category," ; break;
|
||||
case RsIdentityListModel::ENTRY_TYPE_IDENTITY: o << "Identity," ; break;
|
||||
case RsIdentityListModel::ENTRY_TYPE_TOP_LEVEL: o << "Toplevel," ; break;
|
||||
}
|
||||
o << " CI: " << e.category_index << ", ";
|
||||
o << " II: " << e.identity_index << "]";
|
||||
return o;
|
||||
}
|
||||
|
||||
// Indices w.r.t. parent. The set of indices entirely determines the position of the entry in the hierarchy.
|
||||
// An index of 0xff means "undefined"
|
||||
|
||||
uint16_t category_index; // index of the category in the mCategory array
|
||||
uint16_t identity_index; // index of the identity in its own category
|
||||
|
||||
EntryIndex parent() const;
|
||||
EntryIndex child(int row) const;
|
||||
uint32_t parentRow() const;
|
||||
};
|
||||
|
||||
QModelIndex root() const{ return createIndex(0,0,(void*)NULL) ;}
|
||||
QModelIndex getIndexOfIdentity(const RsGxsId& id) const;
|
||||
QModelIndex getIndexOfCategory(Category id) const;
|
||||
|
||||
void updateIdentityList();
|
||||
|
||||
int count() const { return mIdentities.size() ; } // total number of identities
|
||||
|
||||
static const QString FilterString ;
|
||||
|
||||
// This method will asynchroneously update the data
|
||||
|
||||
EntryType getType(const QModelIndex&) const;
|
||||
RsGxsId getIdentity(const QModelIndex&) const;
|
||||
int getCategory(const QModelIndex&) const;
|
||||
void setFontSize(int s);
|
||||
|
||||
void setFilter(uint8_t filter_type, const QStringList& strings) ;
|
||||
|
||||
void expandItem(const QModelIndex&) ;
|
||||
void collapseItem(const QModelIndex&) ;
|
||||
|
||||
// Overloaded methods from QAbstractItemModel
|
||||
|
||||
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
||||
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||
bool hasChildren(const QModelIndex &parent = QModelIndex()) const override;
|
||||
|
||||
QModelIndex index(int row, int column, const QModelIndex & parent = QModelIndex()) const override;
|
||||
QModelIndex parent(const QModelIndex& child) const override;
|
||||
Qt::ItemFlags flags(const QModelIndex& index) const override;
|
||||
|
||||
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||
|
||||
void clear() ;
|
||||
QString indexIdentifier(QModelIndex i);
|
||||
|
||||
/* Color definitions (for standard see default.qss) */
|
||||
QColor mTextColorGroup;
|
||||
QColor mTextColorStatus[RS_STATUS_COUNT];
|
||||
|
||||
void setIdentities(const std::list<RsGroupMetaData>& identities_meta);
|
||||
|
||||
private:
|
||||
const HierarchicalCategoryInformation *getCategoryInfo (const EntryIndex&) const;
|
||||
const HierarchicalIdentityInformation *getIdentityInfo(const EntryIndex&) const;
|
||||
|
||||
void checkIdentity(HierarchicalIdentityInformation& node);
|
||||
|
||||
QVariant sizeHintRole (const EntryIndex& e, int col) const;
|
||||
QVariant displayRole (const EntryIndex& e, int col) const;
|
||||
QVariant decorationRole(const EntryIndex& e, int col) const;
|
||||
QVariant toolTipRole (const EntryIndex& e, int col) const;
|
||||
QVariant statusRole (const EntryIndex& e, int col) const;
|
||||
QVariant sortRole (const EntryIndex& e, int col) const;
|
||||
QVariant fontRole (const EntryIndex& e, int col) const;
|
||||
QVariant foregroundRole(const EntryIndex& e, int col) const;
|
||||
QVariant textColorRole (const EntryIndex& e, int col) const;
|
||||
QVariant filterRole (const EntryIndex& e, int col) const;
|
||||
QVariant treePathRole (const EntryIndex& entry,int column) const;
|
||||
|
||||
/*!
|
||||
* \brief debug_dump
|
||||
* Dumps the hierarchy of posts in the terminal, to allow checking whether the internal representation is correct.
|
||||
*/
|
||||
|
||||
public slots:
|
||||
void checkInternalData(bool force);
|
||||
void debug_dump() const;
|
||||
void timerUpdate();
|
||||
|
||||
signals:
|
||||
void dataLoaded(); // emitted after the messages have been set. Can be used to updated the UI.
|
||||
void friendListChanged(); // emitted after the messages have been set. Can be used to updated the UI.
|
||||
void dataAboutToLoad();
|
||||
|
||||
private:
|
||||
bool passesFilter(const EntryIndex &e, int column) const;
|
||||
|
||||
void preMods() ;
|
||||
void postMods() ;
|
||||
|
||||
void *getParentRef(void *ref,int& row) const;
|
||||
void *getChildRef(void *ref,int row) const;
|
||||
int getChildrenCount(void *ref) const;
|
||||
|
||||
static bool convertIndexToInternalId(const EntryIndex& e,quintptr& ref);
|
||||
static bool convertInternalIdToIndex(quintptr ref, EntryIndex& e);
|
||||
|
||||
uint32_t updateFilterStatus(ForumModelIndex i,int column,const QStringList& strings);
|
||||
|
||||
QStringList mFilterStrings;
|
||||
uint8_t mFilterType;
|
||||
int mFontSize;
|
||||
|
||||
rstime_t mLastInternalDataUpdate;
|
||||
rstime_t mLastNodeUpdate;;
|
||||
|
||||
// The 3 vectors below store thehierarchical information for groups, profiles and locations,
|
||||
// meaning which is the child/parent of which. The actual group/profile/node data are also stored in the
|
||||
// structure.
|
||||
|
||||
mutable std::vector<HierarchicalCategoryInformation> mCategories;
|
||||
mutable std::vector<HierarchicalIdentityInformation> mIdentities;
|
||||
|
||||
// The top level list contains all nodes to display, which type depends on the option to display groups or not.
|
||||
// Idices in the list may be profile indices or group indices. In the former case the profile child index refers to
|
||||
// the inde in the mProfiles tab, whereas in the the later case, the child index refers to the index of the profile in the
|
||||
// group it belows to.
|
||||
|
||||
std::vector<EntryIndex> mTopLevel;
|
||||
|
||||
// keeps track of expanded/collapsed items, so as to only show icon for collapsed profiles
|
||||
|
||||
std::vector<bool> mExpandedCategories;
|
||||
|
||||
// List of identities for which getIdDetails() failed, to be requested again.
|
||||
mutable QTimer *mIdentityUpdateTimer;
|
||||
};
|
||||
|
||||
|
@ -85,23 +85,27 @@ void ReputationItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem
|
||||
{
|
||||
Q_ASSERT(index.isValid());
|
||||
|
||||
QStyleOptionViewItemV4 opt = option;
|
||||
QStyleOptionViewItem opt(option);
|
||||
initStyleOption(&opt, index);
|
||||
// disable default icon
|
||||
opt.icon = QIcon();
|
||||
// draw default item
|
||||
QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, 0);
|
||||
|
||||
const QRect r = option.rect;
|
||||
const QRect r = option.rect;
|
||||
|
||||
// get pixmap
|
||||
unsigned int icon_index = qvariant_cast<unsigned int>(index.data(Qt::DecorationRole));
|
||||
auto v = index.data(Qt::DecorationRole);
|
||||
|
||||
if(!v.canConvert(QVariant::Int))
|
||||
return;
|
||||
|
||||
unsigned int icon_index = qvariant_cast<unsigned int>(v);
|
||||
|
||||
if(icon_index > mMaxLevelToDisplay)
|
||||
return ;
|
||||
|
||||
QIcon icon = GxsIdDetails::getReputationIcon(
|
||||
RsReputationLevel(icon_index), 0xff );
|
||||
QIcon icon = GxsIdDetails::getReputationIcon( RsReputationLevel(icon_index), 0xff );
|
||||
|
||||
QPixmap pix = icon.pixmap(r.size());
|
||||
|
||||
@ -110,6 +114,12 @@ void ReputationItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem
|
||||
painter->drawPixmap(r.topLeft() + p, pix);
|
||||
}
|
||||
|
||||
QSize ReputationItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex & /*index*/) const
|
||||
{
|
||||
int s = 1.5*QFontMetricsF(option.font).height();
|
||||
|
||||
return QSize(s,s);
|
||||
}
|
||||
/* The global object */
|
||||
GxsIdDetails *GxsIdDetails::mInstance = NULL ;
|
||||
|
||||
|
@ -52,7 +52,8 @@ public:
|
||||
ReputationItemDelegate(RsReputationLevel max_level_to_display) :
|
||||
mMaxLevelToDisplay(static_cast<uint32_t>(max_level_to_display)) {}
|
||||
|
||||
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
||||
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
||||
virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex & /*index*/) const override;
|
||||
|
||||
private:
|
||||
uint32_t mMaxLevelToDisplay ;
|
||||
|
@ -1259,6 +1259,7 @@ identities {
|
||||
|
||||
HEADERS += \
|
||||
gui/Identity/IdDialog.h \
|
||||
gui/Identity/IdentityListModel.h \
|
||||
gui/Identity/IdEditDialog.h \
|
||||
gui/Identity/IdDetailsDialog.h \
|
||||
|
||||
@ -1268,6 +1269,7 @@ identities {
|
||||
|
||||
SOURCES += \
|
||||
gui/Identity/IdDialog.cpp \
|
||||
gui/Identity/IdentityListModel.cpp \
|
||||
gui/Identity/IdEditDialog.cpp \
|
||||
gui/Identity/IdDetailsDialog.cpp \
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user